/* ============================================================
   GoNemi Landing — Custom CSS
   Variables, tipografía, componentes y utilidades que
   complementan Tailwind CSS.
   ============================================================ */

/* ------------------------------------------------------------
   1. TOKENS DE DISEÑO (variables CSS)
   ------------------------------------------------------------ */
:root {
  /* Brand principal */
  --color-primary:        #5D2B91;
  --color-primary-dark:   #4A2073;
  --color-primary-light:  #EDE0F7;

  --color-secondary:      #A4D12A;
  --color-secondary-dark: #7A9E1E;
  --color-secondary-light:#F0F7DC;

  --color-tertiary:       #FF7A30;
  --color-tertiary-dark:  #E0621A;
  --color-tertiary-light: #FFE8D9;

  /* Neutros */
  --color-neutral:        #1D1128;
  --color-bg:             #F7F7F7;
  --color-surface:        #FFFFFF;
  --color-text-primary:   #1D1128;
  --color-text-secondary: #717171;
  --color-text-light:     #B0B0B0;
  --color-border:         #E8E8E8;

  /* Hero overlay */
  --color-hero-overlay:   rgba(29, 17, 40, 0.60);

  /* Sombras */
  --shadow-card:   0 2px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover:  0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-navbar: 0 2px 12px rgba(0, 0, 0, 0.10);

  /* Tipografía */
  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Espaciado y layout */
  --space-section-y:        96px;
  --space-section-y-mobile: 64px;
  --container-max:          1160px;
  --container-px:           24px;
  --container-px-lg:        40px;
  --radius-card:            16px;
  --radius-button:          10px;
  --radius-input:           10px;
}

/* ------------------------------------------------------------
   2. RESET MÍNIMO
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-body);
  color: var(--color-text-primary);
  overflow-x: hidden;
  margin: 0;
  overflow-x: hidden;
}

/* ------------------------------------------------------------
   3. CONTENEDOR
   ------------------------------------------------------------ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--container-px-lg);
  }
}

/* ------------------------------------------------------------
   4. TIPOGRAFÍA
   ------------------------------------------------------------ */
.text-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.text-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.text-body-lg {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.text-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.text-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

/* ------------------------------------------------------------
   5. BOTONES
   ------------------------------------------------------------ */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(93, 43, 145, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(93, 43, 145, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius-button);
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: white;
}

/* Variante sobre fondo claro */
.btn-secondary-dark {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary-dark:hover {
  background-color: var(--color-primary-light);
}

/* ------------------------------------------------------------
   6. NAVBAR — siempre transparente
   ------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
}

/* Logo imagen */
.navbar-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.navbar-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Botón píldora — outline blanco (Información) */
.btn-nav-info {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.btn-nav-info:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: white;
}

/* Botón píldora — naranja sólido (Contacto) */
.btn-nav-contact {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 100px;
  border: none;
  background-color: var(--color-tertiary);
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  display: inline-block;
}

.btn-nav-contact:hover {
  background-color: var(--color-tertiary-dark);
  transform: translateY(-1px);
}

@media (max-width: 400px) {
  .btn-nav-info  { padding: 8px 14px; font-size: 0.82rem; }
  .btn-nav-contact { padding: 8px 14px; font-size: 0.82rem; }
}

@media (max-width: 768px) {
  .btn-nav-info,
  .btn-nav-contact { display: none; }

  .navbar {
    position: absolute;
  }

  .navbar .flex.items-center.justify-between {
    justify-content: center;
  }

  .navbar-logo-img {
    height: 46px;
  }
}

/* ------------------------------------------------------------
   7. CARDS
   ------------------------------------------------------------ */
.card-benefit {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: 1px solid var(--color-border);
}

.card-benefit:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-benefit .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-benefit .icon-wrap.teal {
  background: var(--color-secondary-light);
}

/* ------------------------------------------------------------
   8. PASO NUMERADO
   ------------------------------------------------------------ */
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -12px;
}

/* ------------------------------------------------------------
   9. FORMULARIO
   ------------------------------------------------------------ */
.form-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-input);
  background: white;
  color: var(--color-text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(164, 209, 42, 0.15);
}

.form-input::placeholder {
  color: var(--color-text-light);
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  display: block;
}

/* ------------------------------------------------------------
   10. BADGE
   ------------------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge.teal {
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
}

/* ------------------------------------------------------------
   11. ACORDEÓN FAQ
   ------------------------------------------------------------ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-primary);
  user-select: none;
}

.faq-answer {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--color-secondary);
}

/* ------------------------------------------------------------
   12. ANIMACIONES ON-SCROLL
   ------------------------------------------------------------ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ------------------------------------------------------------
   13. SECCIÓN PADDING HELPER
   ------------------------------------------------------------ */
.section-py {
  padding-top:    var(--space-section-y-mobile);
  padding-bottom: var(--space-section-y-mobile);
}

@media (min-width: 1024px) {
  .section-py {
    padding-top:    var(--space-section-y);
    padding-bottom: var(--space-section-y);
  }
}

/* ------------------------------------------------------------
   14. HERO — PNG con efecto 3D integrado
   ------------------------------------------------------------ */

/* Animaciones */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
  50%       { transform: translateY(-12px) rotate(var(--rotation, 0deg)); }
}

@keyframes float-map {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Sección */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 90%, #050308 0%, transparent 60%),
    radial-gradient(ellipse at 15% 20%, #4A1F82 0%, #2D1155 35%, #1D1128 70%, #0D0816 100%);
}

/* Elementos decorativos */
.hero-deco-square-lime {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #A4D12A;
  opacity: 0.9;
  bottom: 35%;
  left: 8%;
  --rotation: 12deg;
  transform: rotate(12deg);
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.8s;
}

.hero-deco-square-orange {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #FF7A30;
  opacity: 0.9;
  top: 20%;
  right: 8%;
  --rotation: -15deg;
  transform: rotate(-15deg);
  animation: float 4.5s ease-in-out infinite;
  animation-delay: 2.2s;
}

.hero-deco-dot-lime {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #A4D12A;
  top: 15%;
  left: 12%;
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-deco-dot-orange {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF7A30;
  bottom: 18%;
  right: 10%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 2.8s;
}

/* Contenedor central */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  width: 100%;
  flex: 1;
}

/* Wrapper mapa — posición relativa para cards y overlay */
.mapa-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Mapa PNG — sin transforms CSS, el 3D viene integrado en la imagen */
.hero-map {
  width: 150vw;
  max-width: 1920px;
  min-width: 1200px;
  display: block;
  animation: float-map 4s ease-in-out infinite;
}

/* Tarjetas flanqueando el mapa */
.hero-photo-card {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 4;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.hero-card-1 {
  left: 2%;
  top: 28%;
  --rotation: -8deg;
  transform: rotate(-8deg);
  animation-delay: 0s;
}

.hero-card-2 {
  right: 2%;
  top: 5%;
  --rotation: 6deg;
  transform: rotate(6deg);
  animation-delay: 1.5s;
}

.hero-card-3 {
  right: 2%;
  bottom: 5%;
  --rotation: -5deg;
  transform: rotate(-5deg);
  animation-delay: 3s;
}

/* Imagen de texto superpuesta sobre el mapa */
.hero-text-img {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

/* Botón CTA superpuesto sobre el mapa */
.boton-cta {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 3;
}

.hero-text-line1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: white;
  margin: 0 0 6px 0;
  line-height: 1.1;
}

.hero-text-line2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-pin-icon {
  color: #A4D12A;
  width: clamp(1.1rem, 2.2vw, 1.6rem);
  height: clamp(1.1rem, 2.2vw, 1.6rem);
  flex-shrink: 0;
}


/* CTA píldora glassmorphism */
.hero-cta-pill,
.boton-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 100px;
  background: #A4D12A;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1.5px solid #A4D12A;
  color: #111111;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.hero-cta-pill:hover,
.boton-cta:hover {
  border-color: #A4D12A;
  box-shadow: 0 0 20px rgba(164, 209, 42, 0.3);
}

.hero-cta-pill strong,
.boton-cta strong {
  font-weight: 700;
  color: #111111;
}


/* Responsive — mobile < 768px */
@media (max-width: 767px) {
  .hero-deco-square-lime,
  .hero-deco-square-orange,
  .hero-deco-dot-lime,
  .hero-deco-dot-orange { display: none; }

  .hero-photo-card {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .hero-card-1 { left: 20%; top: 22%; width: 45px; height: 45px; }
  .hero-card-2 { right: 3%; top: 20%; }
  .hero-card-3 { right: 3%; bottom: -12%; width: 45px; height: 45px; }

  .hero-map {
    width: 152vw;
    min-width: unset;
  }

  .mapa-wrapper {
    margin-top: 5vh;
  }

  .hero-text-img { width: 85%; top: 58%; }
  .boton-cta { top: 70%; }

  .hero-text-line1 { font-size: clamp(1rem, 5vw, 1.4rem); }
  .hero-text-line2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  .hero-cta-pill,
  .boton-cta {
    font-size: 0.85rem;
    padding: 12px 18px;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }
}

/* Responsive — tablet 768-1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-photo-card { width: 90px; height: 90px; border-radius: 16px; }
  .hero-card-1 { left: -50px; }
  .hero-card-2 { right: -40px; }
  .hero-card-3 { right: -40px; display: none; }
  .hero-map { width: 170vw; min-width: unset; }
}

/* Responsive — desktop 1024px+ */
@media (min-width: 1024px) {
  .hero-photo-card { width: 120px; height: 120px; }
}

/* ------------------------------------------------------------
   Hero mobile benefits — dentro del hero, solo mobile
   ------------------------------------------------------------ */
.hero-mobile-benefits {
  display: none;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    height: auto;
    padding-bottom: 0;
  }

  .hero-mobile-benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px 60px;
    width: 100%;
    max-width: 100%;
    margin: 24px 0 0;
    background: #E8F5C8;
    border-radius: 24px 24px 0 0;
    flex: 1;
  }

  .mobile-benefits-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a7a00;
    margin-bottom: 12px;
  }

  .mobile-benefits-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.15;
    color: #1a3300;
    margin-bottom: 10px;
  }

  .mobile-benefits-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #3a5a00;
    margin-bottom: 24px;
  }

  .mobile-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-benefits-list li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a3300;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .benefit-icon {
    color: #FF7A30;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .mobile-benefits-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #A4D12A;
    color: #1D1128;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(164, 209, 42, 0.35);
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .mobile-benefits-cta:hover {
    background: #7A9E1E;
    transform: translateY(-2px);
  }

  .mobile-benefits-cta span {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
  }

  .mobile-benefits-cta:hover span {
    transform: translateX(4px);
  }
}

@media (min-width: 769px) {
  .hero-mobile-benefits {
    display: none;
  }
}

/* ============================================================
   INFO.HTML — Navbar + Hero
   ============================================================ */

/* Navbar info — blanca, sticky */
.navbar-info {
  position: sticky;
  top: 0;
  background: #1D1128;
  border-bottom: 1px solid #5D2B91;
  z-index: 100;
  padding: 16px 0;
}

.navbar-info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-info-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #1D1128;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-info-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-info-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-info-link:hover {
  color: #ffffff;
}

.nav-info-link--active {
  color: #ffffff;
  border-bottom: 2px solid #A4D12A;
  padding-bottom: 2px;
}

.navbar-info-cta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1D1128;
  background: #A4D12A;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}

.navbar-info-cta:hover {
  background: #8FB820;
  transform: translateY(-1px);
}

/* Hero info */
.hero-info {
  background: #F8F4FF;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.hero-info-wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-info-content {
  flex: 1;
  max-width: 580px;
}

.hero-info-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-info-image img {
  max-width: 100%;
  max-height: 1040px;
  object-fit: contain;
  border-radius: 16px;
  drop-shadow: 0 20px 60px rgba(93, 43, 145, 0.15);
}

.hero-info-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5D2B91;
  margin-bottom: 20px;
}

.hero-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1D1128;
  margin-bottom: 20px;
}

.hero-info-title-img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0;
  padding: 0;
}

.hero-info-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #5D2B91;
  margin-top: 20px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-info-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #A4D12A;
  color: #1D1128;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(164, 209, 42, 0.4);
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero-info-cta:hover {
  background: #8FB820;
  transform: translateY(-2px);
}


/* Responsive mobile — info.html */
@media (max-width: 767px) {
  .navbar-info-links { display: none; }

  .navbar-info-inner {
    justify-content: center;
    position: relative;
  }

  .navbar-info-cta {
    display: none;
  }

  .hero-info {
    min-height: auto;
    align-items: flex-start;
    padding: 40px 0 0;
  }

  .hero-info-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-info-cta {
    display: none;
  }

  .hero-info-sub {
    padding-left: 16px;
  }

  .hero-info-image {
    margin-left: -24px;
    margin-right: -24px;
    margin-top: -32px;
    display: flex;
    justify-content: center;
  }

  .hero-info-image img {
    width: 100%;
    max-width: none;
    max-height: none;
    height: auto;
    display: block;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .solutions-grid {
    gap: 16px;
  }
}

/* ============================================================
   INFO.HTML — Beneficios (Pain points + Transición + Soluciones)
   ============================================================ */

.pain-section {
  background: #F8F4FF;
  padding: 64px 0 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pain-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #EDE0F7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s ease;
}

.pain-card:hover {
  box-shadow: 0 8px 24px rgba(93, 43, 145, 0.10);
}

.pain-icon {
  width: 28px;
  height: 28px;
  color: #5D2B91;
  stroke-width: 1.8;
}

.pain-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #5D2B91;
  line-height: 1.3;
  margin: 0;
}

.pain-transition {
  background: #F8F4FF;
  text-align: center;
  padding: 56px 0 64px;
}

.pain-transition p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #5D2B91;
  letter-spacing: -0.01em;
  margin: 0;
}

.solutions-section {
  background: #F8F4FF;
  padding: 64px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.solution-icon-wrap {
  width: 72px;
  height: 72px;
  background: #A4D12A;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(164, 209, 42, 0.35);
}

.solution-icon-wrap i {
  width: 32px;
  height: 32px;
  color: #1D1128;
  stroke-width: 2;
}

.solution-item p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1D1128;
  line-height: 1.4;
  margin: 0;
  max-width: 160px;
}

/* ============================================================
   INFO.HTML — Así funciona + Confianza
   ============================================================ */

.how-section {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid #F0EDF5;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1D1128;
  text-align: center;
  margin: 0 0 56px;
}

.how-layout {
  display: grid;
  grid-template-columns: 220px 380px;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.how-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-mockup-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.how-steps-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-card {
  background: #F8F4FF;
  border: 1px solid #EDE0F7;
  border-radius: 14px;
  padding: 20px 22px;
  position: relative;
}

.how-card-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #A4D12A;
  display: block;
  margin-bottom: 6px;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #1D1128;
  margin: 0 0 6px;
}

.how-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #717171;
  margin: 0;
  line-height: 1.55;
}

.trust-section {
  background: linear-gradient(135deg, #3D1F6B 0%, #2D1155 60%, #1D1128 100%);
  padding: 80px 0;
}

.trust-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.trust-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.trust-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.trust-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 40px;
  backdrop-filter: blur(8px);
  width: 100%;
  text-align: left;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.trust-check {
  width: 22px;
  height: 22px;
  color: #A4D12A;
  flex-shrink: 0;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .how-layout {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }

  .how-mockup-wrap {
    display: flex;
    align-items: flex-start;
    align-self: start;
    overflow: hidden;
    margin-top: 40px;
  }

  .how-mockup-wrap img {
    min-height: unset;
    width: 100%;
    height: auto;
    display: block;
  }

  .how-card {
    padding: 12px 14px;
  }

  .how-card-num {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .how-card h3 {
    font-size: 0.85rem;
  }

  .how-card p {
    font-size: 0.78rem;
  }

  .trust-center {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-card {
    padding: 28px 24px;
  }
}

/* ============================================================
   INFO.HTML — Proveedor Fundador
   ============================================================ */

.founder-section {
  background: #F4F1F9;
  padding: 72px 0;
}

.founder-card {
  background: #EEEAEF;
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.founder-badge-limited {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #A4D12A;
  color: #1D1128;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0 0 14px 14px;
}

.founder-top {
  margin-bottom: 20px;
}

.founder-bottom {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.founder-spots-badge {
  display: inline-block;
  background: #5D2B91;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.founder-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1D1128;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.founder-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #555060;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 36px;
}

.founder-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.founder-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(0.85);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.founder-img-wrap:hover img,
.founder-img-wrap.active img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.04);
}

.founder-img-wrap.active {
  outline: 3px solid #A4D12A;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .founder-card {
    padding: 40px 24px;
  }

  .founder-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .founder-badge-limited {
    font-size: 0.65rem;
    padding: 8px 14px;
  }
}

/* ============================================================
   INFO.HTML — Formulario de contacto + Footer
   ============================================================ */

.contact-section {
  background: #F4F1F9;
  padding: 32px 0 96px;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #5D2B91;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.contact-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #717171;
  margin: 0;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23717171' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.contact-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #A4D12A 0%, #7A9E1E 100%);
  color: #1D1128;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  box-shadow: 0 6px 24px rgba(164, 209, 42, 0.4);
  margin-top: 8px;
}

.contact-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.contact-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success,
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
}

.form-success {
  background: #F0F7DC;
  color: #4A6B10;
  border: 1px solid #A4D12A;
}

.form-error {
  background: #FFF0F0;
  color: #C0392B;
  border: 1px solid #F5A5A5;
}

.form-success.visible,
.form-error.visible {
  display: flex;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #F0EDF5;
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #5D2B91;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #717171;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #5D2B91;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #B0B0B0;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
