/* ══════════════════════════════════════════
   RITA & TIAGO · BERNARDO — STYLE.CSS
   Tema: Azul Aquarela Suave / Pastel
   ══════════════════════════════════════════ */

:root {
    /* Paleta azul aquarela */
    --sky:        #daeaf7;
    --sky-light:  #edf5fb;
    --sky-mid:    #b8d6ef;
    --blue:       #7aaecd;
    --blue-deep:  #4a86ad;
    --navy:       #2a5070;

    /* Neutros quentes */
    --cream:      #faf7f3;
    --warm-white: #fdfbf8;
    --parchment:  #f2ece3;

    /* Casamento — tons dourados/bordô */
    --gold:       #b8943f;
    --gold-light: #d4af6a;
    --gold-pale:  #e8d5a3;
    --burgundy:   #6b1e2e;
    --burg-dark:  #4a1020;

    /* Batizado — tons azul bebé */
    --bap-blue:   #5b9fc2;
    --bap-light:  #a8cfe3;
    --bap-pale:   #d4ebf5;
    --bap-dark:   #2d6a8f;

    --dark:       #1a1410;
    --text:       #3a3028;
    --text-muted: #8a7a6a;
}

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

html, body {
    width: 100%; height: 100%;
    overflow-x: hidden;
    background: var(--cream);
    font-family: 'EB Garamond', serif;
    color: var(--text);
}

/* ══════════════════════════════
   OVERLAY DE ENTRADA
   ══════════════════════════════ */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d1520;
    transition: opacity 1.2s ease, visibility 1.2s;
}

.overlay.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Vídeo de fundo */
#bg-video-pomba {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.4) saturate(0.7);
    z-index: 1;
}

/* Manchas aquarela animadas sobre o vídeo */
.watercolor-blobs {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    filter: blur(60px);
    opacity: 0;
    animation: blobFloat 12s ease-in-out infinite;
}

.blob-1 {
    width: 500px; height: 400px;
    background: radial-gradient(ellipse, rgba(90,160,210,0.25) 0%, transparent 70%);
    top: -100px; left: -80px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px; height: 350px;
    background: radial-gradient(ellipse, rgba(120,180,230,0.2) 0%, transparent 70%);
    bottom: -80px; right: -60px;
    animation-delay: 4s;
}

.blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(ellipse, rgba(180,214,240,0.15) 0%, transparent 70%);
    top: 40%; left: 40%;
    animation-delay: 8s;
}

@keyframes blobFloat {
    0%   { opacity: 0;    transform: scale(0.8) translate(0, 0); }
    20%  { opacity: 1; }
    80%  { opacity: 0.8; }
    100% { opacity: 0;    transform: scale(1.1) translate(20px, -20px); }
}

/* Partículas */
.particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--sky-mid);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp var(--dur) ease-in infinite;
    animation-delay: var(--delay);
    left: var(--x);
    top: 100%;
}

@keyframes floatUp {
    0%   { opacity: 0; transform: translateY(0) scale(1); }
    20%  { opacity: 0.5; }
    80%  { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-100vh) scale(0.3); }
}

/* Conteúdo do envelope */
.envelope-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.deco-top {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeSlideDown 1s ease 0.5s forwards;
}

.deco-line {
    width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(180,214,240,0.7));
}
.deco-line.rev {
    background: linear-gradient(to left, transparent, rgba(180,214,240,0.7));
}

.deco-diamond {
    width: 6px; height: 6px;
    background: var(--sky-mid);
    transform: rotate(45deg);
}

.nomes-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 2px 30px rgba(90,160,210,0.4);
    opacity: 0;
    animation: fadeSlideDown 1.2s ease 0.8s forwards;
}

.data-overlay {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.6rem, 1.4vw, 0.75rem);
    color: var(--sky-mid);
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1s forwards;
}

/* Lacre */
.lacre-wrapper {
    position: relative;
    width: 160px; height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeSlideUp 1.2s ease 1.3s forwards;
    cursor: pointer;
}

.lacre-orbit {
    position: absolute;
    width: 150px; height: 150px;
    border: 1px solid rgba(180,214,240,0.25);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.lacre-orbit::before, .lacre-orbit::after {
    content: '✦';
    position: absolute;
    color: var(--sky-mid);
    font-size: 10px;
    top: -7px; left: 50%;
    transform: translateX(-50%);
}

.lacre-orbit::after {
    top: auto; bottom: -7px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.lacre-img-wrap {
    position: relative;
    width: 110px; height: 110px;
    z-index: 5;
}

.lacre-glow {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,160,210,0.25) 0%, transparent 70%);
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.15); }
}

.lacre-real-img {
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 2px rgba(180,214,240,0.3);
    animation: pulse 2s infinite;
}

.lacre-fallback {
    display: none;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a5c, #2a5a8a);
    border: 2px solid var(--sky-mid);
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.lacre-monogram {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 300;
    color: var(--sky-mid);
}

@keyframes pulse {
    0%   { box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 2px rgba(180,214,240,0.2); }
    50%  { box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 4px rgba(180,214,240,0.4); }
    100% { box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 2px rgba(180,214,240,0.2); }
}

.tap-hint {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.8s forwards;
}

/* ── Animações base ── */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ══════════════════════════════
   BOTÃO ÁUDIO
   ══════════════════════════════ */
.audio-btn {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 1000;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--sky-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(90,160,210,0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.2s;
    font-size: 18px;
}

.audio-btn:hover { transform: scale(1.08); }
.hidden { display: none !important; }

/* ══════════════════════════════
   MAIN CONTENT
   ══════════════════════════════ */
.content-hidden { display: none; opacity: 0; }
.content-visible {
    display: block;
    animation: contentReveal 1.8s ease forwards;
}

@keyframes contentReveal {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ══════════════════════════════
   HERO — CASAMENTO
   ══════════════════════════════ */
#hero {
    position: relative;
    width: 100%; height: 100vh;
    overflow: hidden;
    background: #1a2a3a;
}

.hero-bg {
    position: absolute;
    inset: 0; z-index: 1;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: heroZoom 20s ease-in-out infinite alternate;
    filter: brightness(0.72) saturate(0.85);
}

@keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.13); }
}

/* Mancha aquarela azul tênue sobre a foto */
.hero-watercolor {
    position: absolute;
    inset: 0; z-index: 2;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(90,160,210,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(120,180,230,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0; z-index: 3;
    background: linear-gradient(
        to bottom,
        rgba(15,25,40,0.15) 0%,
        rgba(15,25,40,0.05) 40%,
        rgba(15,25,40,0.5) 80%,
        rgba(15,25,40,0.82) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0; z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-label {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.55rem, 1.2vw, 0.7rem);
    letter-spacing: 7px;
    color: var(--sky-mid);
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeSlideDown 1s ease 0.3s forwards;
}

.nomes-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.8rem, 11vw, 8.5rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 0.92;
    letter-spacing: -1px;
    text-shadow: 0 4px 40px rgba(90,160,210,0.25);
    opacity: 0;
    animation: fadeSlideDown 1.2s ease 0.6s forwards;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0 18px;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-divider-line {
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(180,214,240,0.6));
}
.hero-divider-line.rev {
    background: linear-gradient(to left, transparent, rgba(180,214,240,0.6));
}

.hero-divider-icon {
    color: var(--sky-mid);
    font-size: 13px;
}

.hero-date {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    color: rgba(255,255,255,0.8);
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.1s forwards;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    gap: 14px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeSlideUp 1.2s ease 1.4s forwards;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 78px;
}

.time-box-inner {
    background: rgba(218,234,247,0.1);
    border: 1px solid rgba(180,214,240,0.28);
    backdrop-filter: blur(14px);
    border-radius: 6px;
    padding: 13px 14px 9px;
    width: 100%;
    text-align: center;
}

.time-box span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 5vw, 2.7rem);
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.time-box small {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 3px;
    color: var(--sky-mid);
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 2.2s forwards;
}

.scroll-hint span {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px; height: 38px;
    background: linear-gradient(to bottom, rgba(180,214,240,0.55), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50%       { transform: scaleY(0.5); opacity: 0.35; }
}

/* ══════════════════════════════
   DETALHES — CASAMENTO
   ══════════════════════════════ */
#details-wedding {
    background: var(--warm-white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#details-wedding::before,
#details-wedding::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sky-mid), transparent);
}
#details-wedding::before { top: 0; }
#details-wedding::after  { bottom: 0; }

.wc-bg-ornament {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 580px; height: 580px;
    border: 1px solid rgba(90,160,210,0.07);
    border-radius: 50%;
    pointer-events: none;
}

.wc-bg-ornament::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(90,160,210,0.05);
    border-radius: 50%;
}

/* Labels e títulos genéricos */
.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 6px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label.light { color: var(--sky-mid); }
.section-label.baptism-label-color { color: var(--bap-blue); }

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 50px;
    line-height: 1.1;
}

.section-title em { color: var(--gold); font-style: italic; }
.blue-em { color: var(--bap-blue) !important; }

/* Cards de detalhes */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 30px;
    max-width: 680px;
    margin: 0 auto;
}

.detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 18px;
    border: 1px solid rgba(90,160,210,0.15);
    border-radius: 4px;
    background: rgba(218,234,247,0.2);
    position: relative;
    transition: border-color 0.3s, background 0.3s;
}

.detail-card:hover {
    border-color: rgba(90,160,210,0.35);
    background: rgba(218,234,247,0.35);
}

/* Cantos decorativos */
.detail-card::before, .detail-card::after {
    content: '';
    position: absolute;
    width: 12px; height: 12px;
    border-color: rgba(90,160,210,0.35);
    border-style: solid;
}
.detail-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.detail-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* Cards do batizado com tom azul diferente */
.baptism-card {
    border-color: rgba(91,159,194,0.2);
    background: rgba(168,207,227,0.12);
}
.baptism-card:hover {
    border-color: rgba(91,159,194,0.4);
    background: rgba(168,207,227,0.25);
}
.baptism-card::before, .baptism-card::after {
    border-color: rgba(91,159,194,0.4);
}

.detail-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.detail-label {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 4px;
    color: var(--blue);
    text-transform: uppercase;
}

.baptism-card .detail-label { color: var(--bap-blue); }

.detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
    font-style: italic;
    text-align: center;
}

/* ══════════════════════════════
   RSVP — CASAMENTO
   ══════════════════════════════ */
#rsvp-wedding {
    background: var(--burg-dark);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Mancha aquarela no rsvp do casamento */
.rsvp-wc-watercolor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(90,160,210,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(60,120,180,0.06) 0%, transparent 50%);
}

/* Formas de fundo */
#rsvp-wedding::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.rsvp-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    max-width: 380px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

.rsvp-subtitle.dark-sub {
    color: var(--text-muted);
}

#rsvp-form-wedding,
#rsvp-form-baptism {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#rsvp-form-wedding input,
#rsvp-form-wedding select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(180,214,240,0.2);
    border-radius: 4px;
    color: #fff;
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    outline: none;
    appearance: none;
    transition: border-color 0.3s, background 0.3s;
}

#rsvp-form-wedding input::placeholder { color: rgba(255,255,255,0.28); }

#rsvp-form-wedding input:focus,
#rsvp-form-wedding select:focus {
    border-color: rgba(180,214,240,0.5);
    background: rgba(255,255,255,0.09);
}

#rsvp-form-wedding select option { background: var(--burg-dark); }

#rsvp-form-baptism input,
#rsvp-form-baptism select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(218,234,247,0.5);
    border: 1px solid rgba(91,159,194,0.25);
    border-radius: 4px;
    color: var(--navy);
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    outline: none;
    appearance: none;
    transition: border-color 0.3s, background 0.3s;
}

#rsvp-form-baptism input::placeholder { color: rgba(42,80,112,0.4); }

#rsvp-form-baptism input:focus,
#rsvp-form-baptism select:focus {
    border-color: rgba(91,159,194,0.5);
    background: rgba(218,234,247,0.7);
}

.rsvp-btn {
    margin-top: 8px;
    padding: 17px 32px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: color 0.35s;
}

.rsvp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.rsvp-btn:hover { color: var(--dark); }
.rsvp-btn:hover::before { transform: translateX(0); }

/* Botão batizado */
.baptism-btn {
    border-color: var(--bap-blue);
    color: var(--bap-dark);
}
.baptism-btn::before { background: var(--bap-blue); }
.baptism-btn:hover { color: #fff; }

#status-wedding,
#status-baptism {
    margin-top: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--sky-mid);
    min-height: 24px;
}

#status-baptism { color: var(--bap-blue); }

/* ══════════════════════════════
   SEPARADOR
   ══════════════════════════════ */
.section-separator {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: var(--cream);
    gap: 20px;
}

.sep-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sky-mid), transparent);
}

.sep-content {
    flex-shrink: 0;
}

.sep-diamonds {
    display: flex;
    gap: 8px;
    color: var(--bap-light);
    font-size: 12px;
}

/* ══════════════════════════════
   HERO — BATIZADO BERNARDO
   ══════════════════════════════ */
#hero-baptism {
    position: relative;
    width: 100%; height: 100vh;
    overflow: hidden;
    background: var(--navy);
}

.baptism-bg {
    position: absolute;
    inset: 0; z-index: 1;
}

.baptism-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    /* Desfoque forte na foto do Bernardo */
    filter: blur(8px) brightness(0.65) saturate(0.7) sepia(0.1);
    transform: scale(1.08);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

/* Lavagem aquarela azul sobre a foto */
.baptism-watercolor {
    position: absolute;
    inset: 0; z-index: 2;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(100,175,220,0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(70,140,200,0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(140,200,235,0.2) 0%, transparent 70%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.baptism-overlay {
    position: absolute;
    inset: 0; z-index: 3;
    background: linear-gradient(
        to bottom,
        rgba(20,45,75,0.3) 0%,
        rgba(20,45,75,0.15) 35%,
        rgba(20,45,75,0.5) 75%,
        rgba(20,45,75,0.85) 100%
    );
}

/* Elementos decorativos laterais */
.baptism-deco-left,
.baptism-deco-right {
    position: absolute;
    top: 50%;
    z-index: 4;
    color: rgba(180,214,240,0.2);
    font-size: 60px;
    animation: decoFloat 6s ease-in-out infinite alternate;
    pointer-events: none;
}

.baptism-deco-left  { left: 5%;  transform: translateY(-50%) rotate(-15deg); }
.baptism-deco-right { right: 5%; transform: translateY(-50%) rotate(15deg); animation-delay: 3s; }

@keyframes decoFloat {
    from { opacity: 0.15; transform: translateY(-50%) rotate(-15deg) scale(1); }
    to   { opacity: 0.35; transform: translateY(-52%) rotate(-15deg) scale(1.1); }
}

.baptism-content {
    position: absolute;
    inset: 0; z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 0;
}

.baptism-label {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.55rem, 1.2vw, 0.7rem);
    letter-spacing: 8px;
    color: var(--bap-light);
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeSlideDown 1s ease 0.2s forwards;
}

/* Ornamento circular com inicial */
.baptism-circle-ornament {
    position: relative;
    width: 120px; height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.5s forwards;
}

.bco-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(168,207,227,0.4);
    border-radius: 50%;
    animation: spin 25s linear infinite;
}

.bco-ring::before, .bco-ring::after {
    content: '·';
    position: absolute;
    color: var(--bap-light);
    font-size: 16px;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0;
}
.bco-ring::after { top: auto; bottom: -10px; }

.bco-inner {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: rgba(168,207,227,0.1);
    border: 1px solid rgba(168,207,227,0.3);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.baptism-initial {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 300;
    color: #fff;
    text-shadow: 0 2px 20px rgba(100,175,220,0.5);
}

.baptism-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 0.9;
    text-shadow: 0 4px 40px rgba(100,175,220,0.3);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeSlideDown 1.2s ease 0.7s forwards;
}

.baptism-divider {
    margin: 22px 0 16px;
    opacity: 0;
    animation: fadeIn 1s ease 1.1s forwards;
}

.baptism-date {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    color: rgba(255,255,255,0.75);
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.2s forwards;
}

.baptism-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-top: 16px;
    line-height: 1.6;
    max-width: 360px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 1.4s forwards;
}

.baptism-scroll {
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

/* ══════════════════════════════
   DETALHES — BATIZADO
   ══════════════════════════════ */
#details-baptism {
    background: var(--sky-light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#details-baptism::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--bap-light), transparent);
}

.baptism-details-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 80%, rgba(91,159,194,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(120,180,220,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.baptism-info-block {
    max-width: 560px;
    margin: 0 auto 55px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(91,159,194,0.2);
    border-radius: 4px;
    position: relative;
}

.baptism-info-block::before, .baptism-info-block::after {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    border-color: rgba(91,159,194,0.35);
    border-style: solid;
}
.baptism-info-block::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.baptism-info-block::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.baptism-info-text {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.8;
    font-style: italic;
}

.baptism-info-text strong {
    font-weight: 400;
    color: var(--bap-dark);
    font-style: normal;
}

.baptism-grid { max-width: 680px; }

/* ══════════════════════════════
   RSVP — BATIZADO
   ══════════════════════════════ */
#rsvp-baptism {
    background: var(--warm-white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rsvp-bp-watercolor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(168,207,227,0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(140,195,220,0.2) 0%, transparent 55%);
    pointer-events: none;
}

#rsvp-baptism::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--bap-light), transparent);
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
footer {
    background: var(--navy);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-wc-wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(90,160,210,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(60,130,180,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-monogram {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
}

.footer-divider {
    color: var(--bap-light);
    font-size: 14px;
    opacity: 0.5;
}

.footer-sub {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.4);
}

.footer-date {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 480px) {
    .countdown-wrapper { gap: 8px; }
    .time-box { min-width: 62px; }
    .time-box-inner { padding: 10px 10px 8px; }
    .details-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .hero-divider-line { width: 45px; }
    .baptism-circle-ornament { width: 96px; height: 96px; }
    .bco-inner { width: 72px; height: 72px; }
    .baptism-initial { font-size: 2.4rem; }
    .baptism-info-block { padding: 22px 20px; }
    .section-separator { padding: 40px 24px; }
    .baptism-deco-left, .baptism-deco-right { display: none; }
}