@import url('https://fonts.googleapis.com/css2?family=WindSong:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.capa {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0 56px;
    top: 0;

}

.img_capa {
    width: 40%;
}

.img_capa img{
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.content_capa {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 36px;
    text-align: center;
}

.content_capa .texto_capa {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.content_capa .texto_capa h1 {
    font-family: "WindSong", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 90px;
    margin-bottom: 16px;
}


.content_capa .texto_capa h4 {
    font-weight: 500;
    font-style: normal;
    font-size: 36px;
    margin-bottom: 8px;

}

.content_capa .texto_capa h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;

}


.contatos_capa {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-social {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    transition: background 0.3s ease, transform 0.2s ease;
    align-items: center;
    justify-content: center;
}

.btn-social i {
    font-size: 18px;
}

.insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.whats{
    background-color: #25D366;
}

.agendar{
    background-color: #111111;
}

.btn-social:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


@media (max-width: 1100px) {
    .contatos_capa{
        flex-direction: column;
    }
    .content_capa .texto_capa h1{
        font-size: 72px;
    }
    .content_capa .texto_capa h4{
        font-size: 30px;
    }
    .content_capa .texto_capa h6{
        font-size: 22px;
    }

}
@media (max-width: 768px) {
    .capa {
        flex-direction: column;
        margin: 0;

    }

    .img_capa{
        width: 60%;
    }
    .content_capa{
        padding-top: 36px;
        width: 100%;
        text-align: center;
    }

    .content_capa .texto_capa h1{
        font-size: 32px;
    }
    .content_capa .texto_capa h4{
        font-size: 20px;
    }
    .content_capa .texto_capa h6{
        font-size: 16px;
    }

    .contatos_capa{
        flex-direction: column;
    }


}
@media (max-width: 480px) {
    .capa {
        flex-direction: column;
        margin: 0;

    }

    .img_capa{
        width: 100%;
    }
    .content_capa{
        padding-top: 36px;
        width: 100%;
        text-align: center;
    }

    .content_capa .texto_capa h1{
        font-size: 48px;
    }
    .content_capa .texto_capa h4{
        font-size: 20px;
    }
    .content_capa .texto_capa h6{
        font-size: 16px;
    }

    .contatos_capa{
        flex-direction: column;
    }



}


