:root {
    --primary: #e60000; /* Ladybug Red */
    --primary-glow: rgba(230, 0, 0, 0.45);
    --secondary: #000000;
    --bg: #0a0a0a;
    --surface: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-muted: #cdcdcd;
    --radius: 24px;
    --font: 'Outfit', sans-serif;
    --font-display: 'Luckiest Guy', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body { background: var(--bg); color: var(--text); font-family: var(--font); overflow: hidden; height: 100svh; width: 100vw; }

/* Splash Screen */
#splash {
    position: fixed; inset: 0; z-index: 1000; background: var(--bg);
    display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 24px; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
#splash.gone { opacity: 0; visibility: hidden; transform: scale(1.1); }
.splash-icon { 
    font-size: 4rem; color: var(--primary); margin-bottom: 25px; 
    filter: drop-shadow(0 0 15px var(--primary-glow)); animation: breathe 3s infinite;
}
.splash-title { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 1px; color: #fff; margin-bottom: 12px; }
.splash-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 40px; }
.splash-btn {
    background: var(--primary); color: #fff; border: none; padding: 18px 45px;
    border-radius: 50px; font-weight: 700; font-size: 1.1rem; cursor: pointer;
    box-shadow: 0 10px 30px var(--primary-glow); transition: transform 0.2s;
}
.splash-btn:active { transform: scale(0.95); }

/* Main UI */
.invite { position: relative; height: 100svh; width: 100vw; display: flex; justify-content: center; overflow: hidden; }
.invite.hidden { display: none; }
.invite-bg { position: absolute; inset: 0; background: url('../img/bg_invite.png') no-repeat center center; background-size: cover; z-index: -2; }
.invite-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,1) 100%); z-index: -1; }
.invite-body { width: 100%; max-width: 420px; height: 100%; padding: 60px 24px 40px; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.invite-body::-webkit-scrollbar { display: none; }

/* Música Toggle */
.fab-music {
    position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border); color: var(--text);
    display: flex; align-items: center; justify-content: center; backdrop-filter: blur(10px); z-index: 100; cursor: pointer;
}
.fab-music.playing i { color: var(--primary); animation: rotate 4s linear infinite; }

/* Hero Section */
.section-hero { text-align: center; margin-bottom: 40px; }
.hero-photo-dossier { 
    width: 155px; height: 155px; margin: 0 auto 25px; position: relative; padding: 8px; 
    background: #fff; border-radius: 6px; transform: rotate(-3deg); box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
}
.hero-photo-dossier img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.dossier-stamp { 
    position: absolute; bottom: -10px; right: -10px; background: var(--primary); color: #fff; 
    padding: 5px 12px; font-size: 0.75rem; font-weight: 700; border-radius: 6px; transform: rotate(12deg); 
}
.tag { display: block; font-size: 0.65rem; letter-spacing: 3px; color: var(--primary); margin-bottom: 15px; font-weight: 700; }
.hero-name { 
    font-family: var(--font-display); font-size: 4.8rem; line-height: 1; margin-bottom: 10px;
    background: linear-gradient(180deg, #fff 40%, var(--primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 12px var(--primary-glow));
}
.hero-age { font-size: 2.5rem; font-weight: 800; color: #fff; letter-spacing: -1px; }

/* Combo Card (Data + Timer) */
.combo-card { 
    background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(15px);
    border-radius: var(--radius); padding: 30px 24px; text-align: center; margin-bottom: 30px; 
}
.info-date span { font-size: 1.3rem; font-weight: 700; color: #fff; }
.timer-divider { height: 1px; background: var(--border); margin: 25px 0; position: relative; }
.timer-divider::after { content: '🐞'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #1a1a1a; padding: 0 10px; font-size: 0.8rem; }
.label-sm { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); letter-spacing: 3px; margin-bottom: 20px; }
.timer-row { display: flex; justify-content: center; align-items: center; gap: 15px; }
.t-block span { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.t-block small { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; margin-top: 5px; display: block; }
.t-sep { font-size: 1.5rem; color: var(--border); margin-top: -15px; }

/* Info Row */
.section-location-short { margin-bottom: 35px; }
.info-row { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 1rem; color: var(--text-muted); }
.info-row i { color: var(--primary); font-size: 1.2rem; }

/* Actions */
.section-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 45px; }
.btn { 
    display: flex; align-items: center; justify-content: center; gap: 12px; padding: 18px; 
    border-radius: 18px; font-weight: 700; text-decoration: none; font-size: 1rem; cursor: pointer; transition: 0.2s; border: none; 
}
.btn-solid { background: var(--primary); color: #fff; box-shadow: 0 10px 25px var(--primary-glow); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn:active { transform: scale(0.97); }

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

/* Modals */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-box { background: #111; width: 100%; max-width: 380px; padding: 45px 30px; border-radius: var(--radius); border: 1px solid var(--border); position: relative; text-align: center; }
.modal-close { position: absolute; top: 15px; right: 15px; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; opacity: 0.5; }
.modal-ico { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }
.modal-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 25px; }
.modal-list { list-style: none; text-align: left; margin-bottom: 30px; }
.modal-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.modal-list li i { color: var(--primary); font-size: 0.8rem; }

/* Pix Box Centered */
.pix-box { background: rgba(0,0,0,0.3); padding: 25px; border-radius: 20px; display: flex; flex-direction: column; align-items: center; border: 1px dashed var(--primary); }
.pix-box code { display: block; font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; color: var(--primary); word-break: break-all; }
.btn-sm { padding: 12px 25px; font-size: 0.85rem; min-width: 200px; margin: 0 auto; display: flex; justify-content: center; }

/* Location Grid */
.location-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 25px; }
.loc-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 18px; border-radius: 16px; font-size: 0.8rem; font-weight: 700; text-decoration: none; background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: #fff; }
.loc-btn i { font-size: 1.3rem; color: var(--primary); }
.loc-uber { background: #000; } .loc-waze { background: #33ccff; color: #000; } .loc-waze i { color: #000; } .loc-google { background: #34a853; } .loc-copy { background: var(--primary); border: none; } .loc-copy i { color: #fff; }

/* Animations */
.anim-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease forwards; }
.d1 { animation-delay: 0.2s; } .d2 { animation-delay: 0.4s; } .d3 { animation-delay: 0.6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

@media (max-height: 700px) { .invite-body { padding-top: 40px; } .hero-name { font-size: 4rem; } .combo-card { padding: 20px; } }


.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;
}