.elementor-61 .elementor-element.elementor-element-d92ad60{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-61 .elementor-element.elementor-element-71819e5{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-411de04 */.contacto-cards-premium {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.contacto-head {
  text-align: center;
  margin-bottom: 30px;
}

.contacto-head h2 {
  margin: 0 0 8px;
  font-size: 36px;
  color: #0f172a; /* oscuro elegante */
}

.contacto-head p {
  font-size: 15px;
  color: #64748b; /* gris moderno */
}

/* GRID */
.contacto-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* TARJETA */
.contacto-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  background: #eef3f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-height: 120px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

/* HOVER TARJETA */
.contacto-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border: 1px solid #3ea8fc;
}

/* ICONO */
.contacto-card-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3ea8fc, #1d8cf8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* CONTENIDO */
.contacto-card-contenido {
  padding: 16px 18px;
}

.contacto-card-contenido h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #1e293b;
}

.contacto-card-contenido p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.telefono {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

/* LINK */
.contacto-card-contenido a {
  font-size: 13px;
  font-weight: 600;
  color: #1d8cf8;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

/* EFECTO ILUMINACIÓN */
.contacto-card:hover .contacto-card-contenido a {
  color: #ffffff;
  background: #1d8cf8;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(62,168,252,0.35);
}

/* TARJETA CORREO */
.correo-card {
  grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .contacto-lista {
    grid-template-columns: 1fr;
  }

  .correo-card {
    grid-column: span 1;
  }

  .contacto-cards-premium {
    padding: 50px 14px;
  }

  .contacto-head h2 {
    font-size: 28px;
  }
}/* End custom CSS */