/* ═══════════════════════════════════════════════════════════════════════════
   ESTÚDIO GESTANTE - LANDING PAGE LUXUOSA
   Design System & Estilos Completos
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─────────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS / VARIÁVEIS CSS
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* Cores Primárias - Luxo */
    --gold: #C9A962;
    --gold-light: #E5D4A1;
    --gold-dark: #A68B4B;
    --gold-rose: #D4A574;

    /* Cores Neutras */
    --black: #1A1A1A;
    --black-soft: #2D2D2D;
    --gray-dark: #4A4A4A;
    --gray: #8A8A8A;
    --gray-light: #C5C5C5;
    --cream: #F8F5F0;
    --cream-dark: #EDE8E0;
    --white: #FDFCFA;
    --white-pure: #FFFFFF;

    /* Cores de Destaque */
    --blush: #E8D4D0;
    --blush-dark: #D4B8B2;
    --rose: #C9A5A0;

    /* Backgrounds */
    --bg-cream: #FAF8F5;
    --bg-dark: #1A1A1A;
    --bg-dark-soft: #252525;

    /* Texto */
    --text-dark: #2D2D2D;
    --text-light: #F5F5F5;
    --text-muted: #7A7A7A;

    /* Tipografia */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-accent: 'Josefin Sans', sans-serif;

    /* Tamanhos */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3rem;
    --fs-5xl: 4rem;
    --fs-6xl: 5rem;

    /* Espaçamento */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;
    --transition-luxury: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 30px rgba(201, 169, 98, 0.3);

    /* Bordas */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TIPOGRAFIA
   ───────────────────────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 6vw, var(--fs-6xl));
}

h2 {
    font-size: clamp(2rem, 4vw, var(--fs-4xl));
}

h3 {
    font-size: clamp(1.5rem, 3vw, var(--fs-2xl));
}

p {
    font-size: var(--fs-md);
    color: var(--text-dark);
    max-width: 65ch;
}

em {
    font-style: italic;
    color: var(--gold-dark);
}

strong {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LAYOUT BASE
   ───────────────────────────────────────────────────────────────────────────── */
.section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-lg);
    overflow: hidden;
}

.section__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section__label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.section__title {
    font-size: clamp(2rem, 5vw, var(--fs-4xl));
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.section__title--light {
    color: var(--white);
}

.section__title--light em {
    color: var(--gold-light);
}

/* Overlays */
.section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.7) 0%,
            rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
}

.section__overlay--light {
    background: linear-gradient(to bottom,
            rgba(250, 248, 245, 0.85) 0%,
            rgba(250, 248, 245, 0.95) 100%);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PARALLAX BACKGROUNDS
   ───────────────────────────────────────────────────────────────────────────── */
.parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 1 - HERO / CAPA
   ───────────────────────────────────────────────────────────────────────────── */
.section--hero {
    min-height: 100vh;
    background-color: var(--black);
}

.hero__background {
    background: linear-gradient(135deg,
            #2a1f1a 0%,
            #1a1a1a 50%,
            #1f1a1a 100%);
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center 30%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.4) 0%,
            rgba(26, 26, 26, 0.6) 50%,
            rgba(26, 26, 26, 0.8) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-lg);
}

.hero__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
}

.logo__icon {
    font-size: var(--fs-xl);
    color: var(--gold);
    animation: sparkle 3s ease-in-out infinite;
}

.logo__text {
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* Logo Image - Hero */
.logo__img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.hero__title {
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.title__line {
    display: block;
    font-size: clamp(2.5rem, 7vw, var(--fs-5xl));
    font-weight: 400;
    letter-spacing: 0.02em;
}

.title__divider {
    display: block;
    font-size: var(--fs-3xl);
    color: var(--gold);
    margin: var(--space-sm) 0;
    opacity: 0.6;
}

.title__accent {
    display: block;
    font-size: clamp(1.5rem, 4vw, var(--fs-3xl));
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, var(--fs-lg));
    font-weight: 300;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

.hero__location {
    font-family: var(--font-accent);
    font-size: clamp(0.75rem, 1.4vw, 0.875rem);
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: var(--space-sm) auto 0 auto;
    opacity: 0.9;
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    z-index: 5;
}

.scroll__text {
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.scroll__line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

@keyframes sparkle {

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 2 - MOMENTO CERTO
   ───────────────────────────────────────────────────────────────────────────── */
.section--momento {
    background-color: var(--white);
    min-height: auto;
    padding: var(--space-lg) var(--space-lg);
}

.momento__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.momento__text {
    padding-right: var(--space-xl);
    text-align: center;
}

.momento__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.momento__info p {
    font-size: var(--fs-lg);
    color: var(--gray-dark);
    line-height: 1.8;
}

.momento__info strong {
    color: var(--gold-dark);
    font-weight: 600;
}

/* Image Frame */
.image-frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            var(--blush) 0%,
            var(--cream-dark) 50%,
            var(--blush-dark) 100%);
}

.image-placeholder.momento-img {
    background: none;
}

img.momento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.92;
    border-radius: 12px;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

img.momento-img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.image-frame__border {
    position: absolute;
    inset: var(--space-sm);
    border: 1px solid var(--gold);
    opacity: 0.4;
    pointer-events: none;
    border-radius: 8px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 3 - EXPERIÊNCIA
   ───────────────────────────────────────────────────────────────────────────── */
.section--experiencia {
    background-color: var(--black);
    padding: var(--space-lg) var(--space-lg);
}

.experiencia__bg {
    background-image: url('images/experiencia.jpg');
    background-size: cover;
    background-position: center;
}

.experiencia__content {
    text-align: center;
}

.experiencia__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.experiencia__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    padding: var(--space-md);
    text-align: left;
    transition: var(--transition-luxury);
}

.experiencia__card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-4px);
}

.card__icon {
    font-size: var(--fs-xl);
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.card__title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.card__text {
    font-size: var(--fs-base);
    color: var(--gray-light);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 4 - DIFERENCIAIS
   ───────────────────────────────────────────────────────────────────────────── */
.section--diferenciais {
    background-color: var(--cream);
    min-height: 0 !important;
    height: auto;
    padding: var(--space-md) var(--space-lg);
    align-items: flex-start;
}

.section--diferenciais .section__label,
.section--diferenciais .section__title {
    text-align: center;
}

.diferenciais__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.diferencial {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-luxury);
}

.diferencial:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.diferencial__number {
    font-family: var(--font-display);
    font-size: var(--fs-3xl);
    font-weight: 600;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
}

.diferencial__content h3 {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.diferencial__content p {
    font-size: var(--fs-base);
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 5 - DEPOIMENTOS / PROVA SOCIAL
   ───────────────────────────────────────────────────────────────────────────── */
.section--depoimentos {
    background-color: var(--cream-dark);
    min-height: 0 !important;
    padding: var(--space-md) var(--space-lg);
    height: auto;
}

.depoimentos__bg {
    background-image: url('images/familia.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.depoimentos__header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.google-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    /* Removed bubble background styles as requested */
}

.rating__img {
    height: 170px;
    /* Aumentado em 50% */
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-xs);
    border-radius: 24px;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rating__img:hover {
    transform: scale(1.05);
    /* Efeito interativo */
}

.rating__text {
    font-family: var(--font-accent);
    font-size: 1.5rem !important;
    /* Ajustado para um tamanho equilibrado */
    font-weight: 800 !important;
    /* Forçando peso máximo */
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Espaçamento ajustado */
    margin-top: var(--space-md);
    /* Mais espaço da imagem */
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.2;
}

.depoimentos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.depoimento {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-luxury);
    position: relative;
}

.depoimento:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.depoimento__quote {
    font-family: var(--font-display);
    font-size: var(--fs-5xl);
    color: var(--gold);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: var(--space-sm);
}

.depoimento__text {
    font-size: var(--fs-md);
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.depoimento__author {
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--gold-dark);
    letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 6 - TRANSIÇÃO
   ───────────────────────────────────────────────────────────────────────────── */
.section--transicao {
    background: linear-gradient(to bottom, var(--cream-dark), var(--white));
    min-height: 0 !important;
    height: auto;
    padding: var(--space-md) var(--space-lg) var(--space-xs);
}

.transicao__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.transicao__icon {
    font-size: var(--fs-2xl);
    color: var(--gold);
    margin-bottom: var(--space-sm);
    display: block;
    animation: sparkle 3s ease-in-out infinite;
}

.transicao__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, var(--fs-2xl));
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.transicao__text {
    font-size: var(--fs-lg);
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.transicao__text em {
    font-style: italic;
    color: var(--gold-dark);
}

.transicao__arrow {
    color: var(--gold);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÕES 7, 8, 9 - PACOTES
   ───────────────────────────────────────────────────────────────────────────── */
.section--pacotes {
    background-color: var(--white);
    min-height: 0 !important;
    height: auto;
    padding: var(--space-md) var(--space-lg);
}

.section--pacotes .section__label,
.section--pacotes .section__title {
    text-align: center;
}

.pacotes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    align-items: start;
}

.pacote {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: var(--transition-luxury);
}

.pacote:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pacote__badge {
    position: absolute;
    top: calc(var(--space-md) * -1);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pacote--destaque {
    background: var(--black);
    border-color: var(--gold);
    transform: scale(1.02);
    z-index: 2;
}

.pacote--destaque:hover {
    transform: scale(1.02) translateY(-4px);
}

.pacote--destaque .pacote__name,
.pacote--destaque .pacote__para,
.pacote--destaque .pacote__lista li {
    color: var(--white);
}

.pacote--destaque .check {
    color: var(--gold);
}

.pacote--destaque .preco__parcela,
.pacote--destaque .preco__pix {
    color: var(--white);
}

.pacote--destaque .preco__parcela strong {
    color: var(--gold);
}

.pacote--destaque .pacote__nota {
    color: var(--gold-light);
}

.pacote--premium {
    background: linear-gradient(145deg, var(--cream) 0%, var(--blush) 100%);
    border-color: var(--gold-light);
}

.pacote__header {
    text-align: center;
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    margin-bottom: var(--space-xs);
}

.pacote__name {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: var(--space-xs);
}

.pacote__para {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.5;
}

.pacote__body {
    padding: var(--space-sm) 0;
}

.pacote__lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.pacote__lista li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-sm);
    color: var(--text-dark);
}

.check {
    color: var(--gold);
    font-weight: bold;
}

.pacote__footer {
    padding-top: var(--space-xs);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    margin-top: var(--space-xs);
}

.pacote__preco {
    text-align: center;
}

.preco__parcela {
    display: block;
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.preco__parcela strong {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--gold-dark);
}

.preco__pix {
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.pacote__nota {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--gold-dark);
    text-align: center;
    margin-top: var(--space-sm);
    opacity: 0.85;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 10 - COMPARAÇÃO
   ───────────────────────────────────────────────────────────────────────────── */
.section--comparacao {
    background-color: var(--cream);
    min-height: auto;
    padding: var(--space-xl) var(--space-lg);
}

.section--comparacao .section__title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.comparacao__wrapper {
    overflow-x: auto;
    padding: var(--space-md);
}

.comparacao__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparacao__table th,
.comparacao__table td {
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    border-bottom: 1px solid var(--cream-dark);
}

.comparacao__table th {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-dark);
    background: var(--cream);
}

.comparacao__table th:first-child {
    text-align: left;
}

.comparacao__table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--gray-dark);
}

.comparacao__table tbody tr:last-child td {
    border-bottom: none;
}

.comparacao__table tbody tr:hover {
    background: var(--cream);
}

.table--destaque {
    background: rgba(201, 169, 98, 0.1) !important;
    font-weight: 600;
    color: var(--gold-dark);
}

.table-check {
    color: var(--gold);
    font-size: var(--fs-lg);
    font-weight: bold;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 11 - INVESTIMENTO
   ───────────────────────────────────────────────────────────────────────────── */
.section--investimento {
    background-color: var(--black);
    min-height: 80vh;
}

.investimento__bg {
    background-image: url('images/investimento.jpg');
    background-size: cover;
    background-position: center;
}

.investimento__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.investimento__box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.investimento__incluso {
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.investimento__itens {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
    color: var(--gray-light);
    font-size: var(--fs-md);
    margin-bottom: var(--space-md);
}

.investimento__pagamento {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.pagamento__opcao {
    text-align: center;
}

.pagamento__opcao--destaque .opcao__label {
    color: var(--gold);
}

.opcao__label {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}

.opcao__valor {
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    color: var(--gray);
}

.pagamento__divisor {
    font-family: var(--font-accent);
    font-size: var(--fs-sm);
    color: var(--gray);
    text-transform: lowercase;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SEÇÃO 12 - CONTATO / CTA
   ───────────────────────────────────────────────────────────────────────────── */
.section--contato {
    background: linear-gradient(to bottom, var(--cream), var(--white));
    min-height: 80vh;
}

.contato__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contato__icon {
    font-size: var(--fs-3xl);
    color: var(--gold);
    margin-bottom: var(--space-xl);
    display: block;
}

/* Logo Image - Contato */
.contato__logo {
    max-width: 160px;
    height: auto;
    margin-bottom: var(--space-xl);
}

.contato__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, var(--fs-4xl));
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.contato__text {
    font-size: var(--fs-lg);
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contato__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: var(--fs-md);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-luxury);
}

.contato__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 169, 98, 0.5);
}

.cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contato__acolhimento {
    margin-top: var(--space-xl);
    font-size: var(--fs-base);
    color: var(--text-muted);
    font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    background: var(--black);
    padding: var(--space-xl);
    text-align: center;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--fs-md);
    color: var(--gold);
}

/* Logo Image - Footer */
.footer__logo-img {
    max-width: 120px;
    height: auto;
    margin-bottom: var(--space-xs);
}

.footer__copy {
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    color: var(--gray);
    letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMAÇÕES DE REVEAL
   ───────────────────────────────────────────────────────────────────────────── */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-fade {
    opacity: 0;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-fade.revealed,
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVO - MOBILE FIRST
   Base: Mobile (até 480px) → Tablet (481-768px) → Desktop (769px+)
   ───────────────────────────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════════════════
   BASE MOBILE (até 480px) - Estilos padrão já aplicados acima
   Ajustes específicos para telas muito pequenas
   ═══════════════════════════════════════════════════════════════════════════ */

/* Ajuste do Hero para mobile */
.hero__content {
    padding: var(--space-lg);
}

.hero__subtitle {
    margin-bottom: var(--space-xl);
}

.hero__subtitle br {
    display: none;
}

/* Localização ajustada para mobile */
.hero__location {
    font-size: 0.6rem;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-md);
}

/* Logo menor em mobile e posicionado mais abaixo */
.logo__img {
    max-width: 140px;
    margin-top: var(--space-2xl);
}

.contato__logo {
    max-width: 120px;
}

.footer__logo-img {
    max-width: 100px;
}

/* Títulos ajustados para mobile */
.hero__title .title__line {
    font-size: 1.75rem;
}

.hero__title .title__accent {
    font-size: 1.1rem;
}

.hero__title .title__divider {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

/* Section padding mobile */
.section {
    padding: var(--space-xl) var(--space-sm);
    min-height: auto;
}

/* Momento - Stack vertical */
.momento__content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.momento__text {
    padding-right: 0;
    text-align: center;
}

.momento__image {
    max-width: 300px;
    margin: 0 auto;
}

/* Experiência - 1 coluna mobile */
.experiencia__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.experiencia__card {
    padding: var(--space-md);
}

/* Diferenciais - 1 coluna */
.diferenciais__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.diferencial {
    padding: var(--space-md);
}

.diferencial__number {
    font-size: var(--fs-2xl);
}

/* Depoimentos - 1 coluna */
.depoimentos__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.depoimento {
    padding: var(--space-lg);
}

/* Transição */
.section--transicao {
    min-height: 50vh;
}

.transicao__text br {
    display: none;
}

/* Pacotes - 1 coluna */
.pacotes__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.pacote {
    padding: var(--space-md);
}

.pacote__header {
    margin-bottom: var(--space-sm);
}

.pacote__body {
    margin-bottom: var(--space-sm);
}

.pacote__lista li {
    padding: 0;
}

.pacote--destaque {
    transform: none;
}

.pacote--destaque:hover {
    transform: translateY(-4px);
}

/* Tabela de comparação - scroll horizontal */
.comparacao__wrapper {
    overflow-x: visible;
    padding: 0;
}

.comparacao__table {
    width: 100%;
    min-width: 0;
    font-size: 0.7rem;
    table-layout: fixed;
}

.comparacao__table th,
.comparacao__table td {
    padding: var(--space-xs) 0.25rem;
    word-wrap: break-word;
    text-align: center;
}

.comparacao__table th:first-child,
.comparacao__table td:first-child {
    text-align: left;
    width: 25%;
}

.comparacao__table th {
    font-size: 0.75rem;
    padding: var(--space-xs) 0;
    hyphens: auto;
}

/* Investimento */
.investimento__box {
    padding: var(--space-lg);
}

.investimento__itens {
    flex-direction: column;
    gap: var(--space-xs);
}

.investimento__itens span:nth-child(even) {
    display: none;
}

.investimento__pagamento {
    flex-direction: column;
    gap: var(--space-md);
}

/* Contato */
.section--contato {
    min-height: 70vh;
}

.contato__text br {
    display: none;
}

.contato__cta {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--fs-sm);
    justify-content: center;
}

/* Google Rating mobile */
.google-rating {
    padding: var(--space-sm) var(--space-md);
}

/* .rating__text override removed to allow main style to persist */


/* ═══════════════════════════════════════════════════════════════════════════
   TABLET (481px - 768px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 481px) {
    .section {
        padding: var(--space-2xl) var(--space-md);
    }

    .logo__img {
        max-width: 160px;
    }

    .contato__logo {
        max-width: 140px;
    }

    .footer__logo-img {
        max-width: 110px;
    }

    .hero__title .title__line {
        font-size: 2.25rem;
    }

    .hero__title .title__accent {
        font-size: 1.35rem;
    }

    .momento__image {
        max-width: 350px;
    }

    .experiencia__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciais__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato__cta {
        width: auto;
        padding: var(--space-md) var(--space-xl);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   TABLET LANDSCAPE / SMALL DESKTOP (769px - 1024px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
    :root {
        --space-3xl: 5rem;
        --space-4xl: 6rem;
    }

    .section {
        padding: var(--space-3xl) var(--space-lg);
        min-height: 100vh;
    }

    .logo__img {
        max-width: 180px;
    }

    .contato__logo {
        max-width: 160px;
    }

    .footer__logo-img {
        max-width: 120px;
    }

    .hero__title .title__line {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero__title .title__accent {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .hero__subtitle br {
        display: inline;
    }

    .momento__content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }

    .momento__text {
        text-align: center;
        padding-right: var(--space-xl);
    }

    .momento__image {
        max-width: none;
    }

    .depoimentos__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section--transicao {
        min-height: 60vh;
    }

    .transicao__text br {
        display: inline;
    }

    .pacotes__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pacote--destaque {
        transform: scale(1.02);
    }

    .pacote--destaque:hover {
        transform: scale(1.02) translateY(-4px);
    }

    .comparacao__table {
        min-width: auto;
        font-size: var(--fs-base);
    }

    .comparacao__table th,
    .comparacao__table td {
        padding: var(--space-md) var(--space-lg);
    }

    .investimento__itens {
        flex-direction: row;
        gap: var(--space-sm);
    }

    .investimento__itens span:nth-child(even) {
        display: inline;
    }

    .investimento__pagamento {
        flex-direction: row;
        gap: var(--space-xl);
    }

    .investimento__box {
        padding: var(--space-3xl);
    }

    .section--contato {
        min-height: 80vh;
    }

    .contato__text br {
        display: inline;
    }

    .contato__cta {
        font-size: var(--fs-md);
        padding: var(--space-md) var(--space-2xl);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   DESKTOP LARGE (1025px+)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) {
    :root {
        --space-3xl: 6rem;
        --space-4xl: 8rem;
    }

    .section {
        padding: var(--space-4xl) var(--space-lg);
    }

    .hero__content {
        padding: var(--space-2xl);
    }

    .hero__scroll-indicator {
        bottom: 5rem;
    }

    .logo__img {
        max-width: 200px;
    }

    .hero__title .title__line {
        font-size: clamp(3rem, 6vw, 4rem);
    }

    .hero__title .title__accent {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .pacotes__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }

    .pacote--destaque {
        transform: scale(1.02);
    }

    .pacote--destaque:hover {
        transform: scale(1.02) translateY(-4px);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   AJUSTES PARA TELAS MUITO ALTAS (landscape phones, etc)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-height: 600px) and (orientation: landscape) {
    .section--hero {
        min-height: 100vh;
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .hero__logo {
        margin-bottom: var(--space-md);
    }

    .hero__title {
        margin-bottom: var(--space-md);
    }

    .hero__scroll-indicator {
        display: none;
    }
}


/* ─────────────────────────────────────────────────────────────────────────────
   EFEITOS ESPECIAIS
   ───────────────────────────────────────────────────────────────────────────── */

/* Shimmer effect para elementos gold */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.contato__cta {
    background: linear-gradient(90deg,
            var(--gold) 0%,
            var(--gold-light) 25%,
            var(--gold) 50%,
            var(--gold-light) 75%,
            var(--gold) 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

/* Grain overlay para textura */
.section--hero::after,
.section--experiencia::after,
.section--investimento::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 3;
}

/* Desabilitar hover em touch devices */
@media (hover: none) {

    .pacote:hover,
    .diferencial:hover,
    .depoimento:hover,
    .experiencia__card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .pacote--destaque:hover {
        transform: none;
    }

    .contato__cta:hover {
        transform: none;
    }
}

/* Safe area para iPhones com notch */
@supports (padding: max(0px)) {
    .section--hero {
        padding-top: max(var(--space-xl), env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: max(var(--space-xl), env(safe-area-inset-bottom));
    }
}

/* Force update */