:root {
    --primary: #B76E79; /* Rose Gold */
    --accent: #ffb7c5; /* Soft Pink */
    --bg-overlay: rgba(15, 10, 10, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(15px);
    --text: #ffffff;
    --text-muted: #d1b8b8;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Great Vibes', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #000;
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
}

::-webkit-scrollbar { display: none; }

/* Splash Screen */
#splash {
    position: fixed; inset: 0; z-index: 1000;
    background: linear-gradient(135deg, #1a0f11, #000); 
    display: flex; align-items: center; justify-content: center;
    text-align: center; transition: 0.8s;
}
#splash.gone { opacity: 0; visibility: hidden; transform: translateY(-100%); }
.splash-icon { font-size: 4rem; color: var(--primary); margin-bottom: 20px; animation: shine 2s infinite; }
.splash-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: normal;
}
.splash-sub { font-size: 0.9rem; margin-top: 10px; opacity: 0.7; }
.splash-btn {
    background: var(--primary); color: #fff; border: none; padding: 16px 45px;
    font-weight: 700; border-radius: 50px; cursor: pointer; margin-top: 30px;
    box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3);
}

@keyframes shine {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.5); }
    100% { transform: scale(1); filter: brightness(1); }
}

/* Main UI */
#invite { position: relative; width: 100%; min-height: 100svh; padding: 80px 26px 40px; }
.invite-bg { position: fixed; inset: 0; background: url('../img/bg_invite.png') center/cover no-repeat; z-index: -2; }
.invite-overlay { position: fixed; inset: 0; background: var(--bg-overlay); z-index: -1; }
#invite.hidden { display: none; }
.invite-body-inner { max-width: 420px; margin: 0 auto; text-align: center; }

.fab-music {
    position: fixed; top: 20px; right: 20px; width: 44px; height: 44px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur); border-radius: 50%; color: var(--primary);
    cursor: pointer; z-index: 100;
}

.section-hero { margin-bottom: 50px; }
.tag { font-size: 0.7rem; letter-spacing: 5px; color: var(--accent); font-weight: 700; text-transform: uppercase; }
.hero-name {
    font-family: var(--font-display); font-size: 4.5rem; color: var(--primary);
    text-shadow: 0 0 20px rgba(183, 110, 121, 0.4); margin: 10px 0;
}
.hero-desc { font-size: 0.8rem; letter-spacing: 4px; color: #fff; opacity: 0.6; }

/* Info Card & Timer Aggregation */
.glass-card.info-card {
    border-radius: 30px 30px 0 0;
    padding: 25px;
    margin-bottom: 0;
    border-bottom: 0;
}
.info-date { text-align: center; }
.info-date strong { display: block; font-size: 0.7rem; color: var(--accent); letter-spacing: 3px; margin-bottom: 5px; }
.info-date span { font-size: 1.2rem; font-weight: 700; color: #fff; }

.section-timer {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-top: 0;
    border-radius: 0 0 30px 30px;
    padding: 0 25px 30px;
    margin-bottom: 40px;
}

/* Timer */
.section-timer { margin-bottom: 40px; }
.label-sm { font-size: 0.65rem; letter-spacing: 3px; color: var(--text-muted); margin-bottom: 15px; }
.timer-row { display: flex; justify-content: center; gap: 10px; align-items: center; }
.t-block {
    background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
    padding: 15px; border-radius: 20px; min-width: 70px;
}
.t-block span { display: block; font-size: 1.4rem; font-weight: 700; color: #fff; }
.t-block small { font-size: 0.55rem; text-transform: uppercase; opacity: 0.8; }

/* Buttons */
.section-actions { display: flex; flex-direction: column; gap: 15px; margin-bottom: 60px; }
.btn {
    padding: 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; border: none; text-decoration: none; display: flex;
    align-items: center; justify-content: center; gap: 10px; transition: 0.3s;
}
.btn-solid { background: var(--primary); color: #fff; box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: var(--text-muted); opacity: 0.7; font-size: 0.8rem; }

/* Modals */
.modal {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(15, 10, 10, 0.95); backdrop-filter: blur(10px);
    display: none; align-items: center; justify-content: center; padding: 25px;
}
.modal.open { display: flex; }
.modal-box {
    background: #1a0f11; border: 1px solid var(--glass-border);
    width: 100%; max-width: 400px; padding: 50px 30px;
    position: relative; text-align: center; border-radius: 35px;
}
.modal-close { position: absolute; top: 25px; right: 25px; color: #fff; font-size: 1.5rem; cursor: pointer; border: 0; background: 0; opacity: 0.8; }
.modal-ico { font-size: 3rem; color: var(--primary); margin-bottom: 25px; }
.pix-box { background: rgba(0,0,0,0.3); padding: 25px; border-radius: 20px; margin-top: 25px; border: 1px dashed var(--primary); }
.pix-box code { display: block; margin-bottom: 20px; color: var(--primary); font-size: 1.1rem; }

.location-options { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    margin-top: 20px; 
}
.loc-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 10px; background: rgba(255,255,255,0.03); border-radius: 12px; color: #fff;
    text-decoration: none; font-weight: 700; border: 1px solid var(--glass-border);
    font-size: 0.7rem; text-transform: uppercase; transition: 0.2s;
}
.loc-btn i { font-size: 1.2rem; color: var(--primary); }
.loc-btn:active { transform: scale(0.95); background: rgba(255,255,255,0.1); }
.loc-copy { grid-column: span 2; background: var(--primary); color: #fff; border: none; }
.loc-copy i { color: #fff; }

.anim-in { opacity: 0; transform: translateY(20px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.active-anim { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.2s; }
.d2 { transition-delay: 0.4s; }
.d3 { transition-delay: 0.6s; }
.d4 { transition-delay: 0.8s; }


.commercial-footer a { color: #fff; text-decoration: none; }




/* --- FOOTER (WILL V3) --- */
.commercial-footer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; opacity: 0.8; margin-top: 40px; text-align: center; }
.commercial-footer p { font-size: 0.6rem; margin-bottom: 5px; opacity: 0.5; color: #fff; }
.commercial-footer a { color: #fff; text-decoration: none; }
.cta-footer { display: block; font-size: 0.75rem; color: var(--primary, #ffd700) !important; font-weight: 700; margin-top: 5px; text-decoration: none; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }


.pix-box { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.pix-box .btn { margin: 0 auto; min-width: 200px; }



.btn-cta-viral {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.8rem !important;
    color: var(--primary) !important;
    text-decoration: none;
    margin-top: 15px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-viral:active {
    background: var(--primary);
    color: #000 !important;
    transform: scale(0.95);
}

.btn-cta-viral i {
    color: var(--primary);
}

.btn-cta-viral {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.8rem !important;
    color: var(--primary) !important;
    text-decoration: none;
    margin-top: 15px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-viral:active {
    background: var(--primary);
    color: #000 !important;
    transform: scale(0.95);
}

.btn-cta-viral i {
    color: var(--primary);
}

.invite-footer {
    width: 100%;
    max-width: 480px;
    margin: 60px auto 20px;
    text-align: center;
    padding-bottom: 20px;
}

.invite-footer p {
    font-size: 0.75rem;
    opacity: 0.4;
    margin-bottom: 10px;
}

.invite-footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.commercial-footer { display: none !important; }
/* --- FOOTER DISCRETO AGENCIA WILL --- */

.btn-cta-viral {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    border: none !important;
    padding: 10px !important;
    font-size: 0.7rem !important;
    color: var(--primary) !important;
    text-decoration: none;
    margin-top: 5px;
    opacity: 0.6;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.btn-cta-viral:hover, .btn-cta-viral:active {
    opacity: 1;
    transform: translateY(-2px);
}

.btn-cta-viral i {
    font-size: 0.8rem;
    color: var(--primary);
}

.invite-footer {
    width: 100%;
    max-width: 480px;
    margin: 50px auto 20px;
    text-align: center;
    padding-bottom: 30px;
}

.invite-footer p {
    font-size: 0.65rem;
    opacity: 0.3;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.invite-footer a {
    color: inherit;
    text-decoration: none;
}