@import url(variables.css);

/* Contacto equipo */

.contacto-equipo-container {
  background-color: white;
  padding: var(--margen_secciones);
  box-sizing: border-box;
}

.contacto-equipo {
  display: flex;
  flex-flow: wrap;
  max-width: 1600px;
  width: 100%;
  gap: 30px;
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
}

.contacto-equipo__title {
  color: var(--color_titulos);
  font-size: var(--font_titulos);
  font-weight: var(--grosor_titulos);
  line-height: var(--line_height_titulos);
  padding-bottom: 120px;
  text-align: left;
  display: flex;
  margin: 0px;
}

.contacto-equipo-card {
  width: calc(16% - 15px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-equipo-card-image {
  background: #1b1233;
  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: var(--color_textos);
  font-size: var(--font_textos);
  font-style: normal;
  font-weight: 500;
}

.contacto-equipo-card-text a {
  text-decoration: none;
  color: #1b1233;
}

.contacto-equipo-card-text label {
  color: #1b1233;
  font-size: 14px;
  font-weight: 300;
  line-height: 10px;
}

.contacto-info {
  margin: 120px auto 0px auto;
  max-width: 1600px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #1b1233;
  font-size: 24px;
  font-weight: 300;
}

.contacto-info a {
  color: #1b1233;
  text-decoration: none;
}

.contacto-info span {
  color: #1b1233;
  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: 100%;
  }

  .contacto-equipo-card-image {
    height: 100%;
  }
}

@media (max-width: 500px) {
  .contacto-equipo__title {
    align-items: start;
    margin: 0px;
    font-size: 42px;
  }
}

/* Contacto Hablemos */

.contacto-hablemos-container {
  padding: var(--margen_secciones);
  padding-top: 0px;
  background-color: white;
  box-sizing: border-box;
}

.contacto-hablemos {
  width: 100%;
  max-width: 100%;
  display: flex;
  margin: 0px;
  justify-content: space-between;
  align-items: center;
  background-color: #0f9ca0;
  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;
  }
}
