/* ================================================= */
/*  css/tutores.css – Diseño WOW 2025 MEJORADO       */
/*  Estilo para tutores.html, con mejoras en         */
/*  responsividad, videos verticales y animaciones   */
/* ================================================= */

body {
  background: linear-gradient(135deg, #fdfdfd 0%, #f5f5f5 100%);
  min-height: 100vh;
  font-family: system-ui, -apple-system, sans-serif;
} 

/* Tarjeta principal gigante, igual que admisiones */
.tutores-container {
  max-width: 1000px;
  margin: 50px auto;
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(96,13,24,0.18);
  position: relative;
}

/* Cabecera con efecto brillo sutil, mismo que admisiones */
.tutores-header {
  background: linear-gradient(135deg, #600d18 0%, #8b1125 100%);
  color: white;
  padding: 60px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tutores-header::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.06) 35px, rgba(255,255,255,0.06) 70px);
  animation: shine 18s linear infinite;
}
@keyframes shine {
  0%   { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}
.tutores-header h1 {
  font-size: 3.4rem;
  margin: 0;
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}
.tutores-header p {
  font-size: 1.5rem;
  margin-top: 15px;
  opacity: 0.96;
  position: relative;
  z-index: 2;
}

/* Contenido con flex para mejor adaptación */
.tutores-content {
  padding: 55px 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Sección introductoria */
.intro-section, .info-block-support{
  background: #f9f9f9;
  padding: 32px;
  border-radius: 20px;
  border-left: 7px solid #b8911f;
  transition: all 0.35s ease;
}


.intro-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.intro-section p {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

/* Sección de APK */
.apk-section {
  background: #f9f9f9;
  padding: 32px;
  border-radius: 20px;
  border-left: 7px solid #b8911f;
  transition: all 0.35s ease;
}
.apk-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.apk-section h2 {
  color: #600d18;
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.apk-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}
.compatibility-note {
  font-style: italic;
  color: #666;
  margin-bottom: 25px;
}

.important-note {
  background-color: #fff3e0;
  border: 1px solid #ffb74d;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #333;
}

.important-note strong {
  color: #600d18;
}

.form-link {
  color: #600d18;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form-link:hover {
  color: #b8911f;
}

.icon-gold {
  color: #b8911f;
  font-size: 1.8rem;
}

.icon-maroon {
  color: #600d18;
  font-size: 1.8rem;
}

.icon-warning {
  color: #ffb74d;
  font-size: 1.2rem;
  margin-right: 8px;
}

/* Bloques de información, con hover igual */
.info-block {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}
.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.info-block h3 {
  color: #600d18;
  font-size: 1.6rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-block h3 i {
  font-size: 1.8rem;
  color: #b8911f;
}

/* Estilos para videos – optimizados para verticales (aspect-ratio 9:16) */
.video-block {
  text-align: center;
}
.tutor-video {
  width: 100%;
  max-width: 400px; /* Limite para videos verticales */
  aspect-ratio: 9 / 16; /* Relación para videos verticales como TikTok/Shorts */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}
.tutor-video:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(96,13,24,0.3);
}

/* Botón de descarga – con animación mejorada */
.download-block {
  text-align: center;
}
.btn-download {
  display: inline-block;
  background: linear-gradient(135deg, #b8911f, #e6c852);
  color: #600d18;
  font-weight: 800;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.35rem;
  margin: 25px 0;
  box-shadow: 0 10px 30px rgba(184,145,31,0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-download::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.3);
  transition: left 0.5s ease;
}
.btn-download:hover::before {
  left: 100%;
}
.btn-download:hover {
  transform: translateY(-6px) rotate(2deg);
  box-shadow: 0 20px 45px rgba(184,145,31,0.7);
  color: white;
}
.download-note {
  font-size: 0.95rem;
  color: #666;
  margin-top: 15px;
}

/* Fecha destacada – con pulso animado */
.fecha-destacada {
  background: #600d18;
  color: #b8911f;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 40px 0;
  box-shadow: 0 12px 35px rgba(96,13,24,0.35);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Footer con elevación, igual que admisiones */
.footer-new {
  margin-top: 120px;
  box-shadow: 0 -15px 40px rgba(0,0,0,0.1);
}

/* Mejoras en Responsive – mejor adaptación para teléfonos */
@media (max-width: 768px) {
  .tutores-header {
    padding: 50px 20px;
  }
  .tutores-header h1 { font-size: 2.5rem; }
  .tutores-header p { font-size: 1.2rem; }
  .tutores-content { 
    padding: 40px 20px;
    gap: 20px;
  }
  .intro-section, .apk-section { 
    padding: 25px;
  }
  .apk-section h2 { font-size: 1.6rem; }
  .info-block { 
    padding: 20px;
    margin: 15px 0;
  }
  .info-block h3 { font-size: 1.4rem; }
  .btn-download { 
    font-size: 1.2rem; 
    padding: 16px 32px; 
  }
  .tutor-video { 
    max-width: 100%; 
    aspect-ratio: 9 / 16; /* Mantiene vertical en móviles */
  }
  .fecha-destacada { 
    font-size: 1.5rem; 
    padding: 20px; 
    margin: 30px 0;
  }
  .footer-grid-new {
    grid-template-columns: 1fr; /* Apila columnas en móviles */
    gap: 30px;
  }
  .footer-col {
    text-align: center;
  }
  .mapa iframe {
    height: 250px;
  }
}

@media (max-width: 992px) {
  /* Forzamos que se vea el menú aunque sea una sola opción, igual que admisiones */
  .nav-list {
    display: flex !important;
    justify-content: center;
    background: transparent;
  }

  /* El <li> y el <a> usan exactamente el estilo del menú principal */
  .nav-list > li > a {
    background: #b8911f;           /* mismo fondo dorado */
    color: white !important;       /* mismo texto blanco */
    padding: 18px 40px;            /* mismo padding que en PC */
    font-weight: 600;
    transition: all 0.3s ease;
  }

  /* Hover exactamente igual que en PC */
  .nav-list > li:hover > a,
  .nav-list > li > a:active {
    background: #600d18;
    color: #b8911f !important;
  }

  /* Ocultamos el botón hamburguesa porque no lo necesitamos */
  .menu-toggle { 
    display: none !important; 
  }
}

/* Animación de fade-in para bloques al cargar */
.intro-section, .apk-section, .info-block, .info-block-support {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.intro-section { animation-delay: 0.2s; }
.apk-section { animation-delay: 0.4s; }
.info-block:nth-child(1) { animation-delay: 0.6s; }
.info-block:nth-child(2) { animation-delay: 0.8s; }
.info-block:nth-child(3) { animation-delay: 1.0s; }
.info-block-support:nth-child(1) { animation-delay: 0.6s; }
.info-block-support:nth-child(2) { animation-delay: 0.8s; }
.info-block-support:nth-child(3) { animation-delay: 1.0s; }
.fecha-destacada { animation-delay: 1.2s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}