:root {
  /* ----- COLORES MODO CLARO ----- */
  --bg-hero: linear-gradient(135deg, #345098 0%, #20325e 100%);
  --body-base: #F0F2EF;
  --body-secondary: #20325e;
  --body-details: #E0E0E0;
  --text-color-base: #666;
  --text-color-secondary: #fff;
  --accent-color: #0da44d;

}

.darkmode {
  /* ----- COLORES MODO OSCURO ----- */
  --bg-hero: linear-gradient(135deg, #2F3637 0%, #4B5658 100%);
  --body-base: #2F3637;
  --body-secondary: #464F51;
  --body-details: #5F6B6D;
  --text-color-base: #fff;
  --text-color-secondary: #fff;
  --accent-color: #f69911;
}

/* HERO CONTACTO */
.contactoHeroSection {
  background:
    var(--bg-hero),
    url('../imgs/ref/compartir-documentos-con-graficos-vista-superior-de-los-trabajadores-de-oficina-en-ropa-clasica-sentados-cerca-de-la-mesa-usando-una-computadora-portatil-y-documentos.jpg') center/cover no-repeat;
  padding: 80px 0 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

.contenedorContactoHero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contenidoContactoHero {
  animation: fadeInUp 1s ease-out;
}

.tituloContactoHero {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  text-shadow: 0 2px 12px rgba(32, 50, 94, 0.10);
}

.textoContactoEstatico {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #BEBEBE;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.textoContactoAnimado {
  display: block;
  color: var(--accent-color);
  font-size: 1.7rem;
  font-weight: 800;
  min-height: 3.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(13, 164, 77, 0.10);
  animation: resaltarTexto 2s infinite alternate;
}

@keyframes resaltarTexto {
  0% {
    filter: brightness(1);
  }

  100% {
    filter: brightness(1.15) drop-shadow(0 0 8px #0DA44D44);
  }
}

.estadisticasContactoHero {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.estadisticaContactoHero {
  text-align: center;
  background: rgba(32, 50, 94, 0.18);
  border-radius: 18px;
  padding: 18px 24px;
  min-width: 120px;
  box-shadow: 0 4px 16px 0 rgba(32, 32, 32, 0.10);
  margin-bottom: 8px;
}

.numeroEstadisticaContactoHero {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  font-family: 'Montserrat', sans-serif;
}

.textoEstadisticaContactoHero {
  font-size: 1rem;
  opacity: 0.85;
  margin-top: 4px;
  color: #fff;
}

.botonHeroContacto {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(13, 164, 77, 0.3);
  margin-top: 18px;
}

.botonHeroContacto:hover {
  background: var(--accent-color);
  color: #fff;
  filter: brightness(1.08);
}

.imagenContactoHero img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(32, 50, 94, 0.18);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* FORMULARIO */
.contactoFormSection {
  background: #162653;
  padding: 48px 0 32px;
}

/* NUEVO FORMULARIO DE CONTACTO */
.contacto-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: #20325E;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(32, 32, 32, 0.15);
  padding: 40px 32px 32px 32px;
  width: 100%;
  box-sizing: border-box;
}

.contacto-form-nuevo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-form-titulo {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 24px 0;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
}

.form-group input,
.form-group textarea {
  background: #162653;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(32, 32, 32, 0.10);
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--accent-color);
  border: 1px solid var(--body-details);
  background: #1a2a4a;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}

.contacto-form-boton {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  width: 100%;
  box-sizing: border-box;
}

.contacto-form-boton:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px 0 rgba(13, 164, 77, 0.3);
}

.contacto-form-boton:active {
  transform: translateY(0);
}

/* RESPONSIVIDAD DEL FORMULARIO */
@media (max-width: 768px) {
  .contacto-form-container {
    max-width: 90%;
    padding: 32px 24px 24px 24px;
  }

  .contacto-form-titulo {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .form-group {
    gap: 6px;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .contacto-form-boton {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .contacto-form-container {
    max-width: 80%;
    padding: 28px 20px 20px 20px;
  }

  .contacto-form-titulo {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .form-group {
    gap: 5px;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .form-group textarea {
    min-height: 70px;
  }

  .contacto-form-boton {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .contacto-form-container {
    max-width: 80%;
    padding: 24px;
  }

  .contacto-form-titulo {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .form-group {
    gap: 4px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px 10px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .form-group textarea {
    min-height: 60px;
  }

  .contacto-form-boton {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
}

/* CANALES DE CONTACTO */
.contactoCanalesSection {
  background: #162653;
  padding: 32px 0 48px;
  color: #fff;
  text-align: center;
}

.lineaDivisoriaContacto {
  border: none;
  border-top: 2px solid #0DA44D;
  width: 80px;
  margin: 0 auto 24px auto;
}

.subtituloCanalesContacto {
  color: #0DA44D;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.listaCanalesContacto {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
}

.listaCanalesContacto li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #fff;
}

.listaCanalesContacto a {
  color: #0DA44D;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.listaCanalesContacto a:hover {
  color: #0bb03e;
}

.contacto-form-flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contacto-cards-canales {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 270px;
  flex: 1;
}

.canal-card {
  background: #20325E;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(32, 32, 32, 0.10);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.canal-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(13, 164, 77, 0.13);
  border-color: #0DA44D;
  background: #223366;
}

.canal-icono {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.canal-icono .icono-svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  vertical-align: middle;
}

.canal-titulo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0DA44D;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.canal-desc {
  font-size: 1rem;
  color: #BEBEBE;
  margin-bottom: 16px;
  text-align: center;
}

.canal-boton {
  background: #0DA44D;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(13, 164, 77, 0.10);
  margin-top: 4px;
  display: inline-block;
}

.canal-boton:hover {
  background: #0bb03e;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(13, 164, 77, 0.18);
}

.canal-boton-linkedin {
  background: #0077b5;
}

.canal-boton-linkedin:hover {
  background: #005983;
}

.canal-boton-email {
  background: #20325E;
  color: #0DA44D;
  border: 1.5px solid #0DA44D;
}

.canal-boton-email:hover {
  background: #0DA44D;
  color: #fff;
}

.canal-boton-telefono {
  background: #20325E;
  color: #0DA44D;
  border: 1.5px solid #0DA44D;
}

.canal-boton-telefono:hover {
  background: #0DA44D;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contenedorContactoHero {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .imagenContactoHero img {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .contacto-form-container {
    padding: 24px 8px 24px 8px;
    max-width: 100vw;
    border-radius: 18px;
  }

  .tituloContactoHero {
    font-size: 2rem;
  }

  .textoContactoAnimado {
    font-size: 1.1rem;
  }

  .estadisticasContactoHero {
    gap: 12px;
  }

  .estadisticaContactoHero {
    padding: 10px 8px;
    min-width: 80px;
  }
}

@media (max-width: 1000px) {
  .contacto-form-flex {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .contacto-cards-canales {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    min-width: 0;
  }

  .canal-card {
    min-width: 160px;
    flex: 1;
  }
}

@media (max-width: 700px) {
  .contacto-cards-canales {
    flex-direction: column;
    gap: 16px;
  }

  .canal-card {
    min-width: 0;
    padding: 18px 10px 14px 10px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.contacto-metodos-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  flex: 1;
  margin-top: 0;
  padding: 0 10%;
  box-sizing: border-box;
}

.metodos-titulo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #20325E;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-align: center;
}

.metodos-texto {
  font-size: 1rem;
  color: #666;
  margin-bottom: 18px;
  text-align: center;
}

.contacto-cards-canales.cuadradas {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
}

.canal-card.cuadrada {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 2px 8px 0 rgba(32, 32, 32, 0.06);
  width: 140px;
  height: 140px;
  min-width: 120px;
  min-height: 120px;
  max-width: 160px;
  max-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  cursor: pointer;
  padding: 0 8px;
  position: relative;
  overflow: hidden;
}

.canal-card.cuadrada:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(13, 164, 77, 0.10);
  border-color: #0DA44D;
}

.canal-icono.grande {
  font-size: 2.2rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.canal-icono .icono-svg {
  width: 36px;
  height: 36px;
  margin-left: 2px;
}

.canal-icono .logo-linkedin {
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto !important;
  display: block;
}

.canal-icono .logo-whatsapp {
  width: 54px !important;
  height: 54px !important;
  margin: 0 auto !important;
  display: block;
}

.canal-titulo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #20325E;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-align: center;
}

.canal-boton {
  background: #0DA44D;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 7px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(13, 164, 77, 0.10);
  margin-top: 4px;
  display: inline-block;
}

.canal-boton:hover {
  background: #0bb03e;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(13, 164, 77, 0.18);
}

.canal-boton-linkedin {
  background: #0077b5;
}

.canal-boton-linkedin:hover {
  background: #005983;
}

@media (max-width: 1000px) {
  .contacto-form-flex {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .contacto-cards-canales.cuadradas {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .canal-card.cuadrada {
    width: 120px;
    height: 120px;
    min-width: 90px;
    min-height: 90px;
    max-width: 140px;
    max-height: 140px;
  }
}

@media (max-width: 700px) {
  .contacto-cards-canales.cuadradas {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .canal-card.cuadrada {
    width: 100px;
    height: 100px;
    min-width: 70px;
    min-height: 70px;
    max-width: 120px;
    max-height: 120px;
    padding: 0 2px;
  }

}

/* Sección extra */
.contacto-extra-section {
  background: #f8f9fa;
  padding: 48px 0 48px 0;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.extra-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(32, 32, 32, 0.06);
  padding: 32px 18px 24px 18px;
  text-align: center;
  border: 1.5px solid #e0e0e0;
  transition: box-shadow 0.18s, border 0.18s;
}

.extra-card:hover {
  box-shadow: 0 8px 24px 0 rgba(13, 164, 77, 0.10);
  border-color: #0DA44D;
}

.extra-card h3 {
  color: #20325E;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.extra-card p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.metodos-titulo.mejorado {
  color: var(--accent-color);
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(13, 164, 77, 0.08);
}

.metodos-texto.mejorado {
  color: #e0e6f7;
  font-size: 1.08rem;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.5;
}

.metodos-destacado {
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1.15rem;
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
}

.contacto-cards-canales.cuadradas.mejoradas {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 18px;
}

.metodo-card {
  border-radius: 18px;
  width: 200px;
  height: 200px;
  min-width: 160px;
  min-height: 160px;
  max-width: 240px;
  max-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: box-shadow 0.18s, border 0.18s, background 0.18s;
}

.metodo-card:hover {
  box-shadow: 0 8px 32px 0 rgba(90, 110, 231, 0.13), 0 4px 18px 0 rgba(255, 255, 255, 0.18) inset;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.28);
}

.metodo-icono {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

.metodo-icono img {
  width: 90px;
  height: 90px;
  display: block;
}

.metodo-titulo {
  color: #20325E;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  transition: color 0.18s;
}

.metodo-card:hover .metodo-titulo {
  color: #f5f6fa;
}

.metodo-boton {
  width: 90%;
  min-height: 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 18px;
  margin-top: auto;
  margin-bottom: 8px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  border: none;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

.metodo-boton.whatsapp {
  background: #0DA44D;
  color: #fff;
}

.metodo-boton.whatsapp:hover {
  background: #0bb03e;
}

.metodo-boton.linkedin {
  background: #5a6ee7;
  color: #fff;
}

.metodo-boton.linkedin:hover {
  background: #3a4fcf;
}

@media (max-width: 900px) {
  .contacto-metodos-container {
    padding: 0 8%;
  }

  .contacto-cards-canales.cuadradas.mejoradas {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .metodo-card {
    width: 160px;
    height: 160px;
    min-width: 140px;
    min-height: 140px;
    max-width: 180px;
    max-height: 180px;
  }

  .metodo-icono img {
    width: 75px;
    height: 75px;
  }

  .metodo-titulo {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .metodo-boton {
    min-height: 36px;
    font-size: 0.95rem;
    padding: 0 14px;
  }
}

@media (max-width: 600px) {
  .contacto-metodos-container {
    padding: 0 5%;
  }

  .contacto-cards-canales.cuadradas.mejoradas {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }

  .metodo-card {
    width: 140px;
    height: 140px;
    min-width: 120px;
    min-height: 120px;
    max-width: 160px;
    max-height: 160px;
  }

  .metodo-icono img {
    width: 65px;
    height: 65px;
  }

  .metodo-titulo {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .metodo-boton {
    min-height: 32px;
    font-size: 0.9rem;
    padding: 0 12px;
  }
}

.canal-card.cuadrada.pastel {
  background: #a3d0e6;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 8px 18px 8px;
  width: 160px;
  height: 160px;
  min-width: 120px;
  min-height: 120px;
  max-width: 200px;
  max-height: 200px;
  box-sizing: border-box;
}

.canal-icono.grande {
  padding-top: 24px;
}

.canal-icono.grande .logo-whatsapp.grande {
  width: 100px;
  height: 100px;
  padding-top: 0;
}

.canal-icono.grande .logo-linkedin {
  width: 68px;
  height: 68px;
}

.canal-titulo {
  color: #20325E;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
  letter-spacing: 0.5px;
  text-align: center;
}

.canal-boton {
  width: 90%;
  min-height: 36px;
  font-size: 0.93rem;
  font-weight: 700;
  border-radius: 18px;
  margin-top: auto;
  margin-bottom: 8px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.canal-boton-linkedin {
  font-weight: 700;
}

.estadisticas-cards-section {
  background: #fafafd;
  padding: 48px 0 48px 0;
}

.estadisticas-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.estadistica-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(32, 32, 32, 0.08);
  padding: 32px 20px 24px 20px;
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #f0f0f0;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpStats 0.7s cubic-bezier(.4, 0, .2, 1) forwards;
}

.estadistica-card:nth-child(1) {
  animation-delay: 0.1s;
}

.estadistica-card:nth-child(2) {
  animation-delay: 0.25s;
}

.estadistica-card:nth-child(3) {
  animation-delay: 0.4s;
}

.estadistica-card:nth-child(4) {
  animation-delay: 0.55s;
}

.estadistica-card:hover {
  box-shadow: 0 8px 32px 0 rgba(90, 110, 231, 0.18), 0 0 0 6px #e6f6ff;
  transform: translateY(-6px) scale(1.04);
  animation: pulseShadow 0.7s;
}

@keyframes fadeInUpStats {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 8px 32px 0 rgba(90, 110, 231, 0.18), 0 0 0 0 #e6f6ff;
  }

  50% {
    box-shadow: 0 8px 32px 0 rgba(90, 110, 231, 0.18), 0 0 0 16px #e6f6ff44;
  }

  100% {
    box-shadow: 0 8px 32px 0 rgba(90, 110, 231, 0.18), 0 0 0 0 #e6f6ff;
  }
}

.estadistica-card-numero {
  color: #5a6ee7;
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
}

.estadistica-card-texto {
  color: #222;
  font-size: 1.18rem;
  text-align: center;
}

/* Breakpoint para 3 arriba y 1 abajo */
@media (max-width: 1000px) {
  .estadisticas-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Breakpoint para 2 y 2 */
@media (max-width: 768px) {
  .estadisticas-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Breakpoint para columna única */
@media (max-width: 480px) {
  .estadisticas-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 300px;
  }

  .estadistica-card {
    height: 140px;
    padding: 24px 16px 20px 16px;
  }
}

.contacto-extra-section.degradado-rosa {
  background: var(--bg-hero);
  padding: 48px 0 48px 0;
}

.extra-titulo.celeste {
  color: #5a6ee7;
  font-size: 2.3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(90, 110, 231, 0.08);
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.extra-card {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(32, 32, 32, 0.10), 0 3px 12px 0 rgba(255, 255, 255, 0.18) inset;
  padding: 32px 20px 24px 20px;
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2.5px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  transition: box-shadow 0.18s, border 0.18s, background 0.18s;
}

.extra-card:hover {
  box-shadow: 0 8px 32px 0 rgba(90, 110, 231, 0.13), 0 4px 18px 0 rgba(255, 255, 255, 0.22) inset;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.38);
}

.extra-card-titulo.celeste.grande {
  color: #5a6ee7;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 1px;
}

.extra-card p {
  color: #222;
  font-size: 1.05rem;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

.extra-icono {
  display: none;
}

/* Breakpoint para 3 arriba y 1 abajo */
@media (max-width: 1000px) {
  .extra-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Breakpoint para 2 y 2 */
@media (max-width: 768px) {
  .extra-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Breakpoint para columna única */
@media (max-width: 480px) {
  .extra-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 300px;
  }

  .extra-card {
    height: 180px;
    padding: 24px 16px 20px 16px;
  }
}

/* Breakpoint para pantallas muy pequeñas */
@media (max-width: 600px) {
  .extra-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 320px;
    padding: 0 15px;
  }

  .extra-card {
    height: 200px;
    padding: 28px 20px 24px 20px;
    min-height: 180px;
  }

  .extra-card-titulo.celeste.grande {
    font-size: 1.25rem;
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .extra-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
  }
}

/* Breakpoint para pantallas extra pequeñas */
@media (max-width: 400px) {
  .extra-grid {
    max-width: 280px;
    padding: 0 10px;
    gap: 16px;
  }

  .extra-card {
    height: 220px;
    padding: 24px 16px 20px 16px;
    min-height: 200px;
  }

  .extra-card-titulo.celeste.grande {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .extra-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
  }
}

/* Botones de canales de contacto (WhatsApp y LinkedIn) */
.metodo-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.15s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.metodo-card:hover {
  background: linear-gradient(135deg, #20325e 0%, #764ba2 100%);
  transform: translateY(-4px) scale(1.03);
  border: 2.5px solid #bbb;
}

.metodo-card.linkedin:hover {
  border: 2.5px solid #5a6ee7;
}

.metodo-card.whatsapp:hover {
  border: 2.5px solid #1ed760;
}