
:root {
  --color-primary: #007F8B;
  --color-secondary: #F26B38;
  --color-accent: #7F7FFF;
  --color-bg: #f0f5f9;
  --color-dark: #0b2341;
  --text-light: #ffffff;
  --text-dark: #1c1c1c;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background-color: var(--color-bg);
  margin: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 25px 25px;
  z-index: 1000;
  padding: 0.8rem 1rem;
}

.navbar-brand {
  font-weight: 700;
  color: var(--text-light) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: var(--text-light) !important;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--color-accent) !important;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  color: var(--text-light);
}

/* Media queries para móvil */
@media (max-width: 768px) {
    .hero {
      height: auto; /* Altura automática */
      min-height: 100vh; /* Ocupa al menos el viewport */

    }

   

    /* Ajustar título */
    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    /* Ajustar botones */
    .hero-buttons {
      flex-direction: column; /* Botones en columna */
      gap: 15px;
    }

    /* Video de fondo (si aplica) */
    .hero-video {
      height: 100%;
      object-fit: cover;
    }
  }
 
.hero video,
.hero::before,
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/*.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 15vh;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}*/

.hero-content {
  padding-top: clamp(8vh, 15vh, 20vh);
  padding-bottom: clamp(4vh, 6vh, 10vh);
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
   
}






.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* Botones */
.btn-cta {
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-orange {
  background-color: var(--color-secondary);
  border: none;
  color: white;
}

.btn-orange:hover {
  background-color: #d45420;
  transform: scale(1.05);
  color: white;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Texto con gradiente */
.gradient-text {
  background: linear-gradient(90deg, #00e0ff, #6f4ef2, #c246f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background-size: 200% auto;
  animation: gradientMove 8s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Logos de partners */
.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.partner-logos img {

  opacity: 0.85;
  transition: all 0.3s ease;
}

.partner-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Menú móvil */
.menu-toggle {
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 1001;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #111 !important;
  z-index: 1000;
  color: white;
  padding: 2rem 1.5rem;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.side-menu.active {
  right: 0;
}

.menu-header {
  text-align: center;
  margin-bottom: 2rem;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  margin: 1.2rem 0;
}

.menu-items a {
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-items a:hover {
  color: var(--color-accent);
}

.contact-info {
  margin-top: 2rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-icons a {
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--color-accent);
}

/* Footer */
footer {
  background: linear-gradient(45deg, #081f3d, #0b2341);
  color: #ccc;
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--color-secondary);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-bottom-links a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    border-radius: 0 0 15px 15px;
  }
  
  .hero-content {
    padding-top: 10vh;
  }
}





/* Laptops medianas */
@media (min-width: 1200px) and (max-width: 1509.98px) {
  .hero-content {
    padding-top: 10vh;
  }
}

/* Tablets y laptops pequeñas */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content {
    padding-top: 13vh;
  }
}

/* Celulares y tablets pequeñas */
@media (max-width: 991.98px) {
  .hero-content {
    padding-top: 9vh;
    padding-bottom: 3vh;
  }
}






.btn-contact {
background-color: #F26B38; /* Naranja corporativo */
color: white;
border: none;
border-radius: 50px;
padding: 0.5rem 1.5rem;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(242, 107, 56, 0.3);
display: inline-flex;
align-items: center;
}

.btn-contact:hover {
background-color: #e05d2b;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(242, 107, 56, 0.4);
color: white;
}

.btn-contact i {
font-size: 1.1rem;
transition: transform 0.3s ease;
}

.btn-contact:hover i {
transform: scale(1.1);
}

/* Ajustes para móviles */
@media (max-width: 991.98px) {
.btn-contact {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}
}

/* Ocultar el menú lateral cuando el navbar está expandido */
.navbar-collapse:not(.show) ~ .side-menu {
display: none;
}

/* En móviles, ocultar el navbar toggler cuando el menú lateral está activo */
.side-menu.active ~ .menu-toggle {
display: none;
}

