/* 
  Design System - Emanuel Pereira Designer
  Theme: Severe Luxury Minimalism / Geometric Silence
*/

/* --- Efeitos de Iluminação Ambiente --- */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 20s infinite alternate ease-in-out;
}

.glow-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.glow-3 {
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    animation-delay: -10s;
    opacity: 0.5;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* --- Sistema de Brilho Elite (Diamond Flare) --- */
.glass-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

/* O Reflexo Principal */
.glass-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(115deg,
            transparent 40%,
            rgba(255, 255, 255, 0.08) 45%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.08) 55%,
            transparent 60%);
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 1;
    animation: luxuriousShine 6s infinite ease-in-out;
}

/* O Reflexo Secundário (Mais rápido e sutil) */
.glass-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 150%;
    height: 200%;
    background: linear-gradient(115deg,
            transparent 45%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 55%);
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 1;
    animation: luxuriousShine 4s infinite ease-in-out;
    animation-delay: 1s;
}

@keyframes luxuriousShine {
    0% {
        left: -150%;
        opacity: 0;
    }

    10%,
    40% {
        opacity: 1;
    }

    50% {
        left: 150%;
        opacity: 1;
    }

    60%,
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Brilho na Borda ao passar o brilho */
.glass-card:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-color: #FFCCA5;
    /* Peach accent from design */
    --surface-glass: rgba(217, 217, 217, 0.1);
    --border-glass: rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-signature: 'Carattere', cursive;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: none;
    /* Alterado de uppercase para minúsculo/normal */
    letter-spacing: 1px;
}

.signature {
    font-family: var(--font-signature);
    color: var(--accent-color);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Navbar */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    /* Aumentado de 90% para 95% */
    max-width: 1200px;
    /* Aumentado de 1000px para 1300px */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    /* Reduzido de 50px para 25px para levar o botão mais pro canto */
    z-index: 1000;
    border-radius: 100px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: auto;
    /* Empurra os links para a direita, longe do logo */
    margin-right: 80px;
    /* Mantém eles próximos do botão, mas com um respiro */
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    opacity: 1;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    z-index: 2;
    background-image: url('image/FOTO DA HERO FRENTE.png');
    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;
}

.hero-layout {
    display: flex;
    align-items: center;
    min-height: 100vh;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    position: absolute;
    right: -100px;
    bottom: -50px;
    width: 65%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
    pointer-events: none;
}

.hero-visual img {
    height: 100%;
    width: 110%;
    object-fit: contain;
    object-position: bottom right;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.signature {
    font-family: var(--font-signature);
    color: var(--accent-color);
    font-size: 82px;
    font-weight: 400;
    /* Removendo o negrito herdado do H1 */
    text-transform: none;
    display: inline-block;
}

.hero-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 420px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    position: relative;
    width: 309.22px;
    height: 74.08px;
    text-decoration: none;
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
}

/* StyledRectangle3 - O Fundo */
.cta-button::before {
    content: '';
    position: absolute;
    width: 299.55px;
    height: 62.81px;
    left: 4.83px;
    top: 4.83px;
    background: linear-gradient(95deg, #656565 0%, white 27%, white 69%, #4A4A4A 100%);
    border-radius: 16px;
    z-index: 1;
}

/* StyledRectangle4 - O Outline */
.cta-button::after {
    content: '';
    position: absolute;
    width: 309.22px;
    height: 74.08px;
    left: 0px;
    top: 0px;
    opacity: 0.48;
    border-radius: 16px;
    outline: 1.61px white solid;
    pointer-events: none;
    z-index: 2;
}

/* O Texto */
.cta-button span {
    position: absolute;
    left: 4.83px;
    /* Alinhado ao início do fundo */
    top: 0;
    width: 299.55px;
    height: 74.08px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 19.54px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.78px;
    z-index: 3;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 7px 18px;
    /* Reduzido de 10px 25px */
    background: linear-gradient(95deg, #656565 0%, white 27%, white 69%, #4A4A4A 100%);
    color: black;
    text-decoration: none;
    font-weight: 700;
    font-size: 10px;
    /* Reduzido de 11px */
    border-radius: 9px;
    transition: var(--transition-smooth);
    border: none;
}

.nav-button::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 9px;
    outline: 1px white solid;
    opacity: 0.48;
    pointer-events: none;
}

.cta-button:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Decorative Elements */
.bg-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
    opacity: 0.15;
}

.grad-1 {
    top: -100px;
    right: -100px;
    background: white;
}

/* Ticker Section - X Shape (Crossed) Full-Width */
.ticker-section {
    position: relative;
    width: 100vw;
    height: 140px;
    /* Reduzido para ficar mais fino */
    overflow: hidden;
    margin-top: -100px;
    /* Ajuste para subir sobre a hero */
    z-index: 20;
    pointer-events: none;
    background: transparent;
}

/* Segunda Dobra: Portfólio */
.portfolio-fold {
    padding: 120px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)), url('image/BACKGROUND PARA DOBRAS 2.png');
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

/* Animação de Luz (Flare) Intensificada */
.portfolio-flare {
    position: absolute;
    top: -320px;
    left: 50%;
    transform: translateX(-50%);
    width: 140vw;
    /* Um pouco mais largo */
    height: 700px;
    /* Um pouco mais alto */
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 80%);
    pointer-events: none;
    z-index: 4;
    animation: flare-glow 6s ease-in-out infinite;
    /* Mais rápido e vibrante */
}

@keyframes flare-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

.ticker-bar {
    position: absolute;
    width: 200vw;
    /* Aumentado para garantir cobertura total em 100% da viewport */
    height: 38px;
    /* Mais fina ainda para elegância */
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    left: -50vw;
    /* Centraliza a faixa gigante */
    top: 50%;
    box-shadow: 0 0 40px rgba(0, 0, 0, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bar-1 {
    transform: translateY(-50%) rotate(-3deg);
    z-index: 21;
}

.bar-2 {
    transform: translateY(-50%) rotate(3deg);
    z-index: 22;
    background: #0d0d0d;
    /* Leve diferença de tom para profundidade */
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}

.marquee.reverse {
    animation-direction: reverse;
}

.marquee span {
    color: white;
    font-size: 16px;
    /* Letra menor para combinar com a faixa fina */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-right: 60px;
    opacity: 0.6;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.grad-2 {
    bottom: -100px;
    left: -100px;
    background: var(--accent-color);
}



/* Animação de Luz (Flare) Intensificada */
.portfolio-flare {
    position: absolute;
    top: -320px;
    left: 50%;
    transform: translateX(-50%);
    width: 140vw;
    /* Um pouco mais largo */
    height: 700px;
    /* Um pouco mais alto */
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 80%);
    pointer-events: none;
    z-index: 4;
    animation: flare-glow 6s ease-in-out infinite;
    /* Mais rápido e vibrante */
}

@keyframes flare-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

.portfolio-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.recent-projects-text {
    color: white;
    font-size: 19.49px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 2.92px;
    opacity: 0.8;
}

.portfolio-badge {
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.portfolio-badge span {
    color: white;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.secondary-cta {
    transform: scale(0.95);
    margin-top: 25px;
}

/* Projetos Grid & Blocks - Harmônico */
.projects-grid {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    /* Lado a lado */
    justify-content: center;
    gap: 25px;
    margin: 60px 0;
    flex-wrap: wrap;
    /* Responsivo */
}

.project-block {
    position: relative;
    flex: 1;
    /* Divide o espaço igualmente */
    min-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
    /* Proporção harmônica quadrada */
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Mostra a imagem inteira sem distorção */
    opacity: 0.8;
    transition: all 0.6s ease;
}

.project-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: auto;
    z-index: 2;
    text-align: left;
    pointer-events: none;
}

.project-info h3 {
    color: white;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    opacity: 0.9;
    transition: all 0.4s ease;
    margin: 0;
}

/* Hover Effects: Glow & Scale */
.project-block:hover {
    transform: scale(1.02);
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.25);
    z-index: 10;
}

.project-block:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.project-block:hover h3 {
    letter-spacing: 4px;
    /* Mais sutil, sem exagerar no tamanho */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Seção MEUS SERVIÇOS - Redesign Frame */
.services-fold {
    padding: 150px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)), url('image/BACKGROUND PARA DOBRAS 2.png');
    background-size: 120% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
}

.services-frame {
    width: 100%;
    max-width: 1200px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    padding: 80px 60px;
    position: relative;
    overflow: visible;
    /* Para a imagem do Emanuel poder flutuar/extrapolar se necessário */
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.section-header-alt {
    text-align: center;
    margin-bottom: 60px;
}

.services-title-badge {
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);

    /* Tipografia interna */
    color: white;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.services-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 65%;
    /* Define um espaço seguro para os cards */
    z-index: 5;
}

.service-card {
    padding: 30px;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.service-card h3 {
    font-size: 16px;
    color: var(--accent-color);
    /* Tom de pêssego/ouro */
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-portrait {
    position: absolute;
    /* Ignora o auto layout */
    right: -180px;
    bottom: -20px;
    width: 48%;
    max-width: 700px;
    opacity: 1;
    z-index: 5;
    min-width: 350px;
    opacity: 1;
    z-index: 5;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}

.portrait-img {
    width: 140%;
    height: auto;
    object-fit: contain;
    transform: translateY(20px);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    z-index: 10;
}

/* Hover Effects */
.service-card:hover {
    background: rgba(40, 40, 40, 0.3);
    border-color: rgba(255, 204, 165, 0.3);
    transform: translateY(-5px);
}

/* Ajustes Mobile para o Frame */
@media (max-width: 1024px) {
    .services-layout {
        flex-direction: column-reverse;
    }

    .services-frame {
        padding: 40px 20px;
        border-radius: 40px;
    }

    .services-info-grid {
        grid-template-columns: 1fr;
    }

    .portrait-img {
        width: 100%;
        max-width: 400px;
    }
}

/* Seção É PARA VOCÊ? - Estilo Referência */
.qualification-fold {
    padding: 150px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)), url('image/BACKGROUND PARA DOBRAS 2.png');
    background-size: 120% auto;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.qualification-header {
    text-align: center;
    margin-bottom: 80px;
}

.q-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.q-badge {
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 20px;
    /* Aumentado de 14px */
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.q-main-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.q-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.q-card {
    padding: 50px 40px;
    background: rgba(15, 15, 15, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.q-icon-box {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #B88A6E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 0 25px rgba(255, 204, 165, 0.3);
    position: relative;
}

.q-icon-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: var(--accent-color);
    opacity: 0.2;
    filter: blur(8px);
}

.q-icon {
    font-size: 24px;
    color: #000;
    font-weight: bold;
}

.q-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.q-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Hover e Efeitos dos Cards */
.q-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 204, 165, 0.2) !important;
    background: rgba(20, 20, 20, 0.8) !important;
}

.q-card:hover .q-icon-box {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(255, 204, 165, 0.5);
}

/* Ajustes para Mobile */
@media (max-width: 992px) {
    .q-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .q-main-title {
        font-size: 34px;
    }
}


/* Seção INVESTIMENTO */
.investment-fold {
    padding: 150px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)), url('image/BACKGROUND PARA DOBRAS 2.png');
    background-size: 120% auto;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-investment {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Esquerda */
.invest-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.invest-brand {
    padding-left: 10px;
}

.invest-logo {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
    opacity: 0.9;
}

.invest-role {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Centro: O Card */
.invest-center {
    position: relative;
    z-index: 2;
}

.invest-card {
    padding: 60px 50px;
    text-align: center;
    border-radius: 40px;
    background: rgba(15, 15, 15, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 204, 165, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.invest-card h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-weight: 400;
}

.white-text {
    color: var(--text-primary);
    font-weight: 700;
}

.invest-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 30px;
}

.invest-promise {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.8;
}

.price-placeholder {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.price-placeholder span {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(255, 204, 165, 0.3);
}

/* Direita: Benefícios */
.invest-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-top: 8px;
    box-shadow: 0 0 10px var(--accent-color);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsividade de Investimento */
@media (max-width: 1100px) {
    .grid-investment {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .invest-left {
        align-items: center;
    }

    .benefit-item {
        justify-content: center;
        text-align: left;
    }
}

/* Seção CONVITE EXCLUSIVO */
.invitation-fold {
    padding: 100px 0 150px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.981)), url('image/BACKGROUND PARA DOBRAS 2.png');
    background-size: 120% auto;
    background-position: center;
    background-attachment: fixed;
}

.invitation-card {
    padding: 80px 60px;
    border-radius: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.9) 100%) !important;
}

.invitation-tag {
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
}

.invitation-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.invitation-content p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.invitation-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.availability {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    /* Verde de disponibilidade */
    border-radius: 50%;
    box-shadow: 0 0 10px #4ADE80;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.invite-btn {
    transform: scale(1.1);
}

/* Luxury Footer */
.luxury-footer {
    padding: 80px 0 40px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-brand .footer-logo {
    height: 35px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 250px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.5;
}

.social-links {
    display: flex;
    gap: 30px;
    /* Mais espaço entre ícones maiores */
}

.social-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 26px;
    /* Tamanho mais imponente */
    opacity: 0.6;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVIDADE (TABLETS E CELULARES)
   ========================================================================== */

/* Tablets e Desktops Pequenos */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 60px;
    }

    .projects-grid {
        gap: 20px;
    }

    .services-frame {
        padding: 60px 40px;
    }

    .services-portrait {
        padding: 0 25px;
    }

    /* Ajuste de Navegação */
    .nav-links {
        display: none;
    }

    /* Hero Mobile Refinada (Isolada) */
    section.hero {
        position: relative;
        min-height: 90vh;
        /* Aumentado para garantir espaço */
        background: black !important;
        /* Removido o overflow: hidden que estava cortando o botão */
        padding-top: 120px;
        padding-bottom: 50px;
        display: flex;
        align-items: center;
    }

    section.hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('image/foto para a hero mobile.png?v=13') !important;
        background-position: 53% -200px !important;
        background-size: 400% auto !important;
        background-repeat: no-repeat !important;
        opacity: 0.9 !important;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 5;
        /* Garante que o texto fique por cima da foto */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 42px) !important;
        line-height: 1.1;
        margin-top: 40px;
    }

    .signature {
        font-size: clamp(65px, 18vw, 85px) !important;
        display: block;
        margin-top: 5px;
    }

    .hero-subtitle {
        font-size: clamp(14px, 3.8vw, 16px) !important;
        margin: 0 auto 35px;
        max-width: 90%;
        line-height: 1.6;
    }

    .cta-button {
        width: 230px !important;
        height: 55px !important;
        font-size: 14px !important;
    }

    .cta-button::before {
        width: 222px !important;
        height: 47px !important;
        left: 4px !important;
        top: 4px !important;
    }

    .cta-button::after {
        width: 230px !important;
        height: 55px !important;
    }

    .cta-button span {
        width: 222px;
        height: 55px;
        left: 4px;
        font-size: 14px;
        /* Mais legível */
        letter-spacing: 0.8px;
    }

    /* Projetos em 1 Coluna */
    .portfolio-fold,
    .services-fold,
    .qualification-fold,
    .investment-fold,
    .invitation-fold {
        background-size: 250% auto !important;
        background-attachment: fixed !important;
        background-position: center center !important;
    }

    .projects-grid {
        flex-direction: column;
    }

    .project-block {
        width: 100%;
        min-width: unset;
    }

    /* Seção de Serviços Mobile */
    .services-frame {
        border-radius: 30px;
        padding: 40px 20px;
    }

    .services-layout {
        flex-direction: column;
        gap: 10px;
        position: relative;
        /* Define o ponto de partida para a foto */
    }

    .services-info-grid {
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: 200px;
        /* Espaço suficiente para a foto não cobrir o texto */
    }

    .services-portrait {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) !important;
        right: auto;
        bottom: auto;
        top: -150px;
        /* Mantém a posição alta conforme seu ajuste */
        width: 130%;
        /* Ligeiramente menor para não vazar tanto */
        max-width: 480px;
        opacity: 1;
        pointer-events: none;
        display: flex;
        justify-content: center;
        z-index: 10;
    }

    .portrait-img {
        mask-image: linear-gradient(to bottom, black 70%, transparent 95%);
        -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 95%);
        width: 100%;
        height: auto;
    }

    /* Grids de Qualificação e Investimento */
    .q-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-investment {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .invest-left {
        align-items: center;
        text-align: center;
    }

    .invest-right {
        border-left: none;
        padding-left: 0;
    }

    /* Títulos Mobile */
    .q-main-title {
        font-size: 32px;
    }

    .q-badge,
    .portfolio-badge span,
    .services-title-badge {
        font-size: 16px;
        padding: 10px 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* --- Sistema de Animação Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay nos cards para surgirem um após o outro */
.service-card.reveal.active:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card.reveal.active:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card.reveal.active:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card.reveal.active:nth-child(4) {
    transition-delay: 0.4s;
}

.q-card.reveal.active:nth-child(1) {
    transition-delay: 0.1s;
}

.q-card.reveal.active:nth-child(2) {
    transition-delay: 0.2s;
}

.q-card.reveal.active:nth-child(3) {
    transition-delay: 0.3s;
}

.project-block.reveal.active:nth-child(1) {
    transition-delay: 0.1s;
}

.project-block.reveal.active:nth-child(2) {
    transition-delay: 0.2s;
}

.project-block.reveal.active:nth-child(3) {
    transition-delay: 0.3s;
}