/* ==========================================================================
   CHÁ REVELAÇÃO - DESIGN SYSTEM LUXO & ELEGÂNCIA (MOBILE-FIRST)
   Paleta Neutra Sofisticada: Champagne Dourado, Marfim, Verde-Sálvia e Linho
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Great+Vibes&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Paleta Principal Neutra */
    --gold-primary: #C5A059;
    --gold-dark: #A57F38;
    --gold-light: #F6F0E7;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #E3C88E 50%, #C5A059 100%);
    --gold-border: rgba(197, 160, 89, 0.3);
    --gold-glow: rgba(197, 160, 89, 0.25);

    --sage-primary: #7A8D78;
    --sage-light: #EEF3EE;
    --terracotta-soft: #D9A083;

    /* Superfícies e Fundos */
    --bg-main: #FAF7F2;
    --bg-secondary: #F3ECE2;
    --bg-card: rgba(255, 255, 255, 0.92);
    --bg-card-glass: rgba(255, 255, 255, 0.78);
    --bg-overlay: rgba(20, 16, 13, 0.6);

    /* Textos */
    --text-main: #2C2622;
    --text-muted: #6E655F;
    --text-light: #9B9189;
    --text-on-dark: #FFFFFF;

    /* Cores de Revelação (ativas somente após revelação) */
    --boy-accent: #2980B9;
    --boy-soft: #E8F4FC;
    --boy-gradient: linear-gradient(135deg, #2980B9, #6DD5FA);

    --girl-accent: #D85A7F;
    --girl-soft: #FDEEF2;
    --girl-gradient: linear-gradient(135deg, #D85A7F, #F8A5C2);

    /* Tipografia */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Efeitos e Bordas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 12px rgba(44, 38, 34, 0.05);
    --shadow-md: 0 10px 30px rgba(44, 38, 34, 0.08);
    --shadow-lg: 0 20px 45px rgba(44, 38, 34, 0.12);
    --shadow-gold: 0 10px 25px rgba(197, 160, 89, 0.28);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(122, 141, 120, 0.04) 0%, transparent 40%);
}

/* Tipografia Base */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-main);
}

.font-script {
    font-family: var(--font-script);
    font-weight: 400;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container Responsivo */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 16px 0;
}

.site-header.scrolled {
    background: rgba(250, 247, 242, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    border-bottom: 1px solid var(--gold-border);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-monogram {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-main);
}

.monogram-badge {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    color: var(--gold-primary);
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
}

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

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-audio-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-audio-toggle:hover {
    transform: scale(1.05);
    background: #FFF;
    border-color: var(--gold-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 20px 60px;
    background: radial-gradient(circle at center, #FFFFFF 0%, #FAF6EE 70%, #F4ECE0 100%);
    overflow: hidden;
}

.hero-background-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(122, 141, 120, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 160, 131, 0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--gold-border);
    color: var(--gold-dark);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
    animation: floatSoft 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 2.4rem;
    color: var(--gold-primary);
    margin-bottom: -10px;
    display: block;
}

.hero-title {
    font-size: 3.2rem;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text-main);
    text-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.hero-parents {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 34px;
}

.hero-parents span {
    color: var(--gold-primary);
    font-weight: 600;
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 580px;
    margin: 0 auto 36px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--gold-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

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

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 4px;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

/* Botões do Hero */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #FFF;
    box-shadow: var(--shadow-gold);
    border: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(197, 160, 89, 0.4);
    filter: brightness(1.04);
}

.btn-outline-gold {
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-dark);
}

.btn-outline-gold:hover {
    background: var(--gold-light);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
.section {
    padding: 85px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

/* ==========================================================================
   SEÇÃO HISTÓRIA DO CASAL
   ========================================================================== */
.story-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.story-image-card {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.story-img-main {
    border-radius: var(--radius-lg);
    border: 8px solid #FFF;
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: #EFECE6;
}

.story-floating-badge {
    position: absolute;
    bottom: -18px;
    right: -10px;
    background: #FFF;
    border: 1px solid var(--gold-border);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-floating-badge .heart-icon {
    font-size: 1.6rem;
    color: #E25858;
}

.story-badge-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 700;
}

.story-badge-desc {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

.story-content h3 {
    font-size: 2.1rem;
    margin-bottom: 18px;
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.milestone-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.milestone-dot {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--gold-light);
    border: 1px solid var(--gold-primary);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ==========================================================================
   SEÇÃO ENQUETE DE PALPITES (MENINO X MENINA)
   ========================================================================== */
.palpite-box {
    max-width: 760px;
    margin: 0 auto;
}

.placar-visual {
    background: #FFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-border);
    padding: 24px;
    margin-bottom: 34px;
    box-shadow: var(--shadow-sm);
}

.placar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.placar-team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.placar-team-title {
    font-weight: 700;
    font-size: 1.05rem;
}

.placar-percentage {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.team-menino {
    color: #4A6B82;
}

.team-menina {
    color: #A36474;
}

.progress-bar-container {
    height: 24px;
    background: #EBE5DC;
    border-radius: var(--radius-full);
    overflow: hidden;
    display: flex;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
    position: relative;
}

.progress-segment-boy {
    background: linear-gradient(90deg, #6B8E9F, #4A6B82);
    height: 100%;
    transition: width 0.8s ease-in-out;
}

.progress-segment-girl {
    background: linear-gradient(90deg, #A36474, #BA7A8A);
    height: 100%;
    transition: width 0.8s ease-in-out;
}

.placar-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Seletores de Palpite (Cards) */
.palpite-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.palpite-choice-card {
    border: 2px solid var(--gold-border);
    border-radius: var(--radius-md);
    background: #FFF;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    user-select: none;
}

.palpite-choice-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.palpite-choice-card.selected {
    border-color: var(--gold-dark);
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.palpite-icon-symbol {
    font-size: 2.4rem;
    margin-bottom: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.palpite-choice-card:hover .palpite-icon-symbol {
    transform: scale(1.15);
}

.palpite-choice-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
}

.palpite-choice-sub {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Formulário de Palpite */
.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #DCD5CB;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: #FFF;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 85px;
}

/* Honeypot Trap (Invisível para humanos) */
.honeypot-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Mural de Recados Recentes */
.mural-palpites {
    margin-top: 40px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.mural-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    text-align: center;
}

.mural-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 6px;
}

.mural-item {
    background: #FFF;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mural-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mural-item-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.mural-badge {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mural-badge-boy {
    background: #E8F0F5;
    color: #395B70;
}

.mural-badge-girl {
    background: #F8EDF1;
    color: #8C475A;
}

.mural-item-msg {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ==========================================================================
   SEÇÃO QUIZ INTERATIVO
   ========================================================================== */
.quiz-box {
    max-width: 760px;
    margin: 0 auto;
}

.quiz-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-border);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.quiz-intro {
    text-align: center;
}

.quiz-question-item {
    display: none;
}

.quiz-question-item.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.quiz-step-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.quiz-question-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.quiz-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.quiz-option-btn {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #DDD6CD;
    border-radius: var(--radius-md);
    background: #FAF7F2;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quiz-option-btn:hover {
    border-color: var(--gold-primary);
    background: #FFF;
    transform: translateX(4px);
}

.quiz-option-btn.selected {
    border-color: var(--gold-dark);
    background: var(--gold-light);
    font-weight: 600;
}

.quiz-result-view {
    display: none;
    text-align: center;
    padding: 20px 10px;
}

.quiz-score-badge {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   SEÇÃO RSVP (CONFIRMAÇÃO DE PRESENÇA)
   ========================================================================== */
.rsvp-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.rsvp-status-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.rsvp-status-btn {
    padding: 12px;
    border: 2px solid #DCD5CB;
    border-radius: var(--radius-md);
    background: #FFF;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.rsvp-status-btn.selected-yes {
    border-color: var(--sage-primary);
    background: var(--sage-light);
    color: var(--sage-primary);
}

.rsvp-status-btn.selected-no {
    border-color: #D36A6A;
    background: #FDF2F2;
    color: #C0392B;
}

/* ==========================================================================
   SEÇÃO LISTA DE PRESENTES / PIX
   ========================================================================== */
.gifts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.gift-card {
    background: #FFF;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.gift-icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
    color: var(--gold-primary);
}

.pix-box {
    background: var(--bg-main);
    border: 1.5px dashed var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 18px 0;
}

.pix-key-display {
    font-family: monospace;
    font-size: 0.95rem;
    word-break: break-all;
    background: #FFF;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid #E0D9CE;
    margin-bottom: 12px;
    color: var(--text-main);
}

.diaper-sizes-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

.diaper-badge {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background: var(--gold-light);
    border: 1px solid var(--gold-border);
    font-weight: 700;
    color: var(--gold-dark);
}

/* ==========================================================================
   SEÇÃO GALERIA DE FOTOS
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1/1;
    cursor: pointer;
    background: #EDE7DD;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #FFF;
    font-weight: 600;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================================================
   SEÇÃO LOCALIZAÇÃO & CALENDÁRIO
   ========================================================================== */
.location-card {
    max-width: 820px;
    margin: 0 auto;
    background: #FFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-info {
    padding: 34px;
    text-align: center;
}

.location-name {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.location-address {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ==========================================================================
   MODAL / SEÇÃO DE REVELAÇÃO ATIVA (THE REVEAL)
   ========================================================================== */
.reveal-banner {
    display: none;
    margin-bottom: 50px;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: zoomIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-banner.reveal-menino {
    display: block;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #6dd5fa 100%);
    color: #FFF;
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.35);
}

.reveal-banner.reveal-menina {
    display: block;
    background: linear-gradient(135deg, #b83b5e 0%, #f08a5d 50%, #ff9ff3 100%);
    color: #FFF;
    box-shadow: 0 20px 50px rgba(184, 59, 94, 0.35);
}

.reveal-crown-icon {
    font-size: 3.5rem;
    margin-bottom: 10px;
    display: inline-block;
    animation: bounce 2s infinite;
}

.reveal-banner-title {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.reveal-baby-name {
    font-size: 4.2rem;
    font-family: var(--font-script);
    color: #FFD700;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.reveal-banner-msg {
    font-size: 1.25rem;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.site-footer {
    background: #1F1A17;
    color: #E2DCD5;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 2px solid var(--gold-primary);
}

.footer-monogram {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold-primary);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold-primary);
}

.footer-quote {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.footer-thanks {
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 28px;
    color: #A89F96;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: #FFF;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 36px;
    transition: var(--transition);
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

.footer-copy {
    font-size: 0.8rem;
    color: #706861;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.footer-admin-link {
    display: inline-block;
    margin-top: 8px;
    color: #8C8279;
    font-size: 0.78rem;
}

.footer-admin-link:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   MODAL LIGHTBOX DE FOTOS
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.2);
    color: #FFF;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   MEDIA QUERIES (TABLETS & DESKTOPS)
   ========================================================================== */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    .hero-title {
        font-size: 4.4rem;
    }
    .hero-subtitle {
        font-size: 3rem;
    }
    .countdown-number {
        font-size: 3rem;
    }
    .story-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .gifts-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mural-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 105px 0;
    }
    .hero-title {
        font-size: 5rem;
    }
}
