* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #fff8fa;
    color: #513640;
    overflow-x: hidden;
}

/* =========================================
   PLAYER DE MÚSICA DO YOUTUBE
   ========================================= */

.player-musica {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 280px;
    height: 158px;

    background: white;
    border: 4px solid #ffffff;
    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(81, 54, 64, 0.25);

    z-index: 1000;

    transition: 0.4s ease;
}

/* VÍDEO */

.player-musica iframe {
    width: 100%;
    height: 100%;

    display: block;
}

/* BOTÃO DE FECHAR */

.fechar-player {
    position: absolute;

    top: 6px;
    right: 6px;

    width: 28px;
    height: 28px;

    padding: 0;

    border-radius: 50%;

    background: rgba(216, 91, 133, 0.9);

    color: white;

    font-size: 20px;
    line-height: 28px;

    z-index: 10;

    cursor: pointer;

    border: 2px solid white;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.fechar-player:hover {
    transform: scale(1.1);
    box-shadow: none;
}

/* PLAYER ESCONDIDO */

.player-musica.escondido {
    transform: translateX(330px);
    opacity: 0;
    pointer-events: none;
}


/* =========================================
   CELULAR
   ========================================= */

@media (max-width: 600px) {

    .player-musica {
        width: 190px;
        height: 107px;

        right: 12px;
        bottom: 12px;

        border-width: 3px;
        border-radius: 15px;
    }

    .fechar-player {
        width: 24px;
        height: 24px;

        font-size: 17px;
        line-height: 20px;

        top: 4px;
        right: 4px;
    }

}

/* FLORES DECORATIVAS */

.flor {
    position: fixed;
    font-size: 45px;
    opacity: 0.35;
    z-index: -1;
}

.flor1 {
    top: 10%;
    left: 4%;
}

.flor2 {
    top: 65%;
    right: 5%;
}

.flor3 {
    top: 35%;
    right: 3%;
}

.flor4 {
    bottom: 8%;
    left: 3%;
}


/* INÍCIO */

.inicio {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;

    background:
        radial-gradient(circle at top left, #ffd5e2, transparent 40%),
        radial-gradient(circle at bottom right, #ffe4bd, transparent 40%),
        #fff8fa;
}

.conteudo-inicio {
    animation: aparecer 1s ease;
}

.flores {
    font-size: 32px;
    margin-bottom: 20px;
}

.inicio h1,
.inicio h2,
.texto h2,
.surpresa h2,
footer h2 {
    font-family: "Dancing Script", cursive;
}

.inicio h1 {
    font-size: 70px;
}

.inicio h2 {
    font-size: 55px;
    color: #d85b85;
    margin-bottom: 20px;
}

.subtitulo {
    margin-bottom: 30px;
}


/* BOTÃO */

button {
    border: none;
    background: #d85b85;
    color: white;

    padding: 14px 30px;
    border-radius: 30px;

    font-family: "Poppins", sans-serif;
    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(216, 91, 133, 0.25);
}


/* SEÇÕES */

.secao {
    max-width: 1050px;
    margin: auto;
    padding: 100px 25px;
}


/* BLOCO TEXTO + FOTO */

.bloco {
    display: flex;
    align-items: center;
    gap: 70px;
}

.invertido {
    flex-direction: row-reverse;
}

.texto {
    flex: 1;
}

.texto h2 {
    font-size: 50px;
    color: #d85b85;
    margin-bottom: 25px;
}

.texto p {
    line-height: 1.9;
    margin-bottom: 15px;
}


/* FOTOS */

.foto {
    flex: 1;
}

.foto img {
    width: 100%;
    height: 480px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow: 15px 15px 0 #ffd5e2;

    transition: 0.4s;
}

.foto img:hover {
    transform: scale(1.02) rotate(1deg);
}


/* DESTAQUE */

.destaque {
    font-family: "Dancing Script", cursive;
    font-size: 30px;
    color: #d85b85;
}


/* SURPRESA */

.surpresa {
    background: #ffe5ed;

    padding: 60px 30px;

    border-radius: 35px;

    text-align: center;
}

.presente {
    font-size: 55px;
    margin-bottom: 10px;
}

.surpresa h2 {
    font-size: 50px;
    color: #d85b85;
    margin-bottom: 15px;
}

.surpresa p {
    margin-bottom: 25px;
}

#mensagemSurpresa {
    display: none;

    max-width: 600px;
    margin: 30px auto 0;

    background: white;

    padding: 30px;

    border-radius: 20px;

    animation: aparecer 0.6s ease;
}

#mensagemSurpresa h3 {
    color: #d85b85;
    margin-bottom: 15px;
}


/* FINAL */

footer {
    background: #f7c4d4;

    text-align: center;

    padding: 80px 20px;
}

.flores-footer {
    font-size: 30px;
    margin-bottom: 20px;
}

footer h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

footer p {
    max-width: 650px;
    margin: 10px auto;
    line-height: 1.7;
}


/* ANIMAÇÃO */

@keyframes aparecer {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* CELULAR */

@media (max-width: 800px) {

    .bloco,
    .invertido {
        flex-direction: column;
        gap: 40px;
    }

    .inicio h1 {
        font-size: 50px;
    }

    .inicio h2 {
        font-size: 42px;
    }

    .texto h2,
    .surpresa h2 {
        font-size: 42px;
    }

    .foto {
        width: 100%;
    }

}


@media (max-width: 500px) {

    .secao {
        padding: 70px 20px;
    }

    .inicio h1 {
        font-size: 42px;
    }

    .inicio h2 {
        font-size: 35px;
    }

    .foto img {
        height: 400px;
    }

    footer h2 {
        font-size: 45px;
    }

}