
/* --- Títulos de sección --- */
.section-title {
  font-family: 'Montserrat', 'Poetsen One', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  -webkit-text-stroke: 2px #38bdf8;
  text-shadow:
    2px 2px 0 #38bdf8,
    -2px 2px 0 #38bdf8,
    2px -2px 0 #38bdf8,
    -2px -2px 0 #38bdf8,
    0px 2px 0 #38bdf8,
    2px 0px 0 #38bdf8,
    -2px 0px 0 #38bdf8,
    0px -2px 0 #38bdf8,
    0 4px 16px rgba(30,58,138,0.18), 0 1px 0 #fff;
  letter-spacing: 2px;
  animation: fade-in-down 1s cubic-bezier(.39,.575,.565,1) both;
}

@keyframes fade-in-down {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Subtítulos de sección --- */
.section-subtitle {
  font-family: 'Montserrat', 'Poetsen One', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #111;
  -webkit-text-stroke: 1px #38bdf8;
  text-shadow:
    1px 1px 0 #38bdf8,
    -1px 1px 0 #38bdf8,
    1px -1px 0 #38bdf8,
    -1px -1px 0 #38bdf8,
    0px 1px 0 #38bdf8,
    1px 0px 0 #38bdf8,
    -1px 0px 0 #38bdf8,
    0px -1px 0 #38bdf8,
    0 2px 8px rgba(56,189,248,0.12);
  letter-spacing: 1px;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  animation: fade-in 1.2s 0.2s both;
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Decoración extra para títulos */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
  background: linear-gradient(90deg, #38bdf8 0%, #a78bfa 100%);
  box-shadow: 0 2px 8px #a78bfa44;
  animation: fade-in 1.2s 0.4s both;
} 

.section-title-darkfade {
  font-family: 'Montserrat', 'Poetsen One', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  -webkit-text-stroke: 2px #38bdf8; /* Borde celeste para navegadores Chromium */
  text-shadow:
    2px 2px 0 #38bdf8,
    -2px 2px 0 #38bdf8,
    2px -2px 0 #38bdf8,
    -2px -2px 0 #38bdf8,
    0px 2px 0 #38bdf8,
    2px 0px 0 #38bdf8,
    -2px 0px 0 #38bdf8,
    0px -2px 0 #38bdf8,
    0 4px 16px rgba(30,58,138,0.18), 0 1px 0 #fff;
  animation: fade-in-down 1s cubic-bezier(.39,.575,.565,1) both;
} 

/* Estilos 3D y profesionales para nombres y cargos del equipo */
.equipo-nombre {
  font-family: 'Montserrat', 'Poetsen One', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px #38bdf8;
  text-shadow:
    2px 2px 8px #1e3a8a,
    0 4px 16px #38bdf899,
    0 1px 0 #fff;
  filter: drop-shadow(0 2px 8px #0006);
}
.equipo-cargo {
  font-family: 'Montserrat', 'Poetsen One', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 1px;
  text-shadow:
    1px 1px 6px #1e3a8a88,
    0 1px 0 #fff;
}
/* Tarjeta glassmorphism y animación */
.equipo-card {
  background: rgba(30, 58, 138, 0.25);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(56, 189, 248, 0.25);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.equipo-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 16px 40px 0 rgba(56, 189, 248, 0.25);
} 

/* Respuestas de Preguntas Frecuentes con fuente y estilo destacado */
.faq-respuesta {
  font-family: 'Poetsen One', 'Montserrat', cursive, sans-serif;
  font-size: 1.13rem;
  color: #000000;
  background: white;
  border-radius: 0 1rem 1rem 0;
  padding: 1rem 1.2rem;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 12px #38bdf822;
  font-weight: 500;
  letter-spacing: 0.2px;
} 