html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  overflow-x: hidden;
}

.landing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
}
.landing-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: glow 2s ease-in-out infinite alternate;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
}

button {
  background: #0d47a1;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 10px #0d47a1;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #0d47a1;
}
a.button {
  display: inline-block;
  background: #0d47a1;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 10px #0d47a1;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

a.button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #0d47a1;
}

button:focus, a.button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.5);
}

.glow-effect {
  text-shadow: 0 0 10px #0d47a1, 0 0 20px #0d47a1, 0 0 30px #0d47a1;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #0d47a1;
  }
  to {
    text-shadow: 0 0 20px #0d47a1, 0 0 30px #0d47a1;
  }
}
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 0 10px #0d47a1;
}


.landing-que-es {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #fff;
}

.que-es-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 2rem;
}

.que-es-texto .section-title {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #0d47a1;
}

.section-description {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
  max-width: 500px;
  text-align: left;
}

.que-es-imagen {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagen-placeholder {
  width: 100%;
  height: 350px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px dashed #00f5ff66;
  border-radius: 12px;
  color: #00f5ffaa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .que-es-content {
    flex-direction: column;
    text-align: center;
  }

  .que-es-texto .section-title,
  .section-description {
    text-align: center;
  }

  .que-es-imagen {
    width: 100%;
  }

  .imagen-placeholder {
    height: 300px;
  }
}
.landing-diseño {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.diseño-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.diseño-imagen {
  flex: 1 1 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagen-carousel-placeholder {
  width: 100%;
  height: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed #00f5ff66;
  border-radius: 12px;
  color: #0d47a1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  animation: blinkPlaceholder 2s infinite alternate;
}

@keyframes blinkPlaceholder {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.diseño-texto {
  flex: 1 1 500px;
}

.diseño-texto .section-title {
  font-size: 2rem;
  text-shadow: 0 0 8px #0d47a1;
  margin-bottom: 1rem;
}

.diseño-texto .section-description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .diseño-content {
    flex-direction: column;
    text-align: center;
  }

  .imagen-carousel-placeholder {
    height: 300px;
  }
}
.scroll-container {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

.scroll-container > * {
  scroll-snap-align: start;
  height: 100vh;
  overflow: hidden;
}
.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari y Edge */
}
/* Ocultar scrollbar en todos los navegadores */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE y Edge */
  scrollbar-width: none;     /* Firefox */
}

.no-scrollbar::-webkit-scrollbar {
  display: none;             /* Chrome, Safari y Opera */
}
.landing-comparativa {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0f0c29 100%);
  padding: 2rem;
  color: #fff;
}

.comparativa-wrapper {
  display: flex;
  max-width: 1100px;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.comparativa-col {
  width: 45%;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
  backdrop-filter: blur(6px);
}

.comparativa-col h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #0d47a1;
  text-shadow: 0 0 8px #0d47a1;
}

.antes h2 {
  color: #ff4f4f;
  text-shadow: 0 0 8px #ff4f4f;
}

.comparativa-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.comparativa-item i {
  font-size: 1.5rem;
  color: #0d47a1;
}

.antes .comparativa-item i {
  color: #ff4f4f;
}

.comparativa-divider {
  width: 2px;
  background: linear-gradient(180deg, transparent, #0d47a1, transparent);
  height: 90%;
  margin: 0 2rem;
  animation: pulse-divider 2s infinite alternate;
}

@keyframes pulse-divider {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .comparativa-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .comparativa-divider {
    display: none;
  }
  .comparativa-col {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.landing-adaptamos {
  background: linear-gradient(135deg, #1c1b2f, #3b3a5a);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.adaptamos-content {
  max-width: 1200px;
  margin: 0 auto;
}

.adaptamos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.adaptamos-item {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.adaptamos-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 245, 255, 0.1);
}

.adaptamos-item i {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 1rem;
}

.adaptamos-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.adaptamos-item p {
  font-size: 0.95rem;
  color: #ccc;
}

.adaptamos-footer {
  margin-top: 3rem;
}

.adaptamos-footer p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #eee;
}
.landing-footer-section {
  scroll-snap-align: start;
  padding: 2rem;
  background: #0f0c29;
  color: #ccc;
  text-align: center;
  min-height: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-footer p {
  font-size: 0.95rem;
  margin: 0;
  color: #888;
}
@media (max-width: 480px) {
  .landing {
    padding: 1.5rem 1rem;
  }

  .landing h1 {
    font-size: 2rem;
  }

  .landing p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .landing-buttons {
    flex-direction: column;
    align-items: center;
  }

  .landing-buttons button,
  .landing-buttons .button {
    width: 100%;
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .landing-que-es {
    height: auto;
    padding: 3rem 1.2rem 2rem;
    flex-direction: column;
  }

  .que-es-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0rem;
  }

  .que-es-imagen {
    order: 2;
    width: 100%;
    margin-top: 1.5rem;
  }

  .que-es-imagen img {
    max-width: 85%;
    height: auto;
    border-radius: 12px;
  }

  .que-es-texto {
    order: 1;
    width: 100%;
  }

  .que-es-texto .section-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .section-description {
    font-size: 1rem;
    color: #ddd;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .landing-video {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    scroll-snap-align: start;
  }

  .video-container {
    width: 100%;
    max-width: 90%;
    aspect-ratio: 16 / 9;
    margin: 1.5rem auto 0;
    font-size: 1rem;
    padding: 2rem 1rem;
  }
  .landing-diseño {
    flex-direction: column;
    padding: 2rem 1rem;
    justify-content: flex-start;
    height: 100vh;
  }
  
  .diseño-texto {
    text-align: center;
    margin-bottom: 1rem;
  }
  .diseño-texto-carrusel {
    flex: 1 1 300px;
  }
  .diseño-imagen-carrusel {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .diseño-texto .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px #0d47a1;
  }
  
  .diseño-texto .section-description {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .diseño-imagen {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .landing-video,
.landing-diseño,
.landing-que-es,
.landing-comparativa,
.landing-adaptamos {
min-height: 100vh;
height: auto;
padding: 3rem 1.5rem;
scroll-snap-align: start;
display: flex;
flex-direction: column;
justify-content: center;
}

.video-container,
.imagen-carousel-placeholder {
height: auto;
min-height: 180px;
max-width: 90%;
margin: 1rem auto;
}

.diseño-texto .section-description {
font-size: 1rem;
line-height: 1.5;
}
}
@media (max-width: 768px) {
  .landing-diseño {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
    justify-content: center;
  }

  .diseño-content {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .diseño-texto {
    order: 1;
    width: 100%;
  }

  .diseño-texto .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .diseño-texto .section-description {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto 1rem;
  }

  .diseño-imagen {
    order: 2;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .imagen-carousel-placeholder {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .landing-comparativa {
    flex-direction: column;
    height: auto;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .comparativa-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
  }

  .comparativa-col {
    width: 100%;
    padding: 1.5rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
  }

  .comparativa-col h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .comparativa-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
  }

  .comparativa-item:last-child {
    margin-bottom: 0;
  }

  .comparativa-divider {
    display: none;
  }
}
.logo-glow {
  width: 220px;
  max-width: 80%;
  animation: glow 2s ease-in-out infinite alternate;
  margin-left: 33px;
  filter: drop-shadow(0 0 10px #0d47a1) drop-shadow(0 0 20px #0d47a1);
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px #0d47a1);
  }
  to {
    filter: drop-shadow(0 0 20px #0d47a1) drop-shadow(0 0 30px #0d47a1);
  }
}

.imagen-carousel {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-redes {
  display: flex;
  gap: 1.2rem;
  font-size: 1.6rem;
}

.footer-redes a {
  color: #0d47a1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-redes a:hover {
  transform: scale(1.2);
  color: #fff;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-animado {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.intro-animado.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Video container */
.landing-video {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  padding: 4rem 1.5rem;
  text-align: center;
  color: #fff;
}

.video-container {
  max-width: 800px;
  margin: 2rem auto 3rem;
}

.video-placeholder {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 4rem;
  color: #666;
  font-size: 1.2rem;
  border: 2px dashed #333;
}

/* Carrusel */
.benefits-wrapper {
  position: relative;
  padding-bottom: 130px;
  margin-top: 2rem;
}
.benefits-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-top: 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  scroll-behavior: smooth;
  transition: transform 0.4s ease-in-out;
}

.benefit-item {
  border-radius: 16px;
  padding: 2rem 1rem;
  flex: 0 0 280px;
  scroll-snap-align: start;
  text-align: center;
}

.benefit-item .icon {
  background: #0d47a1;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.benefit-item p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Ocultar scrollbar */
.benefits-carousel::-webkit-scrollbar {
  display: none;
}
#carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 145px;
  left: 0;
  right: 0;
  z-index: 2;
}

#carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #777;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  padding: 0;
}

#carousel-dots button.active {
  background-color: #0d47a1; /* Violeta suave como en tu ejemplo */
}
@media (max-width: 768px) {
  .benefit-item {
    flex: 0 0 calc(50% - 1rem); /* dos items por fila con espacio */
  }
}
/* === Video responsivo 16:9 con marco === */
.video-shell {
  max-width: min(1000px, 92vw);
  margin: 2rem auto 3rem;
}

/* Fallback universal: asegura altura 16:9 aunque no haya soporte de aspect-ratio */
.aspect-16x9 {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;   /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(13, 71, 161, 0.25);
  background: #000;
}
.aspect-16x9 video {
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;           /* evita colapsos raros en mobile */
  object-fit: cover;
  object-position: center -480px; /* tu ajuste actual */
}

/* Si el navegador soporta aspect-ratio, usamos eso y quitamos el padding */
@supports (aspect-ratio: 16 / 9) {
  .aspect-16x9 {
    height: auto;
    padding-bottom: 0;
    aspect-ratio: 16 / 9;
  }
}

/* En pantallas chicas ya tenés media queries, esto solo asegura buen mínimo */
@media (max-width: 480px) {
  .video-shell { margin: 1.5rem auto 2rem; }
}
/* 1) Dejá respirar a la sección del video */
.landing-video {
  height: auto !important;      /* que crezca según el contenido */
  min-height: 100vh;            /* pero que al menos ocupe una pantalla */
  overflow: visible !important; /* permite que se vea el carrusel */
}

/* 2) Si querés afectar solo esa sección (recomendado) */
.scroll-container > .landing-video {
  height: auto !important;
  min-height: 100vh;
  overflow: visible !important;
}
@media (max-width: 600px) {
  .aspect-16x9 video {
    object-position: center -120px;  /* probá -80 / -160 si hace falta */
  }
}
.landing-header {
  position: absolute;
  top: 20px;
  right: 20px;
}

.btn-precios {
  background: #0d47a1;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 0 10px #0d47a1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-precios:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #0d47a1;
}