/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

/* =========================
   BODY
========================= */

body{

    font-family:'Poppins',sans-serif;

    min-height:100vh;

    background:
    linear-gradient(
        180deg,
        #fff0f6 0%,
        #ffe4ec 50%,
        #ffd8e8 100%
    );

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;

    position:relative;

    overflow:hidden;
}

/* =========================
   FUNDO
========================= */

.bg-brilho{

    position:fixed;
    inset:0;

    background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.8), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255,192,203,0.35), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255,105,180,0.2), transparent 40%);

    filter:blur(60px);

    animation:girar 18s linear infinite;

    z-index:0;
}

@keyframes girar{

    0%{
        transform:rotate(0deg) scale(1);
    }

    50%{
        transform:rotate(180deg) scale(1.1);
    }

    100%{
        transform:rotate(360deg) scale(1);
    }
}

/* =========================
   BALÕES
========================= */

.balao{

    position:fixed;

    width:55px;
    height:70px;

    border-radius:50%;

    animation:flutuar 6s ease-in-out infinite;

    opacity:0.75;

    z-index:1;
}

.balao::after{

    content:'';

    position:absolute;

    width:2px;
    height:50px;

    background:#ffffffaa;

    left:50%;
    top:70px;
}

.b1{
    background:#ff4f9a;
    top:8%;
    left:5%;
}

.b2{
    background:#ff80ab;
    top:30%;
    left:85%;
    animation-delay:1s;
}

.b3{
    background:#f48fb1;
    top:65%;
    left:8%;
    animation-delay:2s;
}

.b4{
    background:#ffc1e3;
    top:12%;
    left:75%;
    animation-delay:3s;
}

.b5{
    background:#ffb6c1;
    top:75%;
    left:88%;
    animation-delay:4s;
}

@keyframes flutuar{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-25px);
    }
}

/* =========================
   PARTÍCULAS
========================= */

.particle{

    position:fixed;

    width:5px;
    height:5px;

    border-radius:50%;

    z-index:1;

    pointer-events:none;

    animation:subir linear infinite;
}

@keyframes subir{

    0%{
        transform:translateY(100vh) scale(1);
        opacity:1;
    }

    100%{
        transform:translateY(-20vh) scale(0);
        opacity:0;
    }
}

/* =========================
   CARD
========================= */

.convite{

    position:relative;

    z-index:2;

    width:100%;
    max-width:700px;

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(10px);

    border-radius:35px;

    padding:35px;

    text-align:center;

    box-shadow:
    0 10px 40px rgba(233,30,99,0.18),
    0 0 25px rgba(255,255,255,0.6);

    border:2px solid rgba(255,255,255,0.5);

    animation:aparecer 1s ease;
}

@keyframes aparecer{

    from{
        opacity:0;
        transform:translateY(40px);
    }

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

/* =========================
   FOTO
========================= */

.foto-area{
    position:relative;
    display:inline-block;
}

.foto-topo{

    width:190px;
    height:190px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #fff;

    box-shadow:
    0 0 35px rgba(233,30,99,0.4);

    transition:0.4s;

    cursor:pointer;
}

.foto-topo:hover{

    transform:scale(1.06) rotate(2deg);
}

.status-online{

    position:absolute;

    right:15px;
    bottom:15px;

    width:28px;
    height:28px;

    border-radius:50%;

    background:#00e676;

    border:4px solid #fff;

    box-shadow:0 0 15px #00e676;
}

/* =========================
   TEXTOS
========================= */

.nomeLisete{

    margin-top:18px;

    font-size:2.3em;

    font-weight:900;

    color:#e91e63;

    text-shadow:
    0 0 15px rgba(233,30,99,0.25);
}

.subtitulo{

    margin-top:8px;

    font-size:1.1em;

    color:#777;
}

h1{

    margin-top:22px;

    font-size:2em;

    color:#ff2d75;
}

/* =========================
   INFOS
========================= */

.info-box{

    margin-top:25px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;
}

.info-card{

    background:
    linear-gradient(
        135deg,
        #fff0f6,
        #ffe4ec
    );

    border-radius:20px;

    padding:18px;

    box-shadow:
    0 5px 15px rgba(233,30,99,0.08);

    transition:0.3s;
}

.info-card:hover{

    transform:translateY(-5px);
}

.info-card h3{

    color:#e91e63;

    font-size:1em;

    margin-bottom:8px;
}

.info-card p{

    color:#555;

    font-weight:600;

    line-height:1.4;
}

/* =========================
   MENSAGEM
========================= */

.mensagem{

    margin-top:30px;

    font-size:1.08em;

    color:#555;

    line-height:1.9;

    background:#fff7fa;

    border-radius:20px;

    padding:25px;

    border:1px solid #ffd0df;
}

/* =========================
   BOTÃO
========================= */

.btn-confirmar{

    display:inline-flex;

    align-items:center;
    justify-content:center;
    gap:10px;

    margin-top:30px;

    width:100%;

    padding:20px;

    border-radius:60px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #ff2d75,
        #e91e63
    );

    color:white;

    font-size:1.2em;

    font-weight:800;

    letter-spacing:0.5px;

    box-shadow:
    0 12px 30px rgba(233,30,99,0.35);

    transition:0.3s;

    animation:pulsar 1.8s infinite;
}

.btn-confirmar:hover{

    transform:scale(1.03);

    box-shadow:
    0 15px 35px rgba(233,30,99,0.5);
}

@keyframes pulsar{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.02);
    }
}

/* =========================
   CONFIRMADOS
========================= */

.confirmados-box{

    margin-top:35px;

    background:
    linear-gradient(
        135deg,
        #fff0f6,
        #ffe4ec
    );

    padding:25px;

    border-radius:25px;
}

.confirmados-box h2{

    color:#e91e63;

    margin-bottom:18px;
}

#mensagemConfirmado{

    min-height:80px;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:1.25em;

    font-weight:800;

    color:#ff2d75;

    line-height:1.5;

    text-shadow:
    0 0 12px rgba(255,105,180,0.3);
}

/* =========================
   CONTADOR
========================= */

.contador{

    margin-top:30px;

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}

.tempo{

    background:white;

    width:90px;

    padding:15px 10px;

    border-radius:20px;

    box-shadow:
    0 5px 18px rgba(0,0,0,0.08);
}

.tempo span{

    display:block;

    font-size:2em;

    font-weight:900;

    color:#e91e63;
}

.tempo small{

    color:#777;

    font-weight:600;
}

/* =========================
   POPUP SOM
========================= */

#popupSom{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,0.7);

    display:flex;

    align-items:center;
    justify-content:center;

    z-index:9999;

    padding:20px;
}

.popup-box{

    background:white;

    width:100%;
    max-width:380px;

    padding:30px;

    border-radius:28px;

    text-align:center;

    box-shadow:0 0 40px rgba(0,0,0,0.3);

    animation:pulsar 2s infinite;
}

.popup-box h2{

    color:#e91e63;

    margin-bottom:15px;
}

.popup-box p{

    color:#555;

    line-height:1.6;

    font-size:1.05em;
}

.popup-botoes{

    display:flex;

    gap:15px;

    justify-content:center;

    margin-top:25px;

    flex-wrap:wrap;
}

.btn-sim{

    border:none;

    background:#e91e63;

    color:white;

    padding:14px 22px;

    border-radius:15px;

    font-weight:700;

    cursor:pointer;

    font-size:1em;

    min-width:120px;
}

.btn-nao{

    border:none;

    background:#eee;

    color:#444;

    padding:14px 22px;

    border-radius:15px;

    font-weight:700;

    cursor:pointer;

    font-size:1em;

    min-width:120px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    body{
        padding:12px;
    }

    .convite{

        padding:25px 18px;

        border-radius:28px;
    }

    .foto-topo{

        width:150px;
        height:150px;
    }

    .nomeLisete{

        font-size:1.8em;
    }

    h1{

        font-size:1.5em;
    }

    .info-box{

        grid-template-columns:1fr;
    }

    .mensagem{

        font-size:1em;

        padding:20px;
    }

    .btn-confirmar{

        font-size:1.05em;
    }

    #mensagemConfirmado{

        font-size:1.05em;
    }

    .tempo{

        width:75px;
    }

    .tempo span{

        font-size:1.6em;
    }
}