/* ============================================================
   BODAS DE ESMERALDA - Du & Mirandir
   Arquivo: assets/css/style.css
   ============================================================ */

/* ============================================================
   1. IMPORTAÇÕES E VARIÁVEIS GLOBAIS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Quicksand:wght@300;400;500;600&display=swap');

:root {
    /* Paleta de Cores Principais */
    --emerald:        #50c878;
    --emerald-dark:   #022c22;
    --emerald-800:    #064e3b;
    --emerald-900:    #022c22;
    --emerald-950:    #011a15;
    --emerald-700:    #065f46;
    --emerald-600:    #047857;
    
    /* Tons de Destaque (Dourado/Creme) */
    --gold:           #D4AF37;
    --gold-light:     #F3E5AB;
    --cream:          #FFFDD0;
    --cream-dark:     #F5F5DC;
}

/* ============================================================
   2. RESET E ESTILOS BASE
   ============================================================ */
*, 
*::before, 
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--emerald-900);
    color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container Principal */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* Títulos de Seção */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--gold);
    margin-bottom: 16px;
}

.section-divider {
    width: 96px; 
    height: 4px;
    background-color: var(--gold);
    opacity: 0.5; 
    margin: 0 auto 40px; 
    border: none;
}

.text-center { 
    text-align: center; 
}

/* ============================================================
   3. ANIMAÇÕES GLOBAIS (REVEAL)
   ============================================================ */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in-up { 
    animation: fadeInUp 1s ease forwards; 
}

/* Classes controladas pelo JavaScript (main.js) */
.reveal {
    opacity: 1; 
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

body.js-ready .reveal { 
    opacity: 0; 
    transform: translateY(30px); 
}

body.js-ready .reveal.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* ============================================================
   4. COMPONENTES FLUTUANTES (MÚSICA E RSVP)
   ============================================================ */
/* Botão de Música */
.music-control {
    position: fixed; 
    bottom: 24px; 
    left: 24px; 
    z-index: 999;
    background-color: var(--gold); 
    color: var(--emerald-dark);
    border: none; 
    padding: 16px; 
    border-radius: 50%;
    cursor: pointer; 
    font-size: 18px; 
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease; 
    width: 55px; 
    height: 55px;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.music-control:hover { 
    transform: scale(1.1); 
}

/* Botão Flutuante RSVP */
.rsvp-float-btn {
    position: fixed; 
    bottom: 24px; 
    right: 24px; 
    z-index: 998;
    display: flex; 
    align-items: center; 
    gap: 10px;
    background-color: var(--gold); 
    color: var(--emerald-dark);
    text-decoration: none; 
    font-family: 'Playfair Display', serif;
    font-weight: 700; 
    font-size: 15px; 
    letter-spacing: 0.5px;
    padding: 14px 24px; 
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0; 
    transform: translateY(100px) scale(0.8); 
    pointer-events: none;
}

.rsvp-float-btn.show { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    pointer-events: all; 
}

.rsvp-float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background-color: var(--gold-light);
}

.rsvp-float-btn i { 
    font-size: 18px; 
    animation: heartbeat 1.5s ease-in-out infinite; 
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.15); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.15); }
    70%      { transform: scale(1); }
}

/* ============================================================
   5. CABEÇALHO E NAVEGAÇÃO (NAVBAR)
   ============================================================ */
.navbar {
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 900;
    background-color: rgba(2, 44, 34, 0.92); 
    backdrop-filter: blur(10px);
    padding: 16px 0; 
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.nav-inner { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.nav-logo {
    font-family: 'Playfair Display', serif; 
    font-size: 22px; 
    font-weight: 700;
    color: var(--gold); 
    text-decoration: none;
}

.nav-logo span { 
    font-family: 'Quicksand', sans-serif; 
    font-size: 13px; 
    font-weight: 300; 
    color: var(--cream); 
    margin-left: 8px; 
}

.nav-menu { 
    display: flex; 
    gap: 32px; 
    list-style: none; 
}

.nav-menu a { 
    text-decoration: none; 
    color: var(--cream); 
    font-weight: 500; 
    font-size: 15px; 
    transition: color 0.3s ease; 
}

.nav-menu a:hover { 
    color: var(--gold); 
}

/* Menu Mobile Toggle */
.nav-toggle { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--gold); 
    font-size: 24px; 
    cursor: pointer; 
}

.nav-mobile {
    display: none; 
    flex-direction: column; 
    background-color: var(--emerald-800);
    padding: 12px 16px 20px; 
    position: absolute; 
    top: 100%; 
    width: 100%; 
    left: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.nav-mobile.open { 
    display: flex; 
}

.nav-mobile a { 
    text-decoration: none; 
    color: var(--cream); 
    font-weight: 500; 
    padding: 15px 12px; 
    transition: color 0.3s; 
    border-bottom: 1px solid rgba(212, 175, 55, 0.1); 
}

.nav-mobile a:hover { 
    color: var(--gold); 
}

/* ============================================================
   6. SEÇÃO HERO (INÍCIO) E COUNTDOWN
   ============================================================ */
.hero { 
    min-height: 100vh; 
    position: relative; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 100px 20px 60px; 
    overflow: hidden; 
}

.hero-bg { 
    position: absolute; 
    inset: 0; 
    background-image: url('../img/banner.jpg'); 
    background-size: cover; 
    background-position: center; 
    z-index: 0; 
}

.hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to bottom, rgba(2,44,34,0.60), var(--emerald-900)); 
    z-index: 1; 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    margin-top: 40px; 
}

.hero-subtitle { 
    color: var(--gold); 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom: 16px; 
}

.hero-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(3rem, 10vw, 6rem); 
    font-weight: 700; 
    color: var(--cream); 
    margin-bottom: 24px; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.4); 
}

.hero-desc { 
    font-size: clamp(1rem, 2.5vw, 1.3rem); 
    color: var(--cream-dark); 
    font-weight: 300; 
    max-width: 600px; 
    margin: 0 auto 48px; 
}

/* Timer / Contagem Regressiva */
.countdown { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 16px; 
    margin-bottom: 48px; 
}

.count-box { 
    background-color: rgba(6, 78, 59, 0.6); 
    backdrop-filter: blur(6px); 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    border-radius: 12px; 
    padding: 16px; 
    width: 88px; 
    height: 104px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

.count-box span:first-child { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.2rem; 
    font-weight: 700; 
    color: var(--gold); 
    line-height: 1; 
}

.count-box span.count-label { 
    font-size: 11px; 
    text-transform: uppercase; 
    color: var(--cream); 
    margin-top: 6px; 
    letter-spacing: 1px; 
}

/* Botões Genéricos */
.btn-primary { 
    display: inline-block; 
    background-color: var(--gold); 
    color: var(--emerald-dark); 
    font-weight: 700; 
    font-size: 15px; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    text-decoration: none; 
    padding: 16px 40px; 
    border-radius: 50px; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2); 
}

.btn-primary:hover { 
    background-color: var(--gold-light); 
    transform: translateY(-3px); 
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35); 
}

/* ============================================================
   7. SEÇÃO NOSSA HISTÓRIA
   ============================================================ */
.historia { 
    padding: 96px 20px; 
    background-color: var(--emerald-800); 
}

.historia-text { 
    max-width: 760px; 
    margin: 0 auto; 
    text-align: center; 
    font-weight: 300; 
    font-size: 1.05rem; 
    line-height: 1.9; 
    color: var(--cream-dark); 
}

.historia-text p + p { 
    margin-top: 24px; 
}

/* ============================================================
   8. SEÇÃO FOTOS E GALERIA (LIGHTBOX)
   ============================================================ */
.fotos { 
    padding: 96px 20px; 
    background-color: var(--emerald-900); 
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}

.gallery-item { 
    position: relative; 
    overflow: hidden; 
    border-radius: 12px; 
    aspect-ratio: 1/1; 
    cursor: pointer; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.7s ease; 
    display: block; 
}

.gallery-item:hover img { 
    transform: scale(1.1); 
}

.gallery-overlay { 
    position: absolute; 
    inset: 0; 
    background-color: rgba(2, 44, 34, 0.45); 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.gallery-item:hover .gallery-overlay { 
    opacity: 1; 
}

.gallery-overlay i { 
    color: var(--gold); 
    font-size: 28px; 
}

/* Modal / Lightbox das Fotos */
.lightbox { 
    position: fixed; 
    inset: 0; 
    z-index: 9999; 
    background-color: rgba(0, 0, 0, 0.95); 
    display: none; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.lightbox.open { 
    display: flex; 
    opacity: 1; 
}

.lightbox-close { 
    position: absolute; 
    top: 20px; 
    right: 24px; 
    background: none; 
    border: none; 
    color: white; 
    font-size: 40px; 
    cursor: pointer; 
    line-height: 1; 
    transition: color 0.3s; 
}

.lightbox-close:hover { 
    color: var(--gold); 
}

.lightbox-prev, 
.lightbox-next { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: none; 
    border: none; 
    color: white; 
    font-size: 48px; 
    cursor: pointer; 
    transition: color 0.3s; 
}

.lightbox-prev { 
    left: 16px; 
}

.lightbox-next { 
    right: 16px; 
}

.lightbox-prev:hover, 
.lightbox-next:hover { 
    color: var(--gold); 
}

.lightbox img { 
    max-height: 85vh; 
    max-width: 90vw; 
    object-fit: contain; 
    box-shadow: 0 0 60px rgba(0,0,0,0.8); 
}

/* ============================================================
   9. SEÇÃO O EVENTO (INFORMAÇÕES E MAPA)
   ============================================================ */
.evento { 
    padding: 96px 20px; 
    background-color: var(--emerald-800); 
}

.evento-layout { 
    display: flex; 
    flex-direction: row; 
    gap: 40px; 
    align-items: center; 
}

.evento-info { 
    flex: 1; 
}

.evento-info h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(1.5rem, 4vw, 2rem); 
    color: var(--gold); 
    text-align: center; 
    margin-bottom: 8px; 
}

.evento-quote { 
    text-align: center; 
    color: var(--cream-dark); 
    font-style: italic; 
    margin-bottom: 24px; 
}

.evento-card { 
    background-color: var(--emerald-900); 
    padding: 32px; 
    border-radius: 16px; 
    border: 1px solid var(--emerald-700); 
    box-shadow: 0 8px 40px rgba(0,0,0,0.3); 
}

.evento-row { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    padding: 16px 0; 
}

.evento-row + .evento-row { 
    border-top: 1px solid var(--emerald-800); 
}

.evento-row i { 
    color: var(--gold); 
    font-size: 28px; 
    flex-shrink: 0; 
}

.evento-row h4 { 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--cream); 
    margin-bottom: 4px; 
}

.evento-row p { 
    color: var(--cream-dark); 
    font-size: 15px; 
}

.evento-map { 
    flex: 1; 
    height: 380px; 
    border-radius: 16px; 
    overflow: hidden; 
    border: 1px solid var(--emerald-700); 
    box-shadow: 0 8px 40px rgba(0,0,0,0.3); 
}

.evento-map iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
}

/* ============================================================
   10. SEÇÃO MURAL DE MENSAGENS
   ============================================================ */
.mural-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    margin-top: 20px; 
}

.mural-card { 
    background: var(--emerald-900); 
    padding: 24px; 
    border-radius: 12px; 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    text-align: left; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    transition: transform 0.3s; 
}

.mural-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--gold); 
}

.mural-card h4 { 
    color: var(--gold); 
    margin-bottom: 12px; 
    font-family: 'Playfair Display', serif; 
    font-size: 18px; 
}

.mural-card p { 
    color: var(--cream); 
    font-size: 15px; 
    font-style: italic; 
    line-height: 1.5; 
}

/* ============================================================
   11. SEÇÃO RSVP (FORMULÁRIO DE PRESENÇA)
   ============================================================ */
.rsvp { 
    padding: 96px 20px; 
    background-color: var(--emerald-900); 
    position: relative; 
}

.rsvp-bg { 
    position: absolute; 
    inset: 0; 
    opacity: 0.05; 
    background-image: url('https://www.transparenttextures.com/patterns/floral-motif.png'); 
}

.rsvp-inner { 
    position: relative; 
    z-index: 2; 
    max-width: 560px; 
    margin: 0 auto; 
    text-align: center; 
}

.rsvp-header { 
    text-align: center; 
    margin-bottom: 48px; 
}

.rsvp-header h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2rem, 5vw, 3rem); 
    color: var(--cream); 
    margin-bottom: 12px; 
}

.rsvp-header h2 span { 
    color: var(--gold); 
}

/* Estrutura do Formulário */
.rsvp-form { 
    background-color: var(--emerald-800); 
    padding: 32px; 
    border-radius: 16px; 
    border: 1px solid rgba(6, 95, 70, 0.5); 
    box-shadow: 0 20px 60px rgba(0,0,0,0.4); 
    text-align: left; 
}

.form-group { 
    margin-bottom: 24px; 
}

.form-group label { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 14px; 
    font-weight: 500; 
    color: var(--cream); 
    margin-bottom: 8px; 
}

.form-group label i { 
    color: var(--gold); 
}

/* Inputs, Textareas e Selects */
.form-input { 
    width: 100%; 
    padding: 12px 16px; 
    border-radius: 10px; 
    background-color: var(--emerald-900); 
    border: 1px solid var(--emerald-700); 
    color: var(--cream); 
    font-family: 'Quicksand', sans-serif; 
    font-size: 15px; 
    outline: none; 
    transition: box-shadow 0.3s, border-color 0.3s; 
}

.form-input::placeholder { 
    color: var(--emerald-600); 
}

.form-input:focus { 
    border-color: rgba(212, 175, 55, 0.5); 
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15); 
}

.form-input:is(select) { 
    appearance: none; 
    cursor: pointer; 
}

.form-input:is(textarea) { 
    resize: none; 
}

/* Estilos de Botão do Formulário */
.btn-submit { 
    width: 100%; 
    padding: 16px; 
    background-color: var(--gold); 
    color: var(--emerald-dark); 
    font-family: 'Playfair Display', serif; 
    font-size: 18px; 
    font-weight: 700; 
    border: none; 
    border-radius: 10px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    transition: background-color 0.3s ease; 
}

.btn-submit:hover { 
    background-color: var(--gold-light); 
}

.btn-submit:disabled { 
    opacity: 0.7; 
    cursor: not-allowed; 
}

/* ============================================================
   12. ELEMENTOS PERSONALIZADOS (RADIO & CHECKBOX)
   ============================================================ */
.checkbox-group { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    margin-top: 8px; 
}

/* CHECKBOX (Para Restrição Alimentar) */
.custom-checkbox { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    cursor: pointer; 
    font-size: 15px; 
    color: var(--cream); 
    user-select: none; 
    font-weight: 400; 
}

.custom-checkbox input { 
    position: absolute; 
    opacity: 0; 
    cursor: pointer; 
    height: 0; 
    width: 0; 
}

.custom-checkbox .checkmark { 
    height: 22px; 
    width: 22px; 
    background-color: var(--emerald-900); 
    border: 2px solid var(--emerald-700); 
    border-radius: 6px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease; 
}

.custom-checkbox:hover input ~ .checkmark { 
    border-color: var(--gold); 
}

.custom-checkbox input:checked ~ .checkmark { 
    background-color: var(--gold); 
    border-color: var(--gold); 
}

.custom-checkbox .checkmark::after { 
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    color: var(--emerald-dark); 
    font-size: 13px; 
    display: none; 
}

.custom-checkbox input:checked ~ .checkmark::after { 
    display: block; 
}

/* RADIO BUTTONS (Para Adulto / Criança) */
.custom-radio { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    cursor: pointer; 
    font-size: 16px; 
    color: var(--cream); 
    user-select: none; 
    font-weight: 500; 
    position: relative; 
}

.custom-radio input { 
    position: absolute; 
    opacity: 0; 
    cursor: pointer; 
    height: 0; 
    width: 0; 
}

.custom-radio .radiomark { 
    height: 24px; 
    width: 24px; 
    background-color: var(--emerald-900); 
    border: 2px solid var(--emerald-700); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease; 
}

.custom-radio:hover input ~ .radiomark { 
    border-color: var(--gold); 
}

.custom-radio input:checked ~ .radiomark { 
    background-color: var(--gold); 
    border-color: var(--gold); 
}

.custom-radio .radiomark::after { 
    content: ""; 
    width: 10px; 
    height: 10px; 
    background: var(--emerald-dark); 
    border-radius: 50%; 
    display: none; 
}

.custom-radio input:checked ~ .radiomark::after { 
    display: block; 
}

/* ============================================================
   13. SEÇÃO DE PRESENTES E PIX
   ============================================================ */
.presentes { 
    padding: 96px 20px; 
    background-color: var(--emerald-800); 
}

.presentes-desc { 
    font-size: 1.05rem; 
    color: var(--cream); 
    max-width: 640px; 
    margin: 0 auto 40px; 
    font-weight: 300; 
    line-height: 1.8; 
}

.presentes-desc strong { 
    color: var(--gold); 
}

.pix-card { 
    background-color: var(--emerald-900); 
    padding: 32px; 
    border-radius: 20px; 
    border: 1px solid var(--emerald-700); 
    box-shadow: 0 8px 40px rgba(0,0,0,0.3); 
    display: inline-block; 
    max-width: 340px; 
    width: 100%; 
    position: relative; 
    overflow: hidden; 
    transition: box-shadow 0.4s; 
}

.pix-card:hover { 
    box-shadow: 0 12px 60px rgba(212, 175, 55, 0.15); 
}

.pix-card .pix-icon { 
    font-size: 48px; 
    color: var(--emerald); 
    margin-bottom: 20px; 
    display: block; 
}

.pix-card h4 { 
    font-size: 20px; 
    font-weight: 700; 
    color: var(--cream); 
    margin-bottom: 12px; 
}

.pix-key-row { 
    background-color: var(--emerald-800); 
    padding: 12px 16px; 
    border-radius: 10px; 
    border: 1px solid var(--emerald-700); 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 24px; 
}

.pix-key-row span { 
    font-family: monospace; 
    color: var(--gold); 
    font-size: 15px; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    margin-right: 8px; 
}

.pix-key-row button { 
    background: none; 
    border: none; 
    color: var(--cream); 
    cursor: pointer; 
    padding: 6px; 
    transition: color 0.3s; 
}

.pix-key-row button:hover { 
    color: var(--gold); 
}

.pix-qr { 
    background-color: white; 
    padding: 16px; 
    border-radius: 12px; 
    width: 180px; 
    height: 180px; 
    margin: 0 auto 16px; 
}

.pix-qr img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
}

.copy-msg { 
    font-size: 14px; 
    font-weight: 700; 
    color: var(--emerald); 
    margin-top: 12px; 
    height: 20px; 
    opacity: 0; 
    transition: opacity 0.3s; 
}

/* ============================================================
   14. TOAST NOTIFICATION (BANNERS DE SUCESSO/ERRO)
   ============================================================ */
.notification-banner { 
    position: fixed; 
    top: -120px; 
    left: 50%; 
    transform: translateX(-50%); 
    background-color: var(--emerald-950); 
    border: 1px solid var(--gold); 
    color: var(--cream); 
    padding: 16px 24px; 
    border-radius: 12px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.6); 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    z-index: 9999; 
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    width: 90%; 
    max-width: 450px; 
}

.notification-banner.show { 
    top: 40px; 
}

.notification-banner.error { 
    border-color: #ef4444; 
}

.notification-banner.error i, 
.notification-banner.error .notification-text h4 { 
    color: #ef4444; 
}

.notification-banner i { 
    font-size: 32px; 
    color: var(--gold); 
}

.notification-text h4 { 
    font-family: 'Playfair Display', serif; 
    font-size: 18px; 
    color: var(--gold); 
    margin-bottom: 4px; 
}

.notification-text p { 
    font-size: 14px; 
    color: var(--cream-dark); 
    line-height: 1.4; 
    text-align: left; 
}

.close-notification { 
    background: none; 
    border: none; 
    color: var(--cream); 
    font-size: 28px; 
    cursor: pointer; 
    margin-left: auto; 
    transition: color 0.3s; 
}

.close-notification:hover { 
    color: var(--gold); 
}

/* ============================================================
   15. RODAPÉ (FOOTER)
   ============================================================ */
.footer { 
    background-color: var(--emerald-950); 
    padding: 40px 20px; 
    text-align: center; 
    border-top: 1px solid var(--emerald-900); 
}

.footer-name { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    color: var(--gold); 
    margin-bottom: 8px; 
}

.footer-copy { 
    font-size: 13px; 
    color: rgba(80, 200, 120, 0.6); 
    margin-bottom: 4px; 
}

/* ============================================================
   16. MEDIA QUERIES (RESPONSIVIDADE)
   ============================================================ */

/* Telas de tamanho médio (Tablets e Celulares grandes) */
@media (max-width: 768px) {
    /* Menu Mobile */
    .desktop-menu { 
        display: none; 
    }
    
    .nav-toggle { 
        display: block; 
    }
    
    /* Ajustes de Grade (Galeria e Evento) */
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
    }
    
    .evento-layout { 
        flex-direction: column; 
    }
    
    .evento-map { 
        width: 100%; 
        height: 280px; 
    }
    
    /* Contadores e Fontes Hero */
    .count-box { 
        width: 72px; 
        height: 88px; 
    }
    
    .count-box span:first-child { 
        font-size: 1.8rem; 
    }
    
    .hero { 
        min-height: 100dvh; 
        padding: 80px 20px 40px; 
    }
    
    .hero-bg { 
        background-position: top center; 
    }
    
    .hero-title { 
        font-size: clamp(2.5rem, 8vw, 4rem); 
        margin-bottom: 16px; 
    }
    
    /* Ajustes Botão Flutuante RSVP */
    .rsvp-float-btn { 
        padding: 12px 20px !important; 
        bottom: 20px; 
        right: 20px; 
    }
    
    .rsvp-float-btn i { 
        display: none !important; 
    }
    
    .rsvp-float-btn span { 
        display: inline-block !important; 
        font-size: 14px !important; 
    }
}

/* Telas Pequenas (Celulares Padrão) */
@media (max-width: 480px) {
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .rsvp-form, 
    .pix-card { 
        padding: 24px 16px; 
    }
    
    .notification-banner { 
        width: 95%; 
        padding: 12px 16px; 
    }
}