/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores do Design */
    --color-dark: #0D0E27;
    --color-gold: #B4975A;
    --color-white: #FFFFFF;
    --color-blue-dark: #1F2C53;
    --color-gray-dark: #333333;
    --color-gray-medium: #777777;
    --color-gray-light: #383838;
    --color-black: #000000;
    --color-bg-gray: #444444;
    
    /* Fontes */
    --font-roboto: 'Roboto', sans-serif;
    --font-segoe: 'Segoe UI', sans-serif;
    --font-alex: 'Alex Brush', cursive;
}

body {
    font-family: var(--font-roboto);
    color: var(--color-white);
    background-color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Responsividade geral para imagens */
img {
    max-width: 100%;
    height: auto;
}

/* Animações de Entrada */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Otimização: reduzir animação em dispositivos com preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Delay escalonado para elementos em grid */
.especificacao-card.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.especificacao-card.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.especificacao-card.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.especificacao-card.fade-in-up:nth-child(4) { transition-delay: 0.4s; }
.especificacao-card.fade-in-up:nth-child(5) { transition-delay: 0.5s; }
.especificacao-card.fade-in-up:nth-child(6) { transition-delay: 0.6s; }

.estatistica-item.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.estatistica-item.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.estatistica-item.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.estatistica-item.fade-in-up:nth-child(4) { transition-delay: 0.4s; }

.depoimento-slide.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.depoimento-slide.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.depoimento-slide.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.depoimento-slide.fade-in-up:nth-child(4) { transition-delay: 0.4s; }
.depoimento-slide.fade-in-up:nth-child(5) { transition-delay: 0.5s; }
.depoimento-slide.fade-in-up:nth-child(6) { transition-delay: 0.6s; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(180, 151, 90, 0.2);
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 390px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--color-gold);
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li a {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--color-gold);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    background-color: var(--color-gold);
    color: var(--color-white) !important;
    border-radius: 4px;
    font-weight: 500 !important;
}

.nav-cta:hover {
    background-color: #9d8250;
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 390px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 555px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 14, 39, 0.75) 0%, rgba(13, 14, 39, 0.5) 50%, rgba(13, 14, 39, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 60px 330px;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.hero-subtitle {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1.67%;
    color: var(--color-white);
    margin-bottom: 20px;
    text-align: left;
}

.hero-title {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 44px;
    line-height: 1.3;
    letter-spacing: 7.73%;
    color: var(--color-white);
    margin-bottom: 32px;
    text-align: left;
}

.hero-description {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-white);
    max-width: 652px;
    margin-bottom: 56px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 3px;
    text-decoration: none;
    font-family: var(--font-segoe);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #9d8250;
}

.btn-secondary {
    background-color: var(--color-dark);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background-color: rgba(180, 151, 90, 0.1);
}

/* Referência Mundial Section */
.referencia-section {
    padding: 120px 0;
    background-color: var(--color-dark);
}

.referencia-content {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.referencia-image {
    flex: 0 0 428px;
    max-width: 100%;
}

.referencia-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

.referencia-text {
    flex: 1;
    padding-top: 10px;
}

.section-label {
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 50%;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: 35px;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 32px;
}

.section-description {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-white);
    opacity: 0.95;
    margin-bottom: 36px;
    max-width: 642px;
}

.referencia-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 14px 28px;
    border: 1px solid var(--color-gold);
    border-radius: 3px;
    background-color: var(--color-white);
    color: var(--color-gold);
    text-decoration: none;
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 10%;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.link-projetos {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-gold);
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    margin-top: 28px;
    transition: color 0.3s ease;
}

.link-projetos:hover {
    color: var(--color-white);
}

/* Destaques Section */
.destaques-section {
    padding: 80px 0;
    background-color: var(--color-dark);
    text-align: center;
}

.destaques-title {
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 29px;
    line-height: 1;
    letter-spacing: 20.69%;
    color: var(--color-gold);
    text-transform: uppercase;
}

/* Harmonização Facial Section */
.harmonizacao-section {
    padding: 20px 0;
    background-color: var(--color-dark);
}

.harmonizacao-container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.harmonizacao-content {
    grid-column: 1 / 2;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 556px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.harmonizacao-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.harmonizacao-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 226px 32px 0;
}

.harmonizacao-text-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: right;
    padding: 48px 32px 32px;
    background: linear-gradient(to top, rgba(13, 14, 39, 0.95) 0%, rgba(13, 14, 39, 0.7) 50%, transparent 100%);
}

.harmonizacao-title-small {
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.harmonizacao-description-small {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.95;
    line-height: 1.5;
}

.harmonizacao-title {
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 25%;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 19px;
}

.harmonizacao-description {
    font-family: var(--font-segoe);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
}

.harmonizacao-images {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.harmonizacao-image {
    border-radius: 4px;
    overflow: hidden;
    height: 556px;
    position: relative;
}

.harmonizacao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 14, 39, 0.95) 0%, rgba(13, 14, 39, 0.7) 50%, transparent 100%);
    padding: 48px 32px 32px;
    color: var(--color-white);
}

.image-overlay-text-bottom-right {
    text-align: right;
}

.image-overlay-text h3 {
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.image-overlay-text p {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.95;
    line-height: 1.5;
}

/* Especificações Section */
.especificacoes-section {
    padding: 100px 0;
    background-color: var(--color-dark);
}

.especificacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.especificacao-card {
    background-color: rgba(180, 151, 90, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.especificacao-card:hover {
    background-color: rgba(180, 151, 90, 0.2);
    transform: translateY(-5px);
}

.especificacao-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.especificacao-icon svg {
    width: 100%;
    height: 100%;
}

.especificacao-title {
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.especificacao-text {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-white);
    opacity: 0.95;
}

/* Estatísticas Section */
.estatisticas-section {
    padding: 100px 0;
    background-color: var(--color-dark);
}

.estatisticas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.estatistica-item {
    padding: 24px;
}

.estatistica-number {
    font-family: var(--font-segoe);
    font-weight: 700;
    font-size: 45px;
    line-height: 1.1;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.estatistica-title {
    font-family: var(--font-segoe);
    font-weight: 400;
    font-size: 25px;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 8px;
}

.estatistica-subtitle {
    font-family: var(--font-segoe);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-white);
    opacity: 0.9;
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 120px 0;
    background-color: var(--color-dark);
}

.depoimentos-title {
    font-family: var(--font-alex);
    font-weight: 400;
    font-size: 70px;
    line-height: 1.2;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 80px;
}

.galeria-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 48px;
}

.galeria-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(180, 151, 90, 0.9);
    color: var(--color-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    margin: 0;
    padding: 0;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.galeria-prev {
    left: 20px;
}

.galeria-next {
    right: 20px;
}

.galeria-arrow:hover {
    background-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.galeria-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.depoimentos-carousel {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 0;
    transition: transform 0.5s ease;
}

.depoimento-slide {
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
    min-width: calc((100% - 40px) / 3);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.depoimento-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(180, 151, 90, 0.3);
}

.depoimento-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimentos-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
    width: 100%;
}

/* Pioneirismo Section */
.pioneirismo-section {
    padding: 120px 0;
    background-color: var(--color-dark);
}

.pioneirismo-content {
    max-width: 642px;
    margin-bottom: 48px;
}

.pioneirismo-image {
    width: 100%;
    max-width: 100%;
}

.pioneirismo-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    padding-top: 0;
}

.footer-divider {
    height: 1px;
    background-color: var(--color-gold);
    margin-bottom: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 390px;
    max-width: 1920px;
    margin: 0 auto;
}

.footer-label {
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 42.86%;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-title {
    font-family: var(--font-roboto);
    font-weight: 700;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -5%;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.footer-description {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    color: var(--color-white);
    opacity: 0.9;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-segoe);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.95;
    margin-bottom: 10px;
}

.required {
    color: #FF0000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #69727D;
    border-radius: 3px;
    background-color: var(--color-white);
    font-family: var(--font-segoe);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.btn-submit {
    grid-column: 1 / -1;
    padding: 18px 24px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 3px;
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 40%;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background-color: #9d8250;
}

/* Responsive */
@media (max-width: 1800px) {
    .container {
        padding: 0 250px;
    }
    
    .header-container {
        padding: 0 250px;
    }
    
    .hero-content {
        padding: 50px 250px;
    }
    
    .footer-content {
        padding: 60px 250px;
    }
}

@media (max-width: 1600px) {
    .container {
        padding: 0 150px;
    }
    
    .header-container {
        padding: 0 150px;
    }
    
    .hero-content {
        padding: 50px 150px;
    }
    
    .footer-content {
        padding: 60px 150px;
    }
}

@media (max-width: 1400px) {
    .container {
        padding: 0 100px;
    }
    
    .header-container {
        padding: 0 100px;
    }
    
    .hero-content {
        padding: 40px 100px;
    }
    
    .footer-content {
        padding: 60px 100px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 60px;
    }
    
    .header-container {
        padding: 0 60px;
    }
    
    .hero-content {
        padding: 40px 60px;
    }
    
    .footer-content {
        padding: 60px 60px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .harmonizacao-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .harmonizacao-content {
        grid-column: 1;
        min-height: 400px;
    }
    
    .harmonizacao-images {
        grid-column: 1;
        grid-template-columns: 1fr;
    }
    
    .harmonizacao-image {
        height: 400px;
    }
    
    .estatisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .especificacoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .referencia-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .referencia-image {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .depoimento-slide {
        min-width: calc(50% - 11px);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .depoimentos-title {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 40px;
    }
    
    .header-container {
        padding: 0 40px;
    }
    
    .hero-content {
        padding: 40px 40px;
    }
    
    .footer-content {
        padding: 50px 40px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .referencia-section {
        padding: 80px 0;
    }
    
    .harmonizacao-content {
        min-height: 350px;
    }
    
    .harmonizacao-image {
        height: 350px;
    }
    
    .harmonizacao-title-small {
        font-size: 22px;
    }
    
    .harmonizacao-description-small {
        font-size: 15px;
    }
    
    .especificacoes-section {
        padding: 60px 0;
    }
    
    .especificacao-card {
        padding: 30px 20px;
    }
    
    .especificacao-title {
        font-size: 18px;
    }
    
    .especificacao-text {
        font-size: 15px;
    }
    
    .estatisticas-section {
        padding: 70px 0;
    }
    
    .estatistica-number {
        font-size: 40px;
    }
    
    .estatistica-title {
        font-size: 22px;
    }
    
    .estatistica-subtitle {
        font-size: 16px;
    }
    
    .depoimentos-section {
        padding: 80px 0;
    }
    
    .depoimentos-title {
        font-size: 50px;
        margin-bottom: 60px;
    }
    
    .depoimento-slide {
        min-width: calc(50% - 11px);
        height: 450px;
    }
    
    .pioneirismo-section {
        padding: 80px 0;
    }
    
    .footer-title {
        font-size: 30px;
    }
    
    .footer-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(13, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(180, 151, 90, 0.2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .header-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .nav-menu li a {
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero {
        min-height: 450px;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }
    
    .footer-content {
        padding: 40px 20px;
    }
    
    .referencia-section {
        padding: 60px 0;
    }
    
    .section-label {
        font-size: 11px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .referencia-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    .depoimentos-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .depoimentos-buttons .btn-outline {
        width: 100%;
    }
    
    .destaques-section {
        padding: 50px 0;
    }
    
    .destaques-title {
        font-size: 24px;
    }
    
    .harmonizacao-section {
        padding: 15px 0;
    }
    
    .harmonizacao-container {
        padding: 0 10px;
        gap: 15px;
    }
    
    .harmonizacao-content {
        min-height: 300px;
    }
    
    .harmonizacao-image {
        height: 300px;
    }
    
    .harmonizacao-title-small {
        font-size: 20px;
    }
    
    .harmonizacao-description-small {
        font-size: 14px;
    }
    
    .image-overlay-text h3 {
        font-size: 20px;
    }
    
    .image-overlay-text p {
        font-size: 14px;
    }
    
    .harmonizacao-text-bottom-right {
        padding: 30px 20px 20px;
    }
    
    .image-overlay-text {
        padding: 30px 20px 20px;
    }
    
    .especificacoes-section {
        padding: 50px 0;
    }
    
    .especificacoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .especificacao-card {
        padding: 30px 20px;
    }
    
    .estatisticas-section {
        padding: 60px 0;
    }
    
    .estatisticas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .estatistica-item {
        padding: 15px;
    }
    
    .estatistica-number {
        font-size: 36px;
    }
    
    .estatistica-title {
        font-size: 20px;
    }
    
    .estatistica-subtitle {
        font-size: 15px;
    }
    
    .depoimentos-section {
        padding: 60px 0;
    }
    
    .depoimentos-title {
        font-size: 42px;
        margin-bottom: 40px;
    }
    
    .galeria-wrapper {
        margin-bottom: 30px;
    }
    
    .galeria-arrow {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .galeria-prev {
        left: 10px;
    }
    
    .galeria-next {
        right: 10px;
    }
    
    .depoimentos-carousel {
        gap: 15px;
    }
    
    .depoimento-slide {
        height: 400px;
        min-width: calc((100% - 15px) / 2);
    }
    
    .pioneirismo-section {
        padding: 60px 0;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px;
    }
    
    .footer-title {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .galeria-wrapper {
        margin-bottom: 30px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .footer-content {
        padding: 35px 15px;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .referencia-section {
        padding: 50px 0;
    }
    
    .harmonizacao-content {
        min-height: 250px;
    }
    
    .harmonizacao-image {
        height: 250px;
    }
    
    .harmonizacao-title-small {
        font-size: 18px;
    }
    
    .harmonizacao-description-small {
        font-size: 13px;
    }
    
    .image-overlay-text h3 {
        font-size: 18px;
    }
    
    .image-overlay-text p {
        font-size: 13px;
    }
    
    .harmonizacao-text-bottom-right {
        padding: 25px 15px 15px;
    }
    
    .image-overlay-text {
        padding: 25px 15px 15px;
    }
    
    .especificacoes-section {
        padding: 40px 0;
    }
    
    .especificacao-card {
        padding: 25px 15px;
    }
    
    .especificacao-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .especificacao-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .especificacao-text {
        font-size: 14px;
    }
    
    .estatisticas-section {
        padding: 50px 0;
    }
    
    .estatistica-number {
        font-size: 32px;
    }
    
    .estatistica-title {
        font-size: 18px;
    }
    
    .estatistica-subtitle {
        font-size: 14px;
    }
    
    .depoimentos-section {
        padding: 50px 0;
    }
    
    .depoimentos-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .galeria-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .galeria-prev {
        left: 5px;
    }
    
    .galeria-next {
        right: 5px;
    }
    
    .depoimentos-carousel {
        gap: 10px;
    }
    
    .depoimento-slide {
        height: 350px;
        min-width: 100%;
    }
    
    .pioneirismo-section {
        padding: 50px 0;
    }
    
    .footer-title {
        font-size: 24px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 14px;
    }
    
    .depoimentos-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .depoimentos-buttons .btn-outline {
        width: 100%;
    }
    
    .referencia-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .galeria-wrapper {
        margin-bottom: 25px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .depoimentos-title {
        font-size: 32px;
    }
    
    .harmonizacao-content {
        min-height: 220px;
    }
    
    .harmonizacao-image {
        height: 220px;
    }
    
    .depoimento-slide {
        height: 300px;
        min-width: 100%;
    }
    
    .galeria-arrow {
        width: 35px;
        height: 35px;
        font-size: 22px;
    }
    
    .galeria-prev {
        left: 5px;
    }
    
    .galeria-next {
        right: 5px;
    }
    
    .depoimentos-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .depoimentos-buttons .btn-outline {
        width: 100%;
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .referencia-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .referencia-buttons .btn-outline {
        width: 100%;
        padding: 12px 20px;
        font-size: 11px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 50px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: #9d8250;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .lightbox-content {
        max-width: 90%;
        max-height: 85vh;
    }
    
    .lightbox-content img {
        max-height: 85vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-content img {
        max-height: 80vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 75vh;
    }
    
    .lightbox-content img {
        max-height: 75vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-close {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 100%;
        max-height: 70vh;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}
