.hero-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 108px);
  padding: 40px 2%;
  background-color: #ffffff;
}
.hero-contacto .contacto-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  padding: 100px 20px;
  text-align: center;
  background-color: var(--gris-claro);
  border-radius: 150px;
}
.hero-contacto .contacto-banner h1 {
  margin-bottom: 30px;
  color: #1a1a1a;
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
}
@media (max-width: 992px) {
  .hero-contacto .contacto-banner {
    padding: 80px 20px;
    border-radius: 60px;
  }
}
@media (max-width: 576px) {
  .hero-contacto {
    min-height: auto;
    padding: 20px;
  }
  .hero-contacto .contacto-banner {
    padding: 60px 15px;
    border-radius: 40px;
  }
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 12px 40px;
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  background-color: #90ea75;
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.btn-whatsapp:hover {
  background-color: #7ce05e;
  transform: scale(1.05);
}
.btn-whatsapp svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
}
.slogan-contacto {
  margin: 0;
  color: #000;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 1px;
}
.highlight-green {
  color: #90ea75;
}
.highlight-yellow {
  color: #f5b041;
}
.highlight-blue {
  color: #5c7cfa;
}
.seccion-oficina {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
}
.seccion-oficina .oficina-wrapper {
  display: flex;
  flex-direction: column;
}
.seccion-oficina .oficina-wrapper .oficina-header {
  padding: 30px 20px 40px;
  text-align: center;
  background-color: var(--gris-claro);
  border-radius: 40px 40px 0 0;
}
.seccion-oficina .oficina-wrapper .oficina-header h2 {
  margin: 0;
  color: #000;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}
.seccion-oficina .oficina-wrapper .oficina-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-top: -20px;
  padding: 40px 50px;
  background-color: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.seccion-oficina .oficina-wrapper .oficina-body .mapa-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.seccion-oficina .oficina-wrapper .oficina-body .mapa-col .linea-decorativa {
  width: 85%;
  height: 2px;
  margin-bottom: 10px;
  background-color: #1a1a1a;
}
.seccion-oficina .oficina-wrapper .oficina-body .mapa-col .mapa-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.seccion-oficina .oficina-wrapper .oficina-body .info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.seccion-oficina .oficina-wrapper .oficina-body .info-col .info-card {
  position: relative;
  padding: 25px 30px 25px 50px;
  overflow: hidden;
  border-radius: 15px;
}
.seccion-oficina .oficina-wrapper .oficina-body .info-col .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 25px;
}
.seccion-oficina .oficina-wrapper .oficina-body .info-col .info-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
}
.seccion-oficina .oficina-wrapper .oficina-body .info-col .info-card p {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card
  p:last-child {
  margin-bottom: 0;
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-horarios {
  background-color: rgba(167, 218, 143, 0.3);
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-horarios
  h3 {
  color: #86c471;
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-horarios::before {
  background-color: #a7da8f;
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-telefono {
  background-color: rgba(245, 176, 65, 0.25);
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-telefono
  h3 {
  color: #d68910;
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-telefono::before {
  background-color: #f5b041;
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-correo {
  background-color: rgba(92, 124, 250, 0.2);
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-correo
  h3 {
  color: #4361ee;
}
.seccion-oficina
  .oficina-wrapper
  .oficina-body
  .info-col
  .info-card.card-correo::before {
  background-color: #5c7cfa;
}
@media (max-width: 992px) {
  .seccion-oficina .oficina-wrapper .oficina-body {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .seccion-oficina .oficina-wrapper .oficina-body .mapa-col .mapa-iframe {
    min-height: 350px;
  }
}
@media (max-width: 576px) {
  .seccion-oficina {
    padding: 40px 3%;
  }
  .seccion-oficina .oficina-wrapper .oficina-header {
    border-radius: 25px 25px 0 0;
  }
  .seccion-oficina .oficina-wrapper .oficina-body {
    padding: 25px 15px;
    border-radius: 15px;
  }
}
