* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #111;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  align-items: center;
  border-bottom: 1px solid #eee;
  background-color: white; /* O usa transparent si va sobre fondo oscuro */
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-weight: bold;
  font-size: 1.3rem;
  color: #4f46e5;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4f46e5;
}

/* BOTÓN “COMENZAR GRATIS” */
.btn-nav {
  background-color: #4f46e5;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-nav:hover {
  background-color: #4338ca;
}



/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url('https://vlsjmrxoxtzkcvfrpkvl.supabase.co/storage/v1/object/public/interfaces//ChatGPT%20Image%2015%20jun%202025,%2014_51_18.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start; /* alineación a la izquierda */
  align-items: center;
  padding-left: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: flex-start; /* <-- importante para que suba */
  justify-content: flex-start;
  padding-left: 2rem;
  margin-top: -40px; /* 🔥 SUBE el bloque entero */
}



.hero-text {
  color: white;
  max-width: 540px;
  margin-top: -1rem;
}

.subtag {
  color: #c084fc;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.bold {
  font-weight: 900;
}

.highlight {
  color: #a78bfa;
}

.description {
  font-size: 1.2rem;
  color: #e5e5e5;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #6366f1;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #4f46e5;
}

.btn-outline {
  border: 1px solid white;
  background: transparent;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
  text-decoration: none; /* <- Esta línea elimina la raya debajo */
}


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

.benefits-line {
  font-weight: 500;
  color: #6ee7b7;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  white-space: nowrap; /* 🔥 CLAVE para que no se salte de línea */
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .description {
    font-size: 1rem;
  }

  .hero {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 2rem 1.5rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 0;
  }

  .benefits-line {
    text-align: center;
    white-space: normal;
  }
}


/* FEATURES SECTION */
.features {
  padding: 4rem 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
}

.features-subtext {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem; /* más juntas */
}

.feature-card {
  width: 260px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  background-color: white;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: left;
}

.feature-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.icon {
  font-size: 1.8rem;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #111827;
}

.feature-card p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

/* Icon backgrounds */
.pink { background: #ec4899; }
.blue { background: #3b82f6; }
.indigo { background: #6366f1; }
.orange { background: #f59e0b; }




/* VIDEO SECTION */
.video-section {
  background: linear-gradient(to bottom, #4c1d95, #6d28d9);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.video-tag {
  color: #c084fc;
  font-weight: 500;
  margin-bottom: 1rem;
}

.video-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.video-section .highlighted {
  color: #facc15;
}

.video-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  position: relative;
}

.video-caption {
  background-color: #000;
  color: white;
  padding: 1rem;
  text-align: left;
  font-size: 0.95rem;
}

.video-cta {
  margin-top: 3rem;
  background-color: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

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

.btn-promo {
  background: linear-gradient(to right, #fbbf24, #ef4444);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-promo:hover {
  opacity: 0.9;
}

.mini-text {
  font-size: 0.8rem;
  margin-top: 0.8rem;
  color: #d1d5db;
}

.features-demo {
  padding: 5rem 2rem;
  background-color: #fff;
  text-align: center;
}

.demo-tag {
  color: #8b5cf6;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.features-demo h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.demo-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 4rem;
}

.demo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 5rem;
  text-align: left;
}

.reverse {
  flex-direction: row-reverse;
}

.demo-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.demo-text h3 {
  font-size: 2rem;
  margin: 0.8rem 0;
}

.demo-text p {
  margin-bottom: 1.2rem;
  color: #333;
}

.demo-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.demo-text ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.demo-img img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
}

.demo-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: #f3f4f6;
  color: #6b21a8;
}

.demo-label.indigo { color: #4f46e5; }
.demo-label.purple { color: #9333ea; }
.demo-label.blue   { color: #2563eb; }

.btn-demo {
  background: #8b5cf6;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-demo:hover {
  background: #7c3aed;
}


/* CTA FINAL */
.cta-final {
  background: linear-gradient(to right, #4f46e5, #9333ea);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0.003rem auto 2rem auto; /* <-- Ajusta este valor */
}


.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.cta-final p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background: white;
  color: #4f46e5;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: #e0e7ff;
}

.value-section {
  background: #f9fbfc;
  text-align: center;
  padding: 4rem 2rem;
}

.value-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #111827;
}

.value-subtext {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

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

.value-box {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.value-box:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem auto;
  border-radius: 12px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.orange {
  background: #f59e0b;
}

.green {
  background: #10b981;
}

.purple {
  background: #8b5cf6;
}

.value-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.value-box p {
  font-size: 0.95rem;
  color: #4b5563;
}

.testimonials {
  background: #f9fbfc;
  text-align: center;
  padding: 4rem 2rem;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2rem;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 1.2rem;
}

.user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.user img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.user strong {
  font-size: 0.95rem;
  color: #111827;
}

.pricing-section {
  background: #f9fbfc;
  text-align: center;
  padding: 5rem 2rem;
}

.pricing-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
}

.pricing-subtext {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

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

.plan-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #111827;
}

.price {
  font-size: 1.7rem;
  font-weight: 800;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.plan-card ul li {
  margin-bottom: 0.5rem;
  color: #374151;
  font-size: 0.95rem;
}

.btn-light {
  background: #f3f4f6;
  color: #111827;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-solid {
  background: #4f46e5;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.featured {
  border: 2px solid #a78bfa;
  box-shadow: 0 6px 20px rgba(139,92,246,0.15);
}

.tag {
  background: #8b5cf6;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* SECCIÓN CTA FINAL */
.final-cta {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent),
              radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.05), transparent),
              linear-gradient(to bottom right, #4f46e5, #9333ea);
  color: white;
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.final-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-cta-big {
  background: white;
  color: #4f46e5;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.btn-cta-big:hover {
  background: #f3f4f6;
}

.mini-text {
  font-size: 0.85rem;
  color: #e0e0e0;
  margin-top: 1rem;
}


.main-footer {
  background-color: #f9fafb;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
  color: #374151;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-brand {
  flex: 1 1 280px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #9333ea;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-slogan {
  font-style: italic;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  transition: 0.3s;
  opacity: 0.8;
}

.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex: 2 1 600px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #4b5563;
  transition: 0.2s;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #9333ea;
}

/* Newsletter */
.footer-newsletter {
  text-align: center;
  margin: 2.5rem auto 1.5rem;
}

.footer-newsletter p {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer-newsletter input[type="email"] {
  padding: 0.7rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  width: 260px;
  max-width: 90%;
  font-size: 0.95rem;
}

.footer-newsletter button {
  background: linear-gradient(to right, #9333ea, #7c3aed);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: #6d28d9;
}

/* Bottom legal */
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 2rem;
}

.mini-cert {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.mini-cert a {
  color: #6b7280;
  text-decoration: underline;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  animation: fadeSlideUp 1s ease-out forwards;
  opacity: 0; /* empieza invisible */
  animation-delay: 0.2s;
}

@keyframes fadeDownNavbar {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar {
  animation: fadeDownNavbar 0.8s ease-out forwards;
  opacity: 0;
  animation-delay: 0.1s;
}

html {
  scroll-behavior: smooth;
}
