* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary: #508991;
    --primary-50: #f0f9fa;
    --primary-100: #d9f0f2;
    --primary-200: #b7e2e6;
    --primary-300: #87cdd4;
    --primary-400: #50b0bb;
    --primary-500: #508991;
    --primary-600: #3f6b72;
    --primary-700: #35575c;
    --primary-800: #2f484c;
    --primary-900: #2a3d41;
    --primary-950: #1a2629;
  
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
  
    --green-400: #34d399;
    --yellow-400: #fbbf24;
  
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  }
  
  /* Estilos base removidos para evitar conflictos */

  .container {
    width: 100%;
    margin: 0 1rem;
    padding: 0 1rem;
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* HEADER */
  .glass-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    transition: background 0.3s, backdrop-filter 0.3s, transform 0.3s ease-in-out;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .glass-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px 0 rgba(31, 38, 135, 0.15);
  }

  .glass-header.header-hidden {
    transform: translateY(-100%);
  }

  .header-content {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .logo a {
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
  }

  .logo a:hover {
    transform: scale(1.02);
  }
  
  .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
  }
  
  .logo-square {
    width: 1rem;
    height: 1rem;
    background-color: white;
    border-radius: 0.125rem;
  }
  
  .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .nav-desktop {
      display: flex;
    }
  }
  
  .nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .nav-link:hover {
    color: var(--primary);
  }

  .nav-link.active {
    color: var(--primary);
    font-weight: 500;
  }

  .mobile-nav-link.active {
    color: var(--primary);
    font-weight: 500;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .header-actions {
      gap: 1rem;
    }
  }
  
  .btn-desktop {
    display: none;
  }
  
  @media (min-width: 768px) {
    .btn-desktop {
      display: inline-flex;
    }
  }
  
  .btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
    height: 2.5rem;
    width: 2.5rem;
    flex-shrink: 0;
  }
  
  .btn-mobile:hover {
    background-color: var(--gray-100);
  }
  
  @media (min-width: 768px) {
    .btn-mobile {
      display: none;
    }
  }
  
  /* Botones responsivos para móvil */
  .btn-mobile-signin,
  .btn-mobile-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
    height: 2.5rem;
    min-width: fit-content;
    flex-shrink: 0;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .btn-mobile-signin {
    color: var(--gray-700);
    background-color: transparent;
    border: 1px solid var(--gray-300);
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .btn-mobile-signin:hover {
    color: var(--primary);
    background-color: var(--gray-50);
    border-color: var(--primary);
  }
  
  .btn-mobile-signup {
    color: white;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .btn-mobile-signup:hover {
    background-color: var(--primary-600);
    border-color: var(--primary-600);
  }
  
  @media (min-width: 768px) {
    .btn-mobile-signin,
    .btn-mobile-signup {
      display: none;
    }
  }
  
  /* Ajustes para pantallas muy pequeñas */
  @media (max-width: 480px) {
    .btn-mobile-signin,
    .btn-mobile-signup {
      padding: 0.375rem 0.5rem;
      font-size: 0.75rem;
      height: 2.25rem;
      min-width: 60px;
    }
    
    .header-actions {
      gap: 0.25rem;
    }
  }
  
  /* Ajustes para pantallas extra pequeñas */
  @media (max-width: 360px) {
    .btn-mobile-signin,
    .btn-mobile-signup {
      padding: 0.25rem 0.375rem;
      font-size: 0.7rem;
      height: 2rem;
      min-width: 50px;
    }
  }
  
  /* MENÚ MÓVIL */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu.active {
    transform: translateX(0);
  }
  
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .mobile-nav-link:hover {
    color: var(--primary);
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .mobile-menu {
      display: none;
    }
  }
  
  /* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    background-color: var(--primary);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
}

.btn-primary:hover {
    background-color: var(--primary-600);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-700);
    background-color: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
}

.btn-ghost:hover {
    color: var(--primary);
}
  
  /* HERO SECTION */
  .hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--gray-50);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 4rem;
  }
  
  .hero-content {
    position: relative;
    text-align: center;
    max-width: 4rem;
    margin: 0 auto;
    padding: 6rem 0 2rem 0;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .hero-content {
      max-width: 64rem;
    }
  }

  @media (max-width: 768px) {
    .hero {
      padding-top: 2rem;
    }
    
    .hero-content {
      padding: 4rem 0 2rem 0;
    }
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--gray-800);
    margin-bottom: 2.5rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 4rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 4.5rem;
    }
  }
  
  .hero-subtitle {
    color: var(--primary);
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .hero-description {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    color: var(--gray-600) !important;
    width: 100%;
    margin: 0 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif !important;
}
  
  @media (min-width: 768px) {
    .hero-description {
      font-size: 1.5rem;
      text-align: center;
    }
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
  
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }
  
  .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: white;
    background-color: var(--primary);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: background-color 0.2s;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .btn-hero-primary:hover {
    background-color: var(--primary-600);
  }
  
  .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: #6b7280;
    background-color: transparent;
    border: 1.5px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
}
.btn-hero-secondary svg {
  fill: currentColor;
  stroke: none;
  transition: fill 0.18s, color 0.18s;
}
.btn-hero-secondary:hover {
  background: #f3f4f6;
  color: var(--primary);
  border-color: #d1d5db;
}
  .btn-hero-secondary:hover svg {
    fill: var(--primary);
    color: var(--primary);
  }

  /* Partners Logo Carousel */
  .partners-carousel-container {
    margin-top: 6rem;
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    background-color: transparent !important;
  }

  .partners-title {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-600);
    width: 100%;
    margin: 0 1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.5;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .partners-carousel-container::before,
  .partners-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }

  .partners-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-50), transparent);
  }

  .partners-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-50), transparent);
  }

  .partners-carousel {
    width: 100%;
    overflow: hidden;
    background-color: transparent;
  }

  .partners-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: max-content;
    background-color: transparent;
  }

  .partners-track:hover {
    animation-play-state: paused;
  }

  .partner-logo {
    flex-shrink: 0;
    margin: 0 2rem;
    padding: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .partner-logo:hover {
    transform: scale(1.1);
  }

  .partner-img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .partner-logo:hover .partner-img {
    filter: grayscale(0%);
    opacity: 1;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive adjustments for carousel */
  @media (max-width: 768px) {
    .partners-carousel-container {
      margin-top: 3rem;
      width: 95%;
    }
    
    .partner-logo {
      margin: 0 1rem;
    }
    
    .partner-img {
      height: 30px;
    }
    
    .partners-carousel-container::before,
    .partners-carousel-container::after {
      width: 60px;
    }
  }

  @media (min-width: 768px) {
    .partners-title {
      font-size: 1.125rem;
      text-align: center;
    }
  }

/* Transición suave para el gráfico tail_spend */
.tail-spend-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 320px;
  transition: transform 0.4s ease-out;
  transform: scale(1);
  cursor: pointer;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.tail-spend-visual:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.tail-spend-hoverable {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  height: auto;
}

/* Imagen por defecto (visible) */
.tail-spend-hoverable:first-child {
  opacity: 1;
  z-index: 1;
}

/* Imagen hover (oculta por defecto) */
.tail-spend-hoverable:last-child {
  opacity: 0;
  z-index: 2;
}

/* Al hacer hover, ocultar la primera y mostrar la segunda */
.tail-spend-visual:hover .tail-spend-hoverable:first-child {
  opacity: 0;
}

.tail-spend-visual:hover .tail-spend-hoverable:last-child {
  opacity: 1;
}

  /* SECCION: TAIL SPEND PROBLEM */
  .tail-spend-problem {
    min-height: 100vh;
    padding-top: 6rem;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--gray-50) 100%);
  }

  .tail-spend-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .tail-spend-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }



  /* RESPONSIVE TAIL SPEND */
  @media (max-width: 768px) {
    .tail-spend-content {
      gap: 2rem;
    }
    
    .tail-spend-text {
      max-width: 100%;
    }
  }

  .tail-spend-chart {
    background-color: transparent;
    max-width: 75.2%; /* 83.5% - 10% = 75.2% */
    height: auto;
    border-radius: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.03));
  }

  @media (min-width: 768px) {
    .tail-spend-chart {
      max-width: 62.6%; /* 69.5% - 10% = 62.6% */
    }
  }

  @media (min-width: 1024px) {
    .tail-spend-chart {
      max-width: 54.1%; /* 60.1% - 10% = 54.1% */
    }
  }

  @media (max-width: 1023px) {
    .tail-spend-problem {
      padding: 2rem 0 4rem 0;
    }
  }
  
  .hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    backdrop-filter: blur(4px);
  }
  
  .hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .hero-feature i {
    color: var(--green-400);
  }
  
  /* SECTIONS */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 1.5rem 0;
    text-align: center;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  @media (min-width: 768px) {
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .section-title {
      font-size: 3rem;
    }
  }
  
  .section-description {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    color: var(--gray-600) !important;
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif !important;
}
  
  /* Testimonials */
  .testimonials {
    padding: 6rem 0;
    background-color: white;
  }
  
  @media (min-width: 768px) {
    .testimonials {
      padding: 8rem 0;
    }
  }
  
  .testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
  }
  
  .testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-stars i {
    color: var(--yellow-400);
  }
  
  .testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .author-name {
    font-weight: 600;
    color: var(--gray-900);
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  /* Pricing */
  .pricing {
    padding: 6rem 0;
    background-color: var(--gray-50);
  }
  
  @media (min-width: 768px) {
    .pricing {
      padding: 8rem 0;
    }
  }
  
  .pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .pricing-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .pricing-card {
    position: relative;
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
  }
  
  .pricing-popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
  }
  
  .popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: var(--primary);
    border-radius: 9999px;
  }
  
  .pricing-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .pricing-subtitle {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .pricing-period {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-600);
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .pricing-features {
    margin-bottom: 2rem;
  }
  
  .pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .pricing-feature i {
    color: var(--primary);
    flex-shrink: 0;
  }
  
  .btn-pricing-primary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: var(--primary);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .btn-pricing-primary:hover {
    background-color: var(--primary-600);
  }
  
  .btn-pricing-secondary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-900);
    background-color: var(--gray-100);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .btn-pricing-secondary:hover {
    background-color: var(--gray-200);
  }
  
  /* Final CTA */
  .final-cta {
    padding: 6rem 0;
    background-color: var(--primary);
  }
  
  @media (min-width: 768px) {
    .final-cta {
      padding: 8rem 0;
    }
  }
  
  .cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    .cta-content {
      max-width: 64rem;
    }
  }
  
  .cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  @media (min-width: 768px) {
    .cta-title {
      font-size: 2.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .cta-title {
      font-size: 3rem;
    }
  }
  
  .cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 32rem;
    margin: 0 auto 2rem;
    font-weight: 400;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 640px) {
    .cta-buttons {
      flex-direction: row;
    }
  }
  
  .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
    background-color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .btn-cta-primary:hover {
    background-color: var(--gray-50);
  }
  
  .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .cta-feature i {
    color: var(--green-400);
  }
  
  /* Footer */
  .footer {
    padding: 4rem 0;
    background-color: var(--gray-900);
    color: white;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr 3fr;
      gap: 4rem;
    }
  }
  
  .footer-brand .logo-text {
    color: white;
  }
  
  .footer-description {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 1rem;
  }
  
  .footer-links {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-links {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .footer-title {
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .footer-list {
    list-style: none;
  }
  
  .footer-list li {
    margin-bottom: 0.5rem;
  }
  
  .footer-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
    gap: 1.5rem;
  }
}
  
  .footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-align: left;
    flex-shrink: 0;
    max-width: 400px;
  }

  @media (max-width: 767px) {
    .footer-copyright {
      font-size: 0.8rem;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .footer-copyright {
      font-size: 0.75rem;
    }
  }
  

  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767px) {
    .hero-content {
      max-width: 100%;
      padding: 1rem;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-description {
      font-size: 1rem;
    }
  
    .section-title {
      font-size: 1.75rem;
    }
  
    .section-description {
      font-size: 1rem;
    }
  }

.tabla-con-scroll {
    border: none;
    border-radius: 8px;
    overflow-y: auto;
    max-height: 400px; /* Reducir la altura máxima */
    min-height: 200px;
    position: relative;
}

/* Agregar estilos para el scrollbar */
.tabla-con-scroll::-webkit-scrollbar {
    width: 8px;
}

.tabla-con-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.tabla-con-scroll::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.tabla-con-scroll::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* SECCIÓN PARTNERS/PROVEEDORES */
.partners-cta {
  background: linear-gradient(90deg, #f0f9fa 0%, #d9f0f2 100%);
  padding: 2rem 0 2rem 0;
  text-align: center;
}

.partners-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

  .partners-cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-900, #111827);
    margin-bottom: 1rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .partners-cta-description {
    font-size: 1.15rem;
    font-weight: 400;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  /* SECCION: USER PROFILES */
  .user-profiles-section {
    padding: 6rem 0 0 0;
    background: white;
  }

  /* Profile Toggle */
  .profile-toggle {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    background: white;
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .profile-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(80, 137, 145, 0.3);
  }

  .profile-btn:hover:not(.active) {
    background: var(--gray-100);
    color: var(--gray-700);
  }

  .profile-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Profile Content */
  .profile-content {
    position: relative;
    min-height: 600px;
  }

  .profile-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .profile-panel.active {
    display: block;
    opacity: 1;
  }

  /* Profile Panel specific styles */
  .profile-panel .preview-row {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
  }

  .profile-panel .preview-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .profile-panel .preview-content h3 {
    font-size: 1.75rem;
    font-weight: 400;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--gray-900);
    display: flex;
    align-items: center;
  }

  .profile-panel .preview-content h3 svg {
    flex-shrink: 0;
    color: var(--gray-900);
  }

  .profile-panel .preview-content p {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--gray-600);
  }

  .profile-panel .preview-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .profile-panel .preview-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--gray-600);
  }

  .profile-panel .preview-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("/assets/icons/check.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .profile-panel .preview-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
  }



  /* Responsive Profile Toggle */
  @media (max-width: 768px) {
    .profile-toggle {
      margin: 2rem 1rem;
      flex-direction: column;
      max-width: 100%;
    }
    
    .profile-btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.875rem;
    }
    
    .profile-content {
      min-height: 500px;
    }
    
    .preview-row {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
    }
    
    .preview-content {
      max-width: 100%;
      text-align: center;
    }

    .profile-panel .preview-row {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
    }
    
    .profile-panel .preview-content {
      max-width: 100%;
      text-align: center;
    }

    .profile-panel .preview-content h3 {
      font-size: 1.25rem;
      font-weight: 300;
      font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
      justify-content: center;
    }

    .profile-panel .preview-content p {
      text-align: center;
      font-size: 1.25rem;
      font-weight: 300;
      font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
    }

    .profile-panel .preview-content li {
      text-align: center;
      font-size: 1.25rem;
      font-weight: 300;
      font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
    }
    
    .profile-panel .preview-visual {
      max-width: 100%;
    }
  }

  /* PREVIEW SECTION */
  .preview {
    padding: 4rem 0 4rem 0;
    gap: 2rem;
  }

  .preview-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    background-color: white;
  }

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

  .preview-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
  }

  .preview-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
  }

  .preview-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .preview-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-align: left;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .preview-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 450px;
    min-width: 0;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
  }

  .laptop-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
  }

  .laptop-screen {
    background:transparent;
    overflow: hidden;
    position: relative;
  }

  .screen-content {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  @media (max-width: 1024px) {
    .preview-row {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
      margin-bottom: 3rem;
    }

    .preview-row.reverse {
      flex-direction: column;
      margin-bottom: 3rem;
    }

    .preview-content {
      max-width: 100%;
    }

    .preview-title {
      font-size: 2rem;
    }

    .preview-subtitle {
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--primary);
      text-align: left;
    }

    .laptop-mockup {
      max-width: 280px;
      transform: none;
    }

    .laptop-mockup:hover {
      transform: none;
    }
  }

  @media (max-width: 600px) {
    .preview-row {
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .preview-row.reverse {
      margin-bottom: 2rem;
    }
  }

  /* PROFILE SECTIONS */
  .profile-section {
    margin-bottom: 6rem;
  }

  .profile-section:last-child {
    margin-bottom: 0;
  }

  .profile-header {
    margin-bottom: 3rem;
    text-align: left;
  }

  .profile-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: left;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .profile-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.6;
    text-align: left;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .profile-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    text-align: left;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .profile-subdescription {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.5;
    text-align: left;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .preview-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0;
    text-align: left;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  @media (max-width: 768px) {
    .profile-title {
      font-size: 1.75rem;
    }
    
    .profile-description {
      font-size: 1rem;
    }
  }

  /* HOW IT WORKS SECTION */
.how-it-works-section {
  min-height: 100vh;
  position: relative;
  padding-top: 4rem;
}

/* Reducir el margin-bottom de la section-header en How it Works */
.how-it-works-section .section-header {
  margin-bottom: 2rem; /* Reducido de 4rem a 2rem */
}

.how-it-works-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0rem 1.5rem 2rem 1.5rem;
  overflow: hidden;
}

  .how-it-works-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-height: none;
    overflow: visible;
  }

.how-it-works-steps {
  flex: 1 1 100%;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
}

/* Barra de Progreso Horizontal */
.progress-bar-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: var(--gray-200);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 33.33%; /* Inicialmente solo el primer step */
}

/* Estados de la barra de progreso según el step activo */
.progress-fill[data-step="1"] {
  width: 33.33%;
}

.progress-fill[data-step="2"] {
  width: 66.66%;
}

.progress-fill[data-step="3"] {
  width: 100%;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  min-width: 0;
  gap: 0.5rem;
  opacity: 0.1;
  transition: opacity 0.3s, font-weight 0.3s;
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  padding: 0.5rem 1rem;
  flex-shrink: 0;
}

.how-step:hover {
  transform: scale(1.05);
}

.how-step.active {
  opacity: 1;
  font-weight: 700;
  transform: scale(1.05);
}

.step-number {
  color: #508991;
  font-size: 1.125rem;
  font-weight: 600;
  margin-right: 0.5rem;
  font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
}

.how-step:not(.active) .step-number {
  color: #7b8a8b;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gray-900);
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  text-align: center;
  white-space: nowrap;
}

.how-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 1.25rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.how-it-works-content {
  flex: 1 1 100%;
  min-width: 0;
  position: static;
  min-height: 180px;
  max-height: none;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 24px;
}

.how-content {
  display: block;
  opacity: 1;
  background: #fff;
  padding: 2rem;
  height: 250px;
  max-width: 600px;
  z-index: 1;
  position: static;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 24px;
}

.how-content.active {
  z-index: 2;
  position: static;
  transform: none;
}

.how-content.active .how-content-inner {
  transform: translateY(0);
  opacity: 1;
}

.how-content:not(.active) {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.how-content-inner {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: none;
  opacity: 1;
  will-change: transform, opacity;
}

.how-content.entering .how-content-inner {
  transform: translateY(20px);
  opacity: 0;
}

.how-content.entering.active .how-content-inner {
  transform: none;
  opacity: 1;
}

.how-content.exiting .how-content-inner {
  transform: translateY(-20px);
  opacity: 0;
}

.how-content:not(.active) .how-content-inner {
  transform: translateY(10px);
  opacity: 0.7;
}

.how-icon svg {
  width: 40px;
  height: 40px;
  display: block;
  fill: currentColor;
}

.how-it-works-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  gap: 0.5rem;
}

.how-it-works-note {
  color: #7b8a8b;
  font-size: 1rem;
  margin: 0;
  font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Responsive */
@media (max-width: 900px) {
  #how-it-works {
    min-height: unset;
  }
  .how-it-works-container {
    position: static;
    height: auto;
    padding: 2rem 0.5rem 0 0.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .how-it-works-content-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0.5rem 0 0.5rem;
  }
  .how-it-works-steps, .how-it-works-content {
    flex: 1 1 100%;
    min-width: 0;
  }
  .how-it-works-steps {
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    min-width: 0;
  }
  .how-step {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.1rem;
    max-width: 150px;
  }
  
  .how-icon {
    width: 64px;
    height: 64px;
  }
  
  .how-icon svg {
    width: 32px;
    height: 32px;
  }
  .step-title {
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
  }
  .how-it-works-content {
    min-height: 180px;
    position: static;
  }
  .how-content, .how-content.active {
    position: static;
    max-width: 100%;
  }
  .how-content {
    padding: 1.5rem 1rem 1rem 1rem;
    min-height: 160px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  }
  
  .progress-bar-container {
    max-width: 500px;
    margin: 1.5rem auto 0 auto;
  }
  
  .progress-bar {
    height: 3px;
  }
}
@media (max-width: 600px) {
  .how-it-works-section {
    padding: 0 0 1.5rem 0;
  }
  .how-it-works-container {
    padding: 1.2rem 0.2rem 0 0.2rem;
  }
  .how-content {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    min-height: 120px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .btn-how-cta {
    width: 100%;
    padding: 1rem 0;
  }
  
  .how-icon {
    width: 56px;
    height: 56px;
  }
  
  .how-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .progress-bar-container {
    max-width: 400px;
    margin: 1rem auto 0 auto;
  }
  
  .progress-bar {
    height: 2px;
  }
}

  .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    border: none;
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  }

  .cta-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin: 0;
  }

  /* Responsive adjustments for how it works */
  @media (max-width: 768px) {
    .how-it-works {
      padding: 2rem 0;
      margin: 0 0.5rem;
      border-radius: 0 0 2rem 2rem;
    }

    .how-it-works::before {
      border-radius: 0 0 2rem 2rem;
    }

    .steps-grid {
      gap: 1.5rem;
    }

    .step-card {
      padding: 1.5rem;
    }

    .step-title {
      font-size: 1.25rem;
    }

    .btn-large {
      padding: 1rem 2rem;
      font-size: 1.125rem;
    }
  }

  @media (max-width: 480px) {
    .how-it-works {
      margin: 0 0.25rem;
      border-radius: 0 0 1.5rem 1.5rem;
    }

    .how-it-works::before {
      border-radius: 0 0 1.5rem 1.5rem;
    }
  }

  /* PARTNERS SECTION */
  .partners {
    padding: 2rem 0;
    background-color: #508991;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .partners {
      padding: 2rem 0;
    }
  }

  .partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto 4rem;
  }

  @media (min-width: 768px) {
    .partners-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }
  }

  .partner-category {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-100);
  }

  .partner-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
  }

  .category-icon {
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    justify-content: center;
  }

  .category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .category-description {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  
  .partners-cta {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
  }

  .partners-cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .partners-cta-description {
    font-weight: 400;
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  /* Estilos específicos para la sección partners simplificada */
  .partners .section-title {
    color: white;
  }

  .partners .section-description {
    color: white;
  }

  .partners .btn-large {
    background: white;
    color: #508991;
    border: 2px solid white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .partners .btn-large:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #508991;
    transform: translateY(-2px);
  }

  /* RESPONSIVE ADJUSTMENTS FOR PARTNERS */
  @media (max-width: 768px) {
    .partners {
      padding: 4rem 0;
      border-radius: 2rem;
    }
  }

  @media (max-width: 480px) {
    .partners {
      border-radius: 1.5rem;
    }
    
    .partners-grid {
      gap: 1.5rem;
    }

    .partner-category {
      padding: 1.5rem;
    }

    .category-title {
      font-size: 1.25rem;
    }

    .partners-cta {
      padding: 2rem 1.5rem;
    }

    .partners-cta-title {
      font-size: 1.5rem;
    }
  }

  /* NEWS SECTION */
  .news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
  }

  .news-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .news-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.75rem;
    height: 100%;
    flex: 1;
  }

  .news-logo {
    width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
    display: block;
  }

  .news-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gray-800) !important;
    margin: 0 0 1rem 0;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
    line-height: 1.3;
  }

  .news-description {
    font-size: 1.125rem !important;
    font-weight: 400 !important;
    color: var(--gray-600) !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.6;
    flex: 1;
  }

  .news-btn {
    width: fit-content;
    align-self: flex-start;
    margin-top: auto;
  }

  /* BOTÓN VOLVER AL INICIO - Estilos base */
  .btn-volver-inicio {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start;
    border: none;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.2s ease;
    text-align: left;
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none !important;
    font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  }

  .btn-volver-inicio:hover {
    background-color: #f3f4f6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #374151;
  }

  .btn-volver-inicio .chevron-icon {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
  }

  .btn-volver-inicio svg {
    width: 24px;
    height: 24px;
    fill: #09090b;
  }

  /* Estilos específicos para botones "Leer más" con estilo btn-volver-inicio */
  .news-btn.btn-volver-inicio {
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .news-btn.btn-volver-inicio svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }

  /* RESPONSIVE NEWS CARDS */
  @media (max-width: 768px) {
    .news-cards {
      grid-template-columns: 1fr;
      max-width: 100%;
      padding: 0 1rem;
    }
    
    .news-card {
      max-width: 100%;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .news-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1025px) {
    .news-cards {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* SECTION-BASED TRANSITIONS */
  .section-transition {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .section-transition.section-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ELEMENT ANIMATIONS */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  /* STAGGERED ANIMATIONS FOR SPECIFIC ELEMENTS */
  .steps-grid .step-card {
    transition-delay: calc(var(--animation-order, 0) * 0.1s);
  }

  .testimonials-grid .testimonial-card {
    transition-delay: calc(var(--animation-order, 0) * 0.15s);
  }

  .pricing-grid .pricing-card {
    transition-delay: calc(var(--animation-order, 0) * 0.1s);
  }

  .partners-grid .partner-category {
    transition-delay: calc(var(--animation-order, 0) * 0.1s);
  }

  /* HERO SECTION SPECIAL ANIMATION */
  .hero.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  /* TAIL SPEND SECTION SPECIAL ANIMATION */
  .tail-spend-content {
    animation: fadeInUp 0.8s ease-out 0.3s both;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* PREVIEW SECTION SPECIAL ANIMATION */
  .preview-row {
    animation: slideInFromSide 0.8s ease-out both;
  }

  .preview-row:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease-out both;
  }

  .preview-row:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out both;
  }

  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ENHANCED HOVER EFFECTS */
  .step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .partner-category:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  /* SMOOTH SCROLLING ENHANCEMENT */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
  }

  /* PERFORMANCE OPTIMIZATIONS */
  .section-transition,
  .animate-on-scroll {
    will-change: opacity, transform;
  }

  /* REDUCED MOTION SUPPORT */
  @media (prefers-reduced-motion: reduce) {
    .section-transition,
    .animate-on-scroll,
    .hero,
    .tail-spend-content,
    .preview-row {
      animation: none;
      transition: none;
    }
  }

#tail-spend .section-title {
  white-space: nowrap;
  text-align: center;
  margin-left: 0;
  margin-right: 0;
}

.tail-spend-highlight {
  color: #508991;
  font-weight: 500;
}

/* CLASE GENÉRICA PARA SECCIONES CON FONDO VERDE/AZULADO */
.section-description-white {
  color: white !important;
  font-family: 'Geist', 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.25rem !important;
  font-weight: 300 !important;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

/* APLICACIÓN AUTOMÁTICA A SECCIONES CON FONDO VERDE/AZULADO */
.partners .section-description,
.final-cta .section-description,
.partners-cta .section-description {
  color: white !important;
}

/* EVITAR SALTO DE LÍNEA EN DESKTOP PARA PARTNERS */
@media (min-width: 768px) {
  .partners .section-description {
    white-space: nowrap;
  }
}

/* EVITAR SALTO DE LÍNEA EN DESKTOP PARA USER PROFILES */
@media (min-width: 768px) {
  #user-profiles .section-description {
    white-space: nowrap;
  }
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float img {
  width: 56px;
  height: 56px;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}