@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');

.header-box {
    width: 100%;
    background: linear-gradient(to top, #5289d0, #0043bc);
    display: flex;
    justify-content: space-between;
    border: 2px solid black;
    padding: 0 45px;
    gap: 1em;
    font-family: 'Playfair Display', sans-serif;
    color: white;
}

.header-box img {
    width: 100px;
    height: 100px;
}

@media (min-width: 615px) {
    .header-box{
        width: 100%;
        background: linear-gradient(to top, #5289d0, #0043bc);
        display: flex;
        justify-content: space-between;
        border: 2px solid black;
        padding: 0 45px;
        gap: 5em;
        font-family: 'Playfair Display', sans-serif;
        color: white;
    }

    .header-box img {
        width: 250px;
        height: 250px;
    }
}

.header-text {
    font-family: 'Playfair Display', sans-serif;
    font-size: 1.6em;
    text-align: center;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    line-height: 1;
}

@media (min-width: 615px) {
    .header-text {
        font-family: 'Playfair Display', sans-serif;
        font-size: 3.5em;
        text-align: center;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        line-height: 1;
    }
}

.header-text p{
    margin: 0;
}

.header-logo img {
    height: 100%;
}

.section-turnos{

    margin-top: 80px;
}

.section-turnos h1{

    font-size: 1.5em;
    text-align: center;
    margin: 1em;
    color: #484848;
    font-weight: 400;
}

.section-turnos .cards{
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
}

.section-turnos .card{

    width: 290px;
    background-color: #0143bd;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    
}

.section-turnos .card img{
    width: 100%;
}

.card:hover{
    transform: scale(1.01);
}

.section-turnos .card-content h3{
    width: 100%;
    font-weight: 400;
    font-size: 1.5em;
    flex-basis: 40%;
    line-height: 1.2;
}

.section-turnos .card-content {
    padding: 1.5em 1em;
    height: 100%;
}



@media (max-width:756px){

    /* INICIO */

    .content-inicio{
        margin-top: 50px;
    }
}
