* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0a0a0a;
  background: #fff;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  align-items: center;
}

.nav nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.logo {
  font-weight: 900;
  font-size: 22px;
}

.btn-dark {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 80px 60px;
}

.badge {
  display: inline-block;
  background: #e9fff5;
  color: #00a870;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.highlight {
  color: #6d4aff;
}

.hero p {
  font-size: 18px;
  color: #555;
  max-width: 520px;
}

.actions {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: none;
  padding: 16px 26px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
}

.link {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  align-self: center;
}

.users {
  display: flex;
  gap: 14px;
  margin: 30px 0;
  align-items: center;
}

.avatars img {
  border-radius: 50%;
  margin-right: -8px;
  border: 2px solid white;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  font-size: 14px;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
  transition: transform 0.3s ease; /* transición suave */
}

/* Efecto al pasar el ratón */
.hero-image img:hover {
  transform: scale(1.1); /* se agranda un 10% */
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.features-section {
  padding: 80px 60px;
  background: #f8faff;
  text-align: center;
}

.features-section h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.features-section .subtitle {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 12px;
}

.features-section .description {
  font-size: 16px;
  color: #777;
  max-width: 800px;
  margin: 0 auto 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.card .icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
.footer {
  background-color: white;
  padding: 60px 20px 20px;
  font-family: system-ui, sans-serif;
  color: #333;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.footer-brand p {
  max-width: 300px;
  color: #666;
  font-size: 14px;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.footer-links a:hover {
  color: #000;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #888;
}
/* ===============================
   SECCIÓN PRIVACIDAD
================================ */

.privacy-section {
  padding: 140px 20px;
  background-color: #ffffff; /* Fondo blanco */
  text-align: center;
  overflow: hidden;
  position: relative;
}

.privacy-container {
  max-width: 920px;
  margin: 0 auto 90px;
  position: relative;
  z-index: 2;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(109,40,217,0.08);
  color: #6b4eff;
  backdrop-filter: blur(6px);
}

.privacy-section h2 {
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  color: #0a0a0a;
}

.privacy-section p {
  font-size: 18px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 22px;
}

.privacy-highlight {
  font-weight: 600;
  color: #1a1a1a;
}

.privacy-open {
  font-size: 16px;
  color: #666;
  max-width: 720px;
  margin: 0 auto;
}
/* ===============================
   CARRUSEL
================================ */
.privacy-carousel {
  width: 100%;
  overflow-x: hidden;
  padding: 40px 0;
  background: #f5f5f7;
  display: flex;
  justify-content: center;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  animation: scroll 60s linear infinite;
  will-change: transform;
}

.carousel-card {
  width: 140px;
  height: 200px;
  border-radius: 20px;
  background: #1c1c1f;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.carousel-card:hover {
  transform: scale(1.05);
}

/* Glow animado */
.carousel-card .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: glowAnim 4s ease-in-out infinite alternate;
}

@keyframes glowAnim {
  0% { transform: scale(1) translate(0,0); opacity: 0.2; }
  50% { transform: scale(1.1) translate(5px, -5px); opacity: 0.3; }
  100% { transform: scale(1) translate(0,0); opacity: 0.2; }
}

/* Tarjeta etiquetas */
.card-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: #1c1c1f;
  text-align: center;
  font-weight: 500;
}

/* Variantes de color */
.carousel-card.fairy { background: #1a1a1f; }
.carousel-card.gradient { background: linear-gradient(135deg,#6b5bff,#a0e9fd); }
.carousel-card.inferno { background: linear-gradient(135deg,#ff4e00,#ff9a00); }
.carousel-card.love { background: #ffccd5; }
.carousel-card.matrix { background: #0f0f0f; color: #0f0; }
.carousel-card.neon { background: #1c1c1f; border: 1px solid #bb00ff; }
.carousel-card.particles { background: #1c1c1f; }
.carousel-card.rain { background: #0a0a12; }
.carousel-card.aurora { background: linear-gradient(45deg,#00f0ff,#00ffb0); }

/* Scroll animación */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.privacy-carousel {
  width: 100%;
  overflow-x: hidden;
  padding: 40px 0;
  background: #f5f5f7;
  display: flex;
  justify-content: center;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 24px;
  animation: scroll 30s linear infinite; /* velocidad ajustable */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* mueve exactamente la mitad (la primera copia) */
}


.carousel-card {
  width: 140px;
  height: 220px; /* un poco más alto para la imagen */
  border-radius: 20px;
  background: #1c1c1f;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10px;
   justify-content: center; /* centra todo verticalmente */
  padding-bottom: 10px; /* opcional, para separar un poco del borde */
}

.carousel-card:hover {
  transform: scale(1.05);
}

/* Glow animado */
.carousel-card .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: glowAnim 4s ease-in-out infinite alternate;
}

@keyframes glowAnim {
  0% { transform: scale(1) translate(0,0); opacity: 0.2; }
  50% { transform: scale(1.1) translate(5px, -5px); opacity: 0.3; }
  100% { transform: scale(1) translate(0,0); opacity: 0.2; }
}

.card-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 0; /* Elimina margen */
  margin-top: 5px; /* Ajusta la separación superior */
  border-radius: 12px;
}

/* Tarjeta etiquetas */
.card-label {
  font-size: 13px;
  color: #fff; /* cambiar a blanco para mejor contraste */
  text-align: center;
  font-weight: 500;
  z-index: 2;
}

/* Variantes de color */
.carousel-card.fairy { background: #1a1a1f; }
.carousel-card.gradient { background: linear-gradient(135deg,#6b5bff,#a0e9fd); }
.carousel-card.inferno { background: linear-gradient(135deg,#ff4e00,#ff9a00); }
.carousel-card.love { background: #ffccd5; color: #000; }
.carousel-card.matrix { background: #0f0f0f; color: #0f0; }
.carousel-card.neon { background: #1c1c1f; border: 1px solid #bb00ff; }
.carousel-card.particles { background: #1c1c1f; }
.carousel-card.rain { background: #0a0a12; }
.carousel-card.aurora { background: linear-gradient(45deg,#00f0ff,#00ffb0); }

/* Scroll animación */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ===============================
   MEDIA QUERIES PARA MÓVIL
================================ */
@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    gap: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .actions {
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary, .btn-dark {
    width: 100%;
    max-width: 300px;
    padding: 14px 0;
    font-size: 16px;
  }

  .users {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .features {
    justify-content: center;
  }

  .hero-image img {
    max-width: 300px;
  }

  .features-section {
    padding: 60px 20px;
  }

  .features-section h2 {
    font-size: 32px;
  }

  .features-section .subtitle,
  .features-section .description {
    font-size: 15px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 20px;
  }

  .privacy-section {
    padding: 80px 20px;
  }

  .privacy-section h2 {
    font-size: clamp(28px, 6vw, 36px);
  }

  .privacy-section p, .privacy-highlight {
    font-size: 16px;
  }

  .privacy-carousel {
    padding: 20px 0;
  }

  .carousel-card {
    width: 120px;
    height: 180px;
  }

  .card-img {
    width: 60px;
    height: 60px;
  }

  .card-label {
    font-size: 12px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}


@media (max-width: 900px) {
  .nav {
    display: flex;            /* asegúrate de que sea flex */
    flex-direction: row;      /* horizontal */
    justify-content: space-between; /* logo a la izquierda, botón a la derecha */
    align-items: center;
    padding: 15px 20px;
  }

  .nav nav {
    display: flex;
    gap: 0; /* no agregar espacio extra */
  }
}
