/* style.css actualizado con nuevas secciones, video y estilo modernizado */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background-color: #f0f4f8;
}

/* Hero futurista con video */
.hero.futurista {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 80px 20px 40px;
  overflow: hidden;
}

#heroVideo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d3e4ff;
}

.hero-buttons {
  margin-top: 85px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-light {
  background-color: white;
  color: #007bff;
}

.btn-light:hover {
  background-color: #e0e0e0;
}

.btn-glow {
  background-color: #007bff;
  color: white;
  box-shadow: 0 0 10px #007bff, 0 0 20px #007bff;
}

.btn-glow:hover {
  background-color: #005ec9;
  box-shadow: 0 0 12px #005ec9, 0 0 24px #005ec9;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0; /* 👈 Agregá esto */
  right: 0; /* 👈 Y esto */
  width: 100vw; /* 👈 Asegurá que ocupe el 100% de la pantalla */
  z-index: 10;
}


.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00b4ff;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #a3d5ff;
}

.glow-logo {
  font-family: 'Arial', sans-serif;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  letter-spacing: 2px;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  .nav-links.active {
    display: flex;
  }
}

.servicios-section,
.universidades-section,
.testimonios-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #002244, #004f9e);
  color: white;
  text-align: center;
}

.quienes-somos {
  padding: 60px 20px;
  background-color: #001c33;
  color: #cce6ff;
  text-align: center;
  font-size: 30px;
}
.quienes-somos p {
  font-size: 18px;
  line-height: 1.5;
  margin: 1px auto !important; /* Más compacto y bien centrado */
  color: #ffffffcc;
  text-align: center;
  max-width: 800px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fuerza 3 columnas */
  gap: 40px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #00eaff99;
}


.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-top: 10px;
  color: #aee0ff;
}

.service-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
}

.btn-card {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #00b4ff;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-card:hover {
  background-color: #0088cc;
}

.reservas-section {
  background: linear-gradient(to right, #002a57, #0052a5);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.btn-reservar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  margin-top: 20px;
  box-shadow: 0 0 20px #25d366;
  transition: background 0.3s;
}

.btn-reservar:hover {
  background-color: #1ebe57;
}

.btn-reservar img {
  width: 24px;
  height: 24px;
}

.contacto-section {
  background-color: #001d3d;
  color: #d0eaff;
  padding: 80px 20px;
  text-align: center;
}

.contacto-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.contacto-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px 20px;
  width: 260px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
}

.contacto-item:hover {
  transform: translateY(-5px);
}

.contacto-item img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}

.contacto-item a {
  color: #00b4ff;
  text-decoration: none;
}

.footer {
  background: linear-gradient(to right, #001d3d, #003366);
  color: white;
  text-align: center;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #00b4ff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  text-decoration: none;
  color: #d0eaff;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #ffffff;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  margin: 0 10px;
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.2);
}

.footer-copy {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #b0c8e0;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 0 10px #25d366;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.mision-vision {
  margin-top: 40px;
}

.quienes-somos .service-card h3 {
  color: #00cfff;
}


.cta-subite {
  text-align: center;
  font-size: 30px !important;
  font-weight: bold;
  margin-top: 50px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
  animation: pulse-subite 2s infinite;
}

@keyframes pulse-subite {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}
.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.logo:hover {
  text-shadow: 0 0 8px #00b4ff;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.contador-section {
  background: linear-gradient(to right, #001d3d, #003366);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 12px #00e0ff;
}
.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 40px auto 0;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background-color: #ffffff;
  color: #001d3d;
  box-shadow: 0 0 8px rgba(0, 180, 255, 0.3);
}

.formulario-contacto textarea {
  resize: vertical;
}

.formulario-contacto button {
  background-color: #00b4ff;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.formulario-contacto button:hover {
  background-color: #007bbf;
}
.btn, .btn-card, .btn-reservar {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover, .btn-card:hover, .btn-reservar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}


.contacto {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px 0;
  flex-wrap: wrap;
}

.boton-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.boton-contacto i {
  font-size: 1.5rem;
}

.boton-contacto.whatsapp {
  background-color: #25D366;
}

.boton-contacto.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.boton-contacto.app {
  background-color: #007BFF;
}

#contador.contador-animado {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  transition: all 0.3s ease-in-out;
}


.quienes-somos p {
  max-width: 900px;
  margin: 0 auto 18px auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cce6ff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.quienes-somos.visible p {
  opacity: 1;
  transform: translateY(0);
}

.mision-vision {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 30px;
}

.mision-vision .service-card {
  background: linear-gradient(to bottom right, #01294b, #004f88);
  border: 1px solid #00eaff80;
  box-shadow: 0 0 20px #00eaff20;
  max-width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mision-vision .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #00eaff99;
}

.mision-vision h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00eaff;
  text-shadow: 0 0 6px #00eaff;
  position: relative;
}


.mision-vision h3::before {
  margin-right: 10px;
}

.remate, .cta-subite {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
}
.descripcion {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  color: #ffffffdd;
  text-align: center;
  margin: 5px auto;
}

.linea-secundaria {
  margin-top: -30px;  /* Esto los acerca más */
}
.remate {
  margin-top: 30px;
  font-size: 16px;
  color: #ffffffcc;
  text-align: center;
}
/* Estilos responsive para tablets y celulares */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .cards-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    max-width: 90%;
    margin: 0 auto;
    word-break: break-word;
    text-align: center;
  }
  
  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 10px auto;
    word-break: break-word;
    text-align: center;
  }
  
  .hero.futurista {
    height: auto;
    padding-top: 120px; /* Baja el contenido un poco */
    padding-bottom: 80px;
  }

  #heroVideo {
    height: 100vh;
    object-fit: cover;
    object-position: center;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .cards-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    opacity: 1; /* ⚡ Mostrarlas siempre en móvil */
    transform: none;
    transition: none;
  }
  .hero-content p {
    font-size: 1rem;
  }

  .cards-container {
    grid-template-columns: 1fr; /* 1 columna en celular */
  }

  .navbar {
    padding: 10px 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-content {
    gap: 20px;
  }

  .contacto {
    flex-direction: column;
    align-items: center;
  }

  .formulario-contacto {
    width: 90%;
    margin: 20px auto 0;
  }

  .btn, .btn-card, .btn-reservar {
    width: auto; /* Ancho según contenido */
    max-width: 90%; /* Nunca pasar del 90% de la pantalla */
    margin: 0 auto; /* Centrarlos */
    padding: 12px 24px; /* Mejor espacio interno */
    font-size: 1rem;
    text-align: center; /* Alinear el texto */
  }
  

  

  .cta-subite {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }

  .btn, .btn-card, .btn-reservar {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
  

  .service-card img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .hero.futurista {
    height: auto;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  #heroVideo {
    height: 100vh;
    object-fit: cover;
    object-position: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 20px 0 10px;
  }

  .hero-content p {
    font-size: 1rem;
    margin: 10px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .navbar {
    padding: 10px 20px;
  }

  .nav-links {
    top: 60px;
    width: 80%;
    right: 10%;
    text-align: center;
  }

  .contador-section h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .formulario-contacto {
    width: 90%;
    margin-top: 30px;
  }

  .btn, .btn-card, .btn-reservar {
    max-width: 90%;
    margin: 0 auto;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn, .btn-card, .btn-reservar {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .service-card img {
    height: 140px;
  }
  .btn, .btn-card, .btn-reservar {
    max-width: 90%;
    margin: 0 auto;
  }
  
}


.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none; /* 🚫 evita interacción */
  user-select: none;    /* 🚫 no se puede seleccionar */
}
