/* Contacto equipo */

.contacto-equipo-container {
    background-color: white;
    padding: 120px 40px;
    box-sizing: border-box;
}

.contacto-equipo {
    display: flex;
    flex-flow: wrap;
    max-width: 1600px;
    margin: auto;
    width: 100%;
    gap: 30px;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
}

.contacto-equipo__title {
    color: #24135F;
    font-size: 64px;
    font-weight: 500;
    line-height: 40px;
    padding-bottom: 120px;
    text-align: right;
    display: flex;
    align-items: center;
    margin: 0px 116px;
}

.contacto-equipo-card {
    width: calc(16% - 24px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto-equipo-card-image {
    background: url('../../img/fis/imagen_fondo_fis.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: end;
    overflow: hidden;
    border-radius: 10px;
    height: 254px;
}

.contacto-equipo-card-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.contacto-equipo-card-image img:hover {
    transform: scale(1.05);
}

.contacto-equipo-card-text {
    color: #24135F;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

.contacto-equipo-card-text a {
    text-decoration: none;
    color: #24135F;
}

.contacto-equipo-card-text label {
    color: #24135F;
    font-size: 14px;
    font-weight: 300;
    line-height: 10px;
}

.contacto-info {
    margin: 120px auto;
    margin-bottom: 0px;
    max-width: 1600px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: #24135F;
    font-size: 24px;
    font-weight: 300;
}

.contacto-info a {
    color: #24135F;
    text-decoration: none;
}

.contacto-info span {
    color: #24135F;
    font-weight: 500;
}

@media (max-width: 1450px) {
    .contacto-equipo__title {
        margin: 0px;
    }
}

@media (max-width: 1300px) {
    .contacto-equipo-card {
        width: calc(26.33% - 20px);
    }
}

@media (max-width: 950px) {
    .contacto-equipo-card {
        width: calc(35% - 15px);
    }

    .contacto-equipo-container {
        padding: 40px 20px;
    }

    .contacto-info {
        flex-direction: column;
        justify-content: left;
        align-items: baseline;
        gap: 30px;
    }

    .contacto-equipo__title {
        margin-left: 80px;
        font-size: 48px;
        padding-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .contacto-equipo-card {
        width: 65%;
    }
}

@media (max-width: 500px) {
    .contacto-equipo__title {
        align-items: start;
        margin: 0px;
        font-size: 42px;
    }
}

/* Contacto Hablemos */

.contacto-hablemos-container {
    padding: 120px 40px;
    padding-top: 0px;
    background-color: white;
    box-sizing: border-box;
}

.contacto-hablemos {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #24135F;
    padding: 24px 35px;
    box-sizing: border-box;
    border-radius: 15px;
}

.contacto-hablemos h2 {
    color: white;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 75px;
    margin: 0;
    margin-right: 40px;
}

.contacto-hablemos .button-main {
    font-size: 26px;
}

.button-contacto img {
    width: 60px;
    transform: rotate(30deg);
    transition: all 300ms ease-in-out;
}

.button-contacto img:hover {
    transform: rotate(0deg);
}

@media (max-width: 1400px) {
    .contacto-hablemos h2 {
        font-size: 54px;
    }

    .contacto-hablemos .button-main {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .contacto-hablemos-container {
        padding: 40px 20px;
    }

    .contacto-hablemos h2 {
        font-size: 48px;
        line-height: 1;
        margin: 0 0 10px 0;
        text-align: center;
    }

    .contacto-hablemos {
        flex-direction: row;
    }

    .button-contacto img {
        width: 40px;
    }
}


/* Contacto Agenda */

.contacto-agenda-container {
    padding: 60px 40px;
    background: linear-gradient(90deg, #24135F 0%, #0071B9 100%);;
}

.contacto-agenda {
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.contacto-agenda h2 {
    color: #FFF;
    font-size: 72px;
    font-weight: 700;
}

.contacto-agenda .button-main {
    font-size: 26px;
    font-weight: 400;
    padding: 16px 56px;
}

.contacto-agenda .button-main:hover {
    background-color: white;
}

@media (max-width: 1400px) {
    .contacto-agenda h2 {
        font-size: 50px;
        line-height: 1.1;
    }

    .contacto-agenda .button-main {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .contacto-agenda {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}



















