* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Efectos de iluminación de fondo */
.background-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.light-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.3) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

.light-effect:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.light-effect:nth-child(2) {
  top: 60%;
  right: 15%;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.2) 0%,
    transparent 70%
  );
  animation-delay: 2s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 40px;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #4f9eff; /* Azul moderno */
  cursor: pointer;
  transition: color 0.3s;
}

.logo:hover {
  color: #00d4ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #4f9eff;
  transition: width 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #4f9eff;
}

/* --- Responsive --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 200px;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Main Content */
main {
  margin-top: 80px;
  padding: 2rem;
}

.hero-section {
  text-align: center;
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #007bff, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #cccccc;
}

/* Teams Section */
.teams-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffc107;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  padding: 2rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 123, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.team-card:hover::before {
  opacity: 1;
  animation: shine 1s ease-in-out;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 123, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.team-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  z-index: 1;
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.team-description {
  color: #cccccc;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Info Cards */
.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 2rem;
  border-left: 4px solid #007bff;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(0, 123, 255, 0.1);
  transform: translateX(10px);
}

.info-card h3 {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Footer
        footer {
            background: rgba(0, 0, 0, 0.8);
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            border-top: 2px solid rgba(0, 123, 255, 0.3);
        } */

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .teams-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }
}

/* Botón CTA */
.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  margin-top: 2rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.5);
}
/* Video Section */
.video-section {
  max-width: 900px;
  margin: 4rem auto;
  text-align: center;
  padding: 2rem;
}

.video-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.video-container {
  width: 400px; /* tamaño más pequeño */
  height: 350px; /* simula un reel vertical */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Sponsors Section */
.sponsors-section {
  max-width: 1200px;
  margin: 4rem auto;
  text-align: center;
  padding: 2rem;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* más ancho */
  gap: 3rem; /* más espacio */
  justify-items: center;
  align-items: center;
  padding: 2rem 0;
}

.sponsor-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px); 
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);

  /* 🔥 Aquí es donde amplía la tarjeta (antes 180px) */
  width: 230px;
  height: 230px;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sponsor-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.3s ease;
}

.sponsor-card:hover img {
  transform: scale(1.1);
}

.sponsor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 123, 255, 0.3);
  border-color: rgba(0, 123, 255, 0.5);
}

.team-logo {
  width: 140px; /* antes 120px → un poco más grande */
  height: 140px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* 🔹 evita que la imagen sobresalga */
}

.team-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 🔹 ajusta la imagen sin recortarla */
}

/* Footer - Versión Profesional y Limpia */
.footer {
  background: #0f0f0f;
  padding: 3.5rem 2rem 1.5rem;
  color: #e0e0e0;
  border-top: 3px solid rgba(0, 123, 255, 0.4);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Títulos */
.footer h3,
.footer h4 {
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h3::after,
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #007bff;
  border-radius: 1px;
}

/* Brand / Descripción */
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbbbbb;
  max-width: 280px;
}

/* Enlaces */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -1.2rem;
  opacity: 0;
  color: #007bff;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
  transform: translateX(8px);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -1rem;
}

/* Contacto */
.footer-contact p {
  margin: 0.75rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #cccccc;
}

.footer-contact i {
  color: #007bff;
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
}

/* WhatsApp - ESPECIAL */
.whatsapp-link {
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.whatsapp-link i {
  color: #25d366;
  font-size: 1.3rem;
}

.whatsapp-link a {
  color: #25d366 !important;
  font-weight: 500;
  text-decoration: none !important;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-link a:hover {
  color: #128c7e !important;
  transform: translateX(2px);
}

.whatsapp-link a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #25d366;
  transition: width 0.3s ease;
}

.whatsapp-link a:hover::after {
  width: 100%;
}

/* Redes Sociales */
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 123, 255, 0.15);
  color: #cccccc;
  font-size: 1.3rem;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #007bff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 0;
}

.footer-social a:hover::before {
  width: 100%;
  height: 100%;
}

.footer-social a i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: #999999;
}

/* Responsive */
@media (max-width: 640px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-links a::before,
  .footer-links a:hover {
    transform: none;
  }

  .footer-links a:hover::before {
    opacity: 1;
    left: 0;
  }

  .footer-social {
    justify-content: center;
  }
}


/* --- Sobre Nosotros --- */
/* Ajustar sección Sobre Nosotros para reducir espacio */
.about-section {
  max-width: 1200px;
  margin: 2rem auto; /* antes 4rem */
  padding: 1rem 2rem; /* antes 2rem */
  text-align: center;
}

/* Reducir margen del logo */
.about-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem; /* antes 2rem */
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #4f9eff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(79, 158, 255, 0.4);
}

/* Reducir espacio debajo del título */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.8rem; /* antes 1rem */
  color: #4f9eff;
  text-shadow: 0 0 10px rgba(79, 158, 255, 0.5);
}

/* Reducir espacio debajo del subtítulo */
.section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem; /* antes 3rem */
  line-height: 1.6;
}

/* Reducir espacio entre las tarjetas */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem; /* antes 2rem */
  justify-items: center;
}


.about-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: #4f9eff;
  box-shadow: 0 20px 40px rgba(79, 158, 255, 0.2);
}

.about-card i {
  color: #ffc107;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.about-card:hover i {
  color: #00d4ff;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-card p {
  color: #ccc;
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* Logo circular */
.about-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #4f9eff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(79, 158, 255, 0.4);
}

.about-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Galería de Fotos y Videos */
.gallery-section {
  margin-top: 4rem;
  text-align: center;
}

.gallery-section .section-title {
  color: #ffc107;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-items: center;
}

.gallery-item {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 123, 255, 0.5);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}
/* ===== Contact Section ===== */
.contact-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.contact-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #4f9eff;
  text-shadow: 0 0 10px rgba(79, 158, 255, 0.5);
}

.contact-section .section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: #4f9eff;
  box-shadow: 0 20px 40px rgba(79, 158, 255, 0.2);
}

.contact-card i {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.contact-card:hover i {
  color: #00d4ff;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-card p {
  color: #ccc;
  line-height: 1.6;
}

.contact-card a {
  color: #4f9eff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #00d4ff;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4f9eff;
  box-shadow: 0 0 10px rgba(79, 158, 255, 0.5);
}

.contact-form button {
  padding: 1rem;
  border-radius: 25px;
  border: none;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: 100%;
  }
}

/* ===== Contact Section Unificada ===== */
.contact-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
}

.contact-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #4f9eff;
  text-shadow: 0 0 10px rgba(79, 158, 255, 0.5);
}

.contact-section .section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* --- Contact Cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: #4f9eff;
  box-shadow: 0 20px 40px rgba(79, 158, 255, 0.2);
}

.contact-card i {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 1rem;
  transition: transform 0.3s, color 0.3s;
}

.contact-card:hover i {
  color: #00d4ff;
  transform: scale(1.3);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-card p,
.contact-card a {
  color: #ccc;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #00d4ff;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4f9eff;
  box-shadow: 0 0 10px rgba(79, 158, 255, 0.5);
}

.contact-form button {
  padding: 1rem;
  border-radius: 25px;
  border: none;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.5);
}

/* --- Hours & Map --- */
.contact-hours,
.contact-map,
.contact-social,
.contact-faq {
  margin: 2rem 0;
  text-align: center;
}

.contact-hours h2,
.contact-map h2,
.contact-social h2,
.contact-faq h2 {
  font-size: 1.8rem;
  color: #4f9eff;
  margin-bottom: 0.8rem;
}

.contact-hours ul,
.contact-faq ul {
  list-style: none;
  padding: 0;
}

.contact-hours li,
.contact-faq li {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-map iframe {
  width: 100%;
  max-width: 900px;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* --- Social Icons --- */
.contact-social a i {
  font-size: 2.2rem;
  margin: 0 0.5rem;
  color: #4267B2;
  transition: transform 0.3s, color 0.3s;
}

.contact-social a i:hover {
  transform: scale(1.3);
  color: #00d4ff;
}

/* --- FAQ --- */
.contact-faq h4 {
  font-size: 1.2rem;
  color: #fff;
}

.contact-faq p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: 100%;
  }
}
/* === BOTONES DE REDES EN EL HERO === */
.social-hero {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  animation: fadeIn 1.5s ease;
}

/* Estilo general */
.social-hero a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Colores específicos */
.social-hero .facebook {
  background-color: #1877f2;
}
.social-hero .instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-hero .whatsapp {
  background-color: #25d366;
}

/* Efectos hover */
.social-hero a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Animación de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adaptación a pantallas pequeñas */
@media (max-width: 768px) {
  .social-hero {
    flex-direction: column;
    gap: 15px;
    align-items: center; /* Centra las redes horizontalmente */
    justify-content: center; /* Opcional, si quieres centrar verticalmente también */
  }
  .social-hero a {
    width: 80%;
    display: flex;         /* Asegura que justify-content funcione dentro del link */
    justify-content: center; /* Centra el contenido dentro del link */
  }
}


/* Sección de Matricula acorde a la página */
.Matricula-section {
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 900px;
}

.Matricula-section .section-title {
  font-size: 2.5rem;
  color: #33ccff; /* azul brillante para resaltar */
  margin-bottom: 30px;
  font-family: 'Arial Black', sans-serif;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.Matricula {
  display: flex;
  justify-content: center;
}

.Matricula-card {
  background: linear-gradient(180deg, #1e1c3b, #282546); /* suave degradado oscuro */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
}

.Matricula-card img {
  width: 100%;
  max-width: 400px;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.Matricula-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.Matricula-card:hover img {
  transform: scale(1.03);
}

/*  Sección con video centrado */
.video-single-section {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  
}

/* Título */
.video-single-section .section-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 30px;
}

/* Contenedor del video */
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* 🔥 Video mejorado para grabaciones de celular */
.video-wrapper video {
  width: 40%;              /* Reduce el tamaño en pantallas grandes */
  max-width: 550px;        /* Evita que crezca demasiado */
  max-height: 650px;       /* Mantiene un alto controlado */
  aspect-ratio: 9/16;      /* Mantiene formato vertical sin deformarse */
  object-fit: cover;       /* Rellena sin distorsión */
  border-radius: 15px;
  outline: none;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/*Versión para celular */
@media(max-width: 768px) {
  .video-wrapper video {
    width: 85%;
    max-width: none;
    max-height: 500px;
  }
}

/* 📱 Pantallas muy pequeñas */
@media(max-width: 480px) {
  .video-wrapper video {
    width: 95%;
    max-height: 420px;
  }
}
