:root {
    --primary: #00d2ff;
    --primary-glow: rgba(0, 210, 255, 0.45);
    --secondary: #ff007a; /* Hibiscus Pink */
    --bg: #050505;
    --surface: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --radius: 20px;
    --font: 'Outfit', sans-serif;
    --font-display: 'Pacifico', 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: 100vh;
    width: 100vw;
}

/* Splash Screen */
#splash {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#splash.gone {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.splash-inner {
    max-width: 400px;
}

.splash-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: #000;
    box-shadow: 0 0 30px var(--primary-glow);
    animation: breathe 3s ease-in-out infinite;
}

 font-weight: 400; letter-spacing: normal; 
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.splash-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.splash-btn {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.splash-btn:active {
    transform: scale(0.95);
}

/* Convite Page */
.invite {
    position: relative;
    height: 100vh;
    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.4) 0%, 
        rgba(0,0,0,0.7) 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: 160px;
    height: 160px;
    margin: 0 auto 25px;
    position: relative;
    padding: 8px;
    background: #fff;
    border-radius: 4px;
    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(--secondary);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    transform: rotate(12deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

.hero-name {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(180deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.hero-age {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
}

/* Timer */
.section-timer {
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.label-sm {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2.5px;
    margin-bottom: 15px;
}

.timer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.t-block {
    display: flex;
    flex-direction: column;
}

.t-block span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.t-block small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.t-sep {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--border);
    margin-top: -15px;
}

/* Info Section */
.section-info {
    margin-bottom: 30px;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
}

.info-row:first-child {
    border-bottom: 1px solid var(--border);
}

.info-row i {
    width: 42px;
    height: 42px;
    background: rgba(0,210,255,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.info-text strong {
    display: block;
    font-size: 1.1rem;
}

.info-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* A��es */
.section-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-solid {
    background: var(--primary);
    color: #000;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn:active {
    transform: scale(0.97);
}

/* Footer */
.invite-footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.invite-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #111;
    width: 100%;
    max-width: 380px;
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s;
}

.modal.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-ico {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 10px 0 25px;
}

.modal-list {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.modal-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-list li i {
    color: var(--primary);
}

.pix-box {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
}

.pix-box code {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.btn-sm {
    padding: 12px 20px;
    font-size: 0.85rem;
}

/* Location Grid */
.location-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.loc-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.loc-uber { background: #000; color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.loc-waze { background: #33ccff; color: #000; }
.loc-google { background: #34a853; color: #fff; }
.loc-copy { background: var(--surface); color: var(--text); border: 1px solid var(--border); cursor: pointer; }

/* 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; }
.d4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--primary-glow); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px var(--primary-glow); }
}

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

/* Mobile Adjustments */
@media (max-height: 700px) {
    .invite-body { padding-top: 40px; }
    .hero-name { font-size: 4rem; }
}


.commercial-footer a { color: var(--primary); text-decoration: none; }






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