/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Originária do Design System (Blade & Co) */
    --gold: #C8A97E;
    --gold-light: #D4BC96;
    --gold-dark: #A8885E;

    --black: #0A0A0A;
    --black-light: #141414;
    --black-medium: #1A1A1A;
    --white: #FAFAF9;
    --white-dim: #E8E6E1;
    --gray: #6B6B6B;
    --gray-light: #999999;

    /* Paleta de Cores Artesão Nobre */
    --verde-profundo: #121F18;
    --bege-dourado: #C9B283;
    --branco-suave: #F2F2F2;

    /* Fontes Premium */
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --display: 'Bebas Neue', Impact, sans-serif;

    /* Curvas de Animação - Design System */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-premium: cubic-bezier(0.21, 0.83, 0.26, 1);
    /* Curva super elegante e rápida */
    --bege-dourado-escuro: #AA976F;
    /* Para o efeito de slide no botão */

    --texto-base: #333333;
    /* Adicionado para os conteúdos de SEO */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    background: var(--verde-profundo);
    color: var(--branco-suave);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.75rem 1.25rem;
    background: var(--bege-dourado);
    color: var(--verde-profundo);
    border-radius: 0 0 4px 0;
    font-weight: 600;
    transform: translateY(-100%);
    transition: transform 0.2s var(--ease-premium);
    z-index: 1100;
}

.skip-link:focus {
    transform: translateY(0);
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--gold-dark);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--bege-dourado-escuro);
}

/* ========== HEADER NAVBAR ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s var(--ease-premium);
}

/* Estado do Header ao Scrollar */
.header.header-scrolled {
    height: 80px;
    background: rgba(18, 31, 24, 0.85);
    /* Verde profundo com transparência */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 178, 131, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease-premium);
}

.header.header-scrolled .logo-img {
    height: 38px;
}

.logo-sans {
    font-family: var(--display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--branco-suave);
    transition: color 0.4s var(--ease-premium);
}

.header.header-scrolled .logo-sans {
    color: var(--branco-suave);
    /* Mantemos branco pois o fundo do header vira verde translucido */
}

.logo-serif {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--bege-dourado);
    font-style: italic;
    font-weight: 400;
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--branco-suave);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: color 0.25s var(--ease-premium), opacity 0.25s var(--ease-premium);
    opacity: 0.85;
}

.header.header-scrolled .header-nav a {
    opacity: 0.9;
}

.header-nav a:hover {
    color: var(--bege-dourado);
    opacity: 1;
}

/* Equivalente ao Navigation CTA do DS - Com mais peso (Sólido) */
.btn-header {
    background: var(--bege-dourado);
    color: var(--verde-profundo);
    padding: 0.85rem 2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s var(--ease-premium);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Sombra base discreta */
    cursor: pointer;
}

.btn-header:hover {
    background: var(--bege-dourado-escuro);
    transform: translateY(-1px);
    /* Subida sutil */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    /* Sombra elegante expandida */
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    /* Exatos 100% da tela para nÃ£o ter scroll extra nativo  */
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    background-color: var(--verde-profundo);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* Ocupar 100% do pai pra nÃ£o empurrar grid */
    padding: 6rem 0 2rem 4rem;
    /* Diminuimos o top pra distribuir melhor numa tela congelada em 100vh */
    position: relative;
    z-index: 5;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-tag-line {
    width: 50px;
    height: 1px;
    background: var(--bege-dourado);
}

.hero-tag-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bege-dourado);
}

.hero-title {
    font-family: var(--display);
    font-size: clamp(4rem, 6vw, 6vw);
    /* Limitado pra nÃ£o estourar em monitores normais e gerar scroll */
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--branco-suave);
    margin: 0 0 1.5rem 0;
}

.hero-title span {
    display: block;
}

.hero-title .title-accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.15em;
    text-transform: none;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;

    /* Gradiente de Ouro Líquido */
    background: linear-gradient(-45deg,
            #9B7E4B 25%,
            #C9B283 50%,
            #F1E4C1 55%,
            #C9B283 60%,
            #9B7E4B 85%);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s var(--ease-premium);

    /* Animação Constante Suave de Brilho */
    animation: gold-flow 8s linear infinite;
    cursor: pointer;
    filter: drop-shadow(0 0 1px rgba(201, 178, 131, 0.3));
}

.hero-title .title-accent:hover {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    letter-spacing: 0.05em;
    /* Respira sutilmente */
}

/* Animação do fluxo de ouro metálico */
@keyframes gold-flow {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Underline de Luxo (Reflexo) */
.hero-title .title-accent::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9B283, transparent);
    transition: width 0.6s var(--ease-premium);
}

.hero-title .title-accent:hover::after {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .hero-title .title-accent {
        animation: none !important;
        background-size: 100% 100%;
    }
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.75);
    max-width: 450px;
    margin-bottom: 2.5rem;
    /* Margem suavizada pra economizar altura */
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Equivalente ao Reserve Chair (Primary) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bege-dourado);
    color: var(--verde-profundo);
    padding: 1.1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.25s var(--ease-premium);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bege-dourado-escuro);
    transform: translateX(-101%);
    transition: transform 0.3s var(--ease-premium);
    /* Slide menos agressivo */
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span,
.btn-primary .iconify {
    position: relative;
    z-index: 1;
}

.btn-primary .iconify {
    transition: transform 0.25s var(--ease-premium);
}

.btn-primary:hover .iconify {
    transform: translateX(3px);
    /* Movimento mais delicado */
}

/* Equivalente ao View Services (Outline) */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--branco-suave);
    text-decoration: none;
    transition: color 0.25s var(--ease-premium), opacity 0.25s var(--ease-premium);
    opacity: 0.85;
    cursor: pointer;
}

.btn-outline:hover {
    color: var(--bege-dourado);
    opacity: 1;
}

.btn-outline .iconify {
    font-size: 1.2rem;
    transition: transform 0.25s var(--ease-premium);
}

.btn-outline:hover .iconify {
    transform: translateX(3px);
    /* Movimento mais sutil */
}

/* Full Width Submit Equivalent */
.btn-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--bege-dourado);
    color: var(--verde-profundo);
    transition: background 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--bege-dourado-escuro);
}

/* ========== HERO ANIMATIONS ========== */
.hero-content>* {
    opacity: 0;
    animation: fadeUpPremium 0.8s var(--ease-premium) forwards;
}

.hero-tag {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-desc {
    animation-delay: 0.3s;
}

.hero-actions {
    animation-delay: 0.4s;
}

@keyframes fadeUpPremium {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== HERO IMAGE (Transição Premium) ========== */
.hero-image {
    position: absolute;
    /* Preenche a direita */
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

/* Máscara que dissolve foto de encontro com a cor de fundo preta/verde */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 35%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 35%, black 100%);

    /* Reveal e Parallax Preparation */
    opacity: 0;
    animation: scaleRevealPremium 1.8s var(--ease-premium) forwards;
}

@keyframes scaleRevealPremium {
    from {
        opacity: 0;
        transform: scale(1.05);
        /* Escala inicial super leve */
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sobreposição de Degradê Suave para "Apagar" a linha */
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--verde-profundo) 0%, transparent 45%);
    pointer-events: none;
    z-index: 2;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        width: 100%;
        height: 60vh;
        position: relative;
    }

    .hero-image img {
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 40%);
        mask-image: linear-gradient(to top, transparent 0%, black 40%);
    }

    .hero-image::after {
        background: linear-gradient(to top, var(--verde-profundo) 0%, transparent 40%);
    }

    .header {
        padding: 0 2rem;
    }

    .hero-content {
        padding: 2rem 2rem 4rem;
    }
}

/* ========== BENEFITS SECTION ========== */
.benefits {
    padding: 4.5rem 4rem;
    background: var(--verde-profundo);
    position: relative;
    overflow: hidden;
}

.benefits-container {
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-header {
    margin-bottom: 3.5rem;
    max-width: 700px;
}

.benefits-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4vw, 4vw);
    line-height: 1.1;
    color: var(--branco-suave);
    ;
    margin: 1.5rem 0;
}

/* Variante do título na seção de conteúdos (fundo claro) */
.seo-section .benefits-title {
    color: var(--verde-profundo);
}

.benefits-subtitle {
    font-size: 1.1rem;
    color: var(--branco-suave);
    ;
    line-height: 1.6;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 178, 131, 0.1);
    padding: 3rem 2.5rem;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 178, 131, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-premium);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 178, 131, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.2rem;
    color: var(--bege-dourado);
    margin-bottom: 2rem;
    transition: transform 0.4s var(--ease-premium);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--branco-suave);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.benefit-card-text {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.6;
    font-weight: 400;
}

/* ========== RESPONSIVIDADE BENEFITS ========== */
@media (max-width: 768px) {
    .benefits {
        padding: 6rem 2rem;
    }

    .benefits-header {
        margin-bottom: 3.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 2.5rem 2rem;
    }
}

/* ========== DESIGNER SECTION (CINEMATIC FULL-BLEED) ========== */
.designer {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Imagem de fundo full-bleed */
.designer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.designer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.15) contrast(1.05) brightness(0.9);
    transform: scale(1.03);
    transition: transform 8s ease;
}

.designer:hover .designer-bg img {
    transform: scale(1);
}

/* Véu de gradiente cinematic */
.designer-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(18, 31, 24, 0.25) 0%, transparent 50%),
        linear-gradient(to top, rgba(18, 31, 24, 0.9) 0%, transparent 60%);
}

/* Container de conteúdo sobre a imagem */
.designer-overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 5rem 0 0;
    min-height: 90vh;
}

/* Linha lateral decorativa */
.designer-side-line {
    position: absolute;
    left: 2.5rem;
    bottom: 12rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.designer-side-line::before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--bege-dourado);
    opacity: 0.6;
}

.designer-side-text {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    font-weight: 600;
    color: rgba(201, 178, 131, 0.7);
    white-space: nowrap;
}

/* Card flutuante de conteúdo */
.designer-card {
    background: rgba(250, 249, 246, 0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 178, 131, 0.2);
    padding: 4.5rem;
    max-width: 520px;
    margin-bottom: 5rem;
    margin-left: auto;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

/* Borda de destaque dourada no topo do card */
.designer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bege-dourado), transparent);
}

.designer-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 3.5vw, 3.5vw);
    line-height: 0.95;
    color: var(--verde-profundo);
    margin: 1.5rem 0 0.5rem 0;
}

.designer-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.designer-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
}

.designer-text a {
    color: var(--gold-dark);
    border-bottom: 1px solid rgba(168, 136, 94, 0.3);
    transition: border-color 0.3s;
}

.designer-text a:hover {
    border-color: var(--gold-dark);
}

.designer-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.designer-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--verde-profundo);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.designer-list li .iconify {
    color: var(--bege-dourado);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.designer-observation {
    border-top: 1px solid rgba(18, 31, 24, 0.1);
    padding-top: 2rem;
    margin-bottom: 2.5rem;
}

.designer-observation p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: #666;
    line-height: 1.65;
}

.designer-observation strong {
    font-style: normal;
    color: var(--verde-profundo);
}

/* Barra inferior: frase + stats */
.designer-stats {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: stretch;
    background: rgba(12, 22, 16, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 178, 131, 0.15);
}

/* Bloco da frase/citação (lado esquerdo) */
.designer-quote-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 3rem;
    flex: 1;
    border-right: 1px solid rgba(201, 178, 131, 0.15);
}

.designer-quote-icon {
    font-family: var(--serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--bege-dourado);
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: -0.5rem;
}

.designer-quote-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.75);
    line-height: 1.55;
    max-width: 420px;
}

/* Bloco de números (lado direito) */
.designer-stats-numbers {
    display: flex;
    align-items: center;
}

.designer-stat {
    text-align: center;
    padding: 1.8rem 3rem;
}

.stat-number {
    display: block;
    font-family: var(--display);
    font-size: 2.4rem;
    line-height: 1;
    color: var(--bege-dourado);
    letter-spacing: 0.02em;
}

.stat-label {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: rgba(250, 249, 246, 0.5);
    margin-top: 0.35rem;
    text-transform: uppercase;
}

.designer-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(201, 178, 131, 0.2);
    flex-shrink: 0;
}


/* ========== RESPONSIVIDADE DESIGNER ========== */
@media (max-width: 1024px) {
    .designer {
        min-height: unset;
    }

    .designer-overlay-content {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        min-height: unset;
    }

    .designer-veil {
        background: linear-gradient(to top, rgba(18, 31, 24, 0.95) 40%, rgba(18, 31, 24, 0.4) 100%);
    }

    .designer-bg {
        position: relative;
        height: 55vw;
        min-height: 260px;
    }

    .designer-bg img {
        position: absolute;
        inset: 0;
    }

    .designer-card {
        margin: 0;
        max-width: 100%;
        border: none;
        border-top: 2px solid var(--bege-dourado);
        padding: 3rem 2rem;
        backdrop-filter: none;
        background: #FAF9F6;
        box-shadow: none;
    }

    .designer-card::before {
        display: none;
    }

    .designer-stats {
        position: relative;
        left: unset;
        bottom: unset;
        flex-direction: column;
        border: none;
        border-top: 1px solid rgba(201, 178, 131, 0.2);
        background: rgba(12, 22, 16, 0.95);
    }

    .designer-quote-block {
        border-right: none;
        border-bottom: 1px solid rgba(201, 178, 131, 0.15);
        padding: 2rem 1.5rem;
        justify-content: center;
        text-align: center;
    }

    .designer-stats-numbers {
        justify-content: center;
        padding: 1.5rem 0;
    }

    .designer-stat {
        padding: 1rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .designer-side-line {
        display: none;
    }
}



/* ========== PROJETISTA SECTION ========== */
.projetista-section {
    padding: 5rem 4rem;
    background: var(--branco-suave);
    border-top: 1px solid rgba(18, 31, 24, 0.05);
}

.projetista-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.projetista-image {
    position: relative;
}

.projetista-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0px var(--bege-dourado);
}

.projetista-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    border-top: 2px solid var(--bege-dourado);
    border-left: 2px solid var(--bege-dourado);
    pointer-events: none;
}

.projetista-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 3.5vw, 3.5vw);
    color: var(--verde-profundo);
    margin: 1.5rem 0 0.5rem 0;
}

.projetista-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--gold-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.projetista-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.projetista-list {
    list-style: none;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
}

.projetista-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--verde-profundo);
}

.projetista-list li .iconify {
    color: var(--gold-dark);
    font-size: 1.2rem;
}

.projetista-observation {
    background: rgba(18, 31, 24, 0.03);
    border-left: 3px solid var(--bege-dourado);
    padding: 2rem 2rem;
    margin-bottom: 2.5rem;
}

.projetista-observation p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .projetista-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .projetista-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .projetista-section {
        padding: 5rem 2rem;
    }

    .projetista-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .projetista-observation {
        width: 100%;
        border-left: 0;
        border-top: 3px solid var(--bege-dourado);
        padding: 2.5rem 1.5rem;
    }
}

/* ========== PORTFOLIO SECTION ========== */

.portfolio {
    padding: 4.5rem 4rem;
    background: var(--branco-suave);
    color: var(--verde-profundo);
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-header {
    margin-bottom: 3.5rem;
    text-align: left;
}

.portfolio-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4.5vw, 4.5vw);
    line-height: 1.1;
    margin: 1.5rem 0;
}

.portfolio-subtitle {
    font-size: 1.1rem;
    color: var(--verde-profundo);
    max-width: 600px;
    font-weight: 300;
}

/* Sistema de Abas - Portfólio */
.portfolio-tabs {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-tab {
    background: none;
    border: none;
    padding: 1rem 0;
    color: var(--verde-profundo);
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.portfolio-tab:hover {
    color: rgba(97, 83, 6, 0.8);
}

.portfolio-tab.active {
    color: var(--bege-dourado-escuro);
}

.portfolio-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bege-dourado);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.portfolio-grid.portfolio-grid--hidden {
    display: none;
    opacity: 0;
}

.portfolio-item {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--ease-premium);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-premium);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 31, 24, 0.9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: all 0.4s var(--ease-premium);
    transform: translateY(10px);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bege-dourado);
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-item-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #f3f3f3;
}

.portfolio-link {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    border-bottom: 1px solid var(--bege-dourado);
    align-self: flex-start;
    padding-bottom: 2px;
    color: var(--branco-suave);
}

.portfolio-actions {
    display: flex;
    justify-content: center;
}

/* ========== RESPONSIVIDADE PORTFOLIO ========== */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 6rem 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 300px;
    }
}

/* ========== PROCESS SECTION ========== */
.process {
    padding: 4.5rem 4rem;
    background: #1b2d24;
    color: var(--branco-suave);
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: 1300px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4.5vw, 4.5vw);
    line-height: 1.1;
    margin-top: 1.5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 178, 131, 0.1);
    border-radius: 12px;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
    transition: all 0.5s var(--ease-premium);
    overflow: hidden;
}

.step-number {
    font-family: var(--display);
    font-size: 8rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -1.5rem;
    right: -1rem;
    z-index: 0;
    transition: all 0.5s var(--ease-premium);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 178, 131, 0.1);
    border: 1px solid var(--bege-dourado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--bege-dourado);
    font-size: 1.5rem;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    z-index: 2;
}

.step-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: var(--bege-dourado);
    position: relative;
    z-index: 2;
}

.step-text {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.6;
    font-weight: 300;
    max-width: 240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Interação de Hover */
.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 178, 131, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.process-step:hover .step-number {
    color: rgba(201, 178, 131, 0.08);
    /* subtle gold tint */
    top: -2rem;
}

.process-step:hover .step-icon {
    background: var(--bege-dourado);
    color: var(--verde-profundo);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ========== RESPONSIVIDADE PROCESS ========== */
@media (max-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 2.5rem 1.5rem;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 4.5rem 4rem;
    background: #FAF9F6;
    /* Off-white premium para contraste */
    position: relative;
    border-top: 1px solid rgba(18, 31, 24, 0.05);
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4.5vw, 4.5vw);
    color: var(--verde-profundo);
    line-height: 1.1;
    margin-top: 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(18, 31, 24, 0.05);
    transition: all 0.5s var(--ease-premium);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(18, 31, 24, 0.02);
}

.testimonial-quote {
    color: var(--bege-dourado);
    font-size: 2rem;
    opacity: 0.4;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 2rem;
    color: var(--bege-dourado);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    font-weight: 300;
    margin-bottom: 3rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid rgba(18, 31, 24, 0.05);
    padding-top: 2rem;
}

.client-avatar {
    width: 48px;
    height: 48px;
    background: var(--verde-profundo);
    color: var(--bege-dourado);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 600;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--verde-profundo);
    font-weight: 500;
}

.client-project {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* Interação Premium */
.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(18, 31, 24, 0.08);
    border-color: rgba(201, 178, 131, 0.3);
}

/* ========== RESPONSIVIDADE TESTIMONIALS ========== */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 6rem 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FINAL CTA SECTION ========== */
.cta {
    padding: 4.5rem 4rem;
    background: #FAF9F6;
    position: relative;
    overflow: hidden;
}

/* Decorações de fundo para o efeito "Fora da Caixa" */
.cta-background-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--bege-dourado);
    top: -200px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--verde-profundo);
    bottom: -150px;
    left: -100px;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: var(--verde-profundo);
    border: 1px solid rgba(201, 178, 131, 0.15);
    padding: 6rem 4rem;
    text-align: center;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-2xl);
}

.cta-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 5vw);
    color: var(--branco-suave);
    line-height: 1.1;
    margin: 2rem 0;
    max-width: 800px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.7);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 4rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--branco-suave);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: all 0.4s var(--ease-premium);
}

.btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #25D366;
    transform: translateY(-5px);
}

.btn-whatsapp .iconify {
    font-size: 1.4rem;
}

.cta-trust {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--bege-dourado);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.trust-item .iconify {
    font-size: 1.2rem;
}

/* ========== RESPONSIVIDADE CTA ========== */
@media (max-width: 768px) {
    .cta {
        padding: 6rem 2rem;
    }

    .cta-card {
        padding: 4rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: 4.5rem 4rem;
    background: #fceed8;
    /* Off-white premium */
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 4vw, 4vw);
    color: var(--verde-profundo);
    line-height: 1.1;
    margin-top: 1.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(18, 31, 24, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--ease-premium);
}

.faq-question span:first-child {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--verde-profundo);
    font-weight: 500;
    padding-right: 2rem;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Ícone de Plus (+) que vira Minus (-) */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--bege-dourado);
    transition: transform 0.4s var(--ease-premium);
}

/* Linha horizontal */
.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Linha vertical */
.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding-bottom: 2.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
    max-width: 800px;
}

.faq-question:hover span:first-child {
    color: var(--gold-dark);
}

/* ========== RESPONSIVIDADE FAQ ========== */
@media (max-width: 768px) {
    .faq {
        padding: 6rem 2rem;
    }

    .faq-question span:first-child {
        font-size: 1.1rem;
    }
}

/* ========== SEO CONTENT SECTION ========== */
.seo-section {
    padding: 4.5rem 4rem;
    background: #fbfbfd;
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 178, 131, 0.2), transparent);
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.seo-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.seo-header p {
    color: #515b56 !important;
    line-height: 1.8;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.seo-card {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(18, 31, 24, 0.04);
    transition: all 0.6s var(--ease-premium);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.seo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 178, 131, 0.4), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.seo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(18, 31, 24, 0.1);
    border-color: transparent;
}

.seo-card:hover::after {
    opacity: 1;
}

.seo-card-icon {
    font-size: 3.5rem;
    color: var(--bege-dourado);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(201, 178, 131, 0.05);
    border-radius: 12px;
    transition: all 0.4s var(--ease-premium);
}

.seo-card:hover .seo-card-icon {
    background: var(--bege-dourado);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.seo-card h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--verde-profundo);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.seo-card p {
    font-size: 1.05rem;
    color: #333333;
    /* Contraste máximo */
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    font-weight: 400;
}

.seo-card .btn-outline {
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--verde-profundo);
    border: 1.5px solid var(--bege-dourado);
    border-radius: 6px;
    background: transparent;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.seo-card .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--bege-dourado);
    transition: width 0.4s var(--ease-premium);
    z-index: -1;
}

.seo-card:hover .btn-outline {
    color: var(--bege-dourado);
    box-shadow: 0 10px 20px rgba(201, 178, 131, 0.3);
}

.seo-card .btn-outline:hover {
    color: #fff;
}

.seo-card .btn-outline:hover::before {
    width: 100%;
}

/* ========== SEO PAGES GLOBALS ========== */
.seo-page-header {
    padding: 12rem 4rem 6rem;
    background: var(--verde-profundo);
    color: var(--branco-suave);
    text-align: center;
}

.seo-page-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--bege-dourado);
}

.seo-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.7);
}

.seo-breadcrumb a {
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    transition: color 0.3s var(--ease-premium);
}

.seo-breadcrumb a:hover {
    color: var(--branco-suave);
}

.seo-breadcrumb span[aria-current="page"] {
    color: var(--bege-dourado);
}

.seo-page-content {
    padding: 5rem 4rem;
    max-width: 100%;
    background: #fff;
    color: var(--texto-base);
    line-height: 1.8;
}

.seo-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.seo-page-content h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--verde-profundo);
    margin: 4rem 0 1.5rem;
}

.seo-page-content h3 {
    font-family: var(--sans);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--verde-profundo);
    margin: 2.5rem 0 1rem;
}

.seo-page-content p {
    margin-bottom: 1.5rem;
}

.seo-page-content ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.seo-page-content li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style: disc;
    color: var(--verde-profundo);
}

@media (max-width: 1024px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .seo-section,
    .seo-page-content {
        padding: 5rem 2rem;
    }

    .seo-page-header {
        padding: 8rem 2rem 4rem;
    }

    .seo-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FOOTER SECTION ========== */
.footer {
    padding: 6rem 4rem 3rem;
    background: var(--verde-profundo);
    color: var(--branco-suave);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.4fr 1.5fr;
    gap: 3rem;
    margin-bottom: 6rem;
}

.logo-footer {
    margin-bottom: 2rem;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.6);
    max-width: 320px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--bege-dourado);
    text-decoration: none;
    transition: all 0.3s var(--ease-premium);
    opacity: 0.8;
}

.footer-social-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: var(--sans);
}

.footer-social-link .iconify {
    font-size: 1.6rem;
}

.footer-social-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-title {
    font-family: var(--display);
    font-size: 1.1rem;
    color: var(--branco-suave);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    color: rgba(245, 245, 245, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-premium);
}

.footer-links ul li a:hover {
    color: var(--bege-dourado);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.6);
    align-items: flex-start;
}

.footer-contact-list li .iconify {
    color: var(--bege-dourado);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease-premium);
}

.footer-contact-list li a:hover {
    color: var(--bege-dourado);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
}

.footer-info {
    text-align: right;
    max-width: 700px;
}

.footer-info p {
    font-size: 0.75rem;
    color: rgba(245, 245, 245, 0.4);
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-info p:last-child {
    margin-bottom: 0;
}

.developer-credit {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.7rem;
    color: rgba(245, 245, 245, 0.25);
    min-width: fit-content;
}

.developer-logo {
    height: 28px;
    width: auto;
    opacity: 0.35;
    transition: all 0.4s var(--ease-premium);
    filter: brightness(0) invert(1);
}

.developer-credit a:hover .developer-logo {
    opacity: 0.8;
    transform: scale(1.05);
    filter: none;
}

@media (max-width: 992px) {
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }

    .footer-info {
        text-align: center;
        max-width: 100%;
    }

    .developer-credit {
        align-items: center;
    }
}

/* ========== RESPONSIVIDADE FOOTER ========== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 6rem 2rem 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* ========== AUTHORITY SECTION ========== */
.authority {
    padding: 5rem 4rem;
    background: #FAF9F6;
    /* Off-white para destaque */
    border-bottom: 1px solid rgba(18, 31, 24, 0.05);
}

.authority-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.authority-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.authority-number {
    font-family: var(--display);
    font-size: 3.5rem;
    color: var(--verde-profundo);
    font-weight: 600;
    line-height: 1;
}

.authority-label {
    font-size: 0.85rem;
    color: var(--verde-profundo);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .authority {
        padding: 4rem 2rem;
    }

    .authority-container {
        flex-direction: column;
        gap: 3rem;
    }

    .authority-number {
        font-size: 2.8rem;
    }
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.btn-whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--bege-dourado);
    border-radius: 50%;
    display: flex !important; /* Forçar visibilidade */
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(201, 178, 131, 0.3);
    z-index: 10002; /* Acima do modal e de outros elementos */
    text-decoration: none;
    transition: all 0.4s var(--ease-premium);
    pointer-events: auto;
}

.btn-whatsapp-fixed:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(201, 178, 131, 0.5);
}

.btn-whatsapp-fixed .iconify {
    color: var(--verde-profundo);
    font-size: 2.2rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--verde-profundo);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s var(--ease-premium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--verde-profundo);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.btn-whatsapp-fixed:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .btn-whatsapp-fixed {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Esconde tooltip no mobile */
    }
}

/* ========== SEO & CTA REFINEMENTS ========== */
.portfolio-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 6rem;
}


@media (max-width: 768px) {
    .portfolio-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }

    .portfolio-actions .btn-primary,
    .portfolio-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ========== MODAL & FORM STYLING ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 31, 24, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-premium);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
    padding: 2.5rem 3rem 1.5rem;
    text-align: center;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-body {
    padding: 2rem 3rem;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.modal-footer {
    padding: 1.5rem 3rem 2.5rem;
    flex-shrink: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--verde-profundo);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}



.modal-header h3 {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--verde-profundo);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.modal-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.modal-proof {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-proof span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--verde-profundo);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .modal-proof {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.modal-proof .iconify {
    color: var(--bege-dourado);
    font-size: 1.1rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-tip {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.2rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--verde-profundo);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.btn-submit {
    background: var(--verde-profundo);
    color: #fff;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background: var(--bege-dourado);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 178, 131, 0.3);
}

.form-message {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
    min-height: 1.2em;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}

/* RESPONSIVIDADE MODAL */
@media (max-width: 768px) {
    .modal-card {
        max-width: 85%;
    }
}

@media (max-width: 520px) {
    .modal-overlay {
        padding: 0;
    }

    .modal-card {
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header {
        padding: 4rem 1.5rem 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-footer {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
    }
}

/* ========== MOBILE REFINEMENTS (RESPONSIVE) ========== */

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 1rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--branco-suave);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--branco-suave);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Menu Aberto */
.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--verde-profundo);
    z-index: 1000;
    transition: right 0.5s var(--ease-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-links a {
    font-family: var(--display);
    font-size: 2.5rem;
    color: var(--branco-suave);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-nav-footer {
    margin-top: 4rem;
    text-align: center;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .header {
        padding: 0 2rem;
        height: 80px;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        padding: 8rem 2rem 4rem;
        text-align: center;
        align-items: center;
    }

    .hero-tag {
        justify-content: center;
        width: 100%;
    }

    .hero-tag-line:last-child {
        display: none;
    }

    .hero-tag-line:first-child {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        position: relative;
        height: 50vh;
        width: 100%;
        order: -1;
        /* Imagem no topo no mobile? Não, melhor manter a ordem ou inverter se necessário */
    }

    .hero-image {
        order: 2;
        /* Content first, then image */
    }

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

    /* Authority Section */
    .authority-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Portfolio Section */
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Designer Section */
    .designer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 3rem;
    }

    .designer-image {
        order: -1;
    }

    .designer-list {
        display: inline-block;
        text-align: left;
    }

    /* Process Section */
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    /* Footer */
    .footer {
        text-align: center !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Ajuste de Seções */
    section {
        padding: 4rem 1.5rem !important;
    }

    .hero-tag {
        justify-content: center !important;
        width: 100%;
        display: flex !important;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tag-line {
        display: block !important;
    }

    .hero-tag-line:last-child {
        display: none !important;
    }

    /* Grid de Portfólio no Mobile */
    .portfolio-item {
        height: 300px;
    }

    /* Menu Mobile Animado */
    .mobile-nav-links a {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s var(--ease-premium);
    }

    .mobile-nav.active .mobile-nav-links a {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-nav.active .mobile-nav-links a:nth-child(4) {
        transition-delay: 0.4s;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .authority-number {
        font-size: 2.5rem !important;
    }

    .footer-bottom {
        padding: 2rem 1.5rem;
    }
}