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

/* Largura da barra de rolagem */
::-webkit-scrollbar {
    width: 12px;
}


::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* Cor e estilo do "polegar" da barra de rolagem */
::-webkit-scrollbar-thumb {
    background-color: rgb(54, 89, 60);
    border-radius: 5px;
}


body {
    background-color: rgb(165, 175, 139);
    font-family: "Inter", sans-serif;
}

.flex {
    display: flex;
}

.main-container {
    width: 900px;
    max-width: 100%;
    margin: 40px auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1 {
    color: #fff;
    margin: 20px 0;
    font-size: 50px;
    text-align: center;
    font-weight: normal;
}

h2 {
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
}

.caroline-img {
    background-image: url('../assets/Imagem\ do\ WhatsApp\ de\ 2024-12-08\ à\(s\)\ 09.59.51_49a4b795.jpg');
    width: 250px;
    height: 250px;
    background-position: 50% 20%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: scaleUp .5s ease forwards;
}

.icons-container {
    width: 250px;
    justify-content: space-between;
    margin: 30px 0;
}

.icons-container a {
    color: #fff;
    font-size: 22px;
    transition: all .5s ease-in-out;
    transform: scale(0);
    opacity: 0;
    animation: scaleUp 0.5s forwards;

}

.link-numero a {
    text-decoration: none;
    color: #fff;
}


.sub-container {
    max-width: 500px;
    width: 90%;
    margin: 40px 0;
    flex-direction: column;
    color: #fff;
    background-color: rgb(54, 89, 60);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.link-numero {
    color: #fff;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    padding: 30px 10px;
    font-size: 12px;
    transform: scale(0);
    opacity: 0;
    animation: scaleUp 0.5s forwards;
}


.footer {
    width: 100%;
    text-align: center;
    justify-content: center;

}

.footer-container {
    color: #fff;
    text-decoration: none;
    letter-spacing: 5px;
    width: 240px;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 13px;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.footer-container span {
    margin-right: 10px;
}

.seta {
    font-size: 20px;
}

.seta {
    font-size: 24px;
    opacity: 1;
    transform: translateX(0);
    animation: infinite moveAndStretch 1.5s ease-in-out forwards;
}

@keyframes scaleUp {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


@keyframes moveAndStretch {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);

    }

    50% {
        opacity: 1;
        transform: translateX(50px) scale(0.5);

    }

    100% {
        opacity: 0;
        transform: translateX(300px) scale(0);

    }
}