/* Base Styles */
:root {
    --pos-blue: #1e5b96;
    --pos-green: #0d8a6f;
    --pos-orange: #f97316;
    --pos-red: #e11d48;
    --pos-light-blue: #e6f3ff;
    --pos-light-green: #e6fff9;
    --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;
    --white: #ffffff;
    --black: #000000;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-700);
    line-height: 1.5;
    background-color: var(--white);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.25rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  .text-blue {
    color: var(--pos-blue);
  }
  
  .text-green {
    color: var(--pos-green);
  }
  
  .text-orange {
    color: var(--pos-orange);
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--pos-blue);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: rgba(30, 91, 150, 0.9);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--pos-blue);
    border: 1px solid var(--pos-blue);
  }
  
  .btn-outline:hover {
    background-color: var(--pos-light-blue);
  }
  
  .btn-outline-blue {
    background-color: transparent;
    color: var(--pos-blue);
    border: 1px solid var(--pos-blue);
  }
  
  .btn-outline-blue:hover {
    background-color: var(--pos-light-blue);
  }
  
  .full-width {
    width: 100%;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 50;
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pos-blue);
  }
  
  .desktop-menu {
    display: none;
  }
  
  .nav-link {
    margin-left: 2rem;
    color: var(--gray-600);
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--pos-blue);
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu-btn button {
    background: none;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .mobile-menu .nav-link {
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
  }
  
  .mobile-menu .btn {
    margin-top: 0.5rem;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 {
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-clients {
    color: var(--gray-500);
  }
  
  .hero-image {
    position: relative;
  }
  
  .image-wrapper {
    position: relative;
  }
  
  .image-wrapper::before {
    content: '';
    position: absolute;
    inset: -0.125rem;
    background: linear-gradient(to right, var(--pos-blue), var(--pos-green));
    border-radius: 1rem;
    filter: blur(0.5rem);
    opacity: 0.3;
  }
  
  .image-content {
    position: relative;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .svg-icon {
    width: 12rem;
    height: 12rem;
  }
  
  /* Animations */
  .animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
  }
  
  .animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Section Styling */
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .section-header.light h2, 
  .section-header.light p {
    color: var(--white);
  }
  
  /* Features Section */
  .features {
    background-color: var(--gray-50);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
  }
  
  .feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .feature-icon {
    margin-bottom: 1.25rem;
  }
  
  .icon-blue {
    color: var(--pos-blue);
  }
  
  .icon-green {
    color: var(--pos-green);
  }
  
  .icon-orange {
    color: var(--pos-orange);
  }
  
  .feature-card h3 {
    margin-bottom: 0.75rem;
  }
  
  .feature-card p {
    color: var(--gray-600);
  }
  
  .features-cta {
    margin-top: 4rem;
    text-align: center;
  }
  
  .features-cta p {
    margin-bottom: 1.5rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: var(--pos-blue);
    color: var(--white);
    padding: 5rem 0;
  }
  
  /* Cliente Logo Slider */
  .client-logo-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1rem 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
  }
  
  .client-logo-slider::-webkit-scrollbar {
    display: none;
  }
  
  .logo-slide {
    flex: 0 0 auto;
    min-width: 200px;
    width: 200px;
    background-color: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-right: 1rem;
  }
  
  .logo-slide:hover {
    transform: translateY(-5px);
  }
  
  .logo-slide img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    height: 80px; /* Fixed height for all images */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Remove any extra space */
  }
  
  /* Testimonials Grid - ya no se oculta, ahora lo usamos con Splide */
  .testimonials-grid {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Estilos específicos para Splide */
  .splide__slide {
    padding: 10px;
  }
  
  .splide__slide .logo-slide {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .splide__slide .logo-slide img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  
  .splide__pagination {
    bottom: -25px;
  }
  
  .splide__pagination__page {
    background: var(--gray-400);
  }
  
  .splide__pagination__page.is-active {
    background: var(--white);
  }
  
  /* Pricing Section */
  .pricing {
    background-color: var(--white);
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
  }
  
  .pricing-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    padding: 2rem;
    transition: all 0.3s ease;
  }
  
  .pricing-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .pricing-card.popular {
    border-color: var(--pos-blue);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: var(--pos-light-blue);
    transform: scale(1.05);
  }
  
  .popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--pos-green);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
  }
  
  .card-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
  }
  
  .period {
    color: var(--gray-600);
    margin-left: 0.25rem;
  }
  
  .description {
    color: var(--gray-600);
  }
  
  .features-list {
    margin-bottom: 2rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .icon-check {
    color: var(--pos-green);
    margin-right: 0.75rem;
    flex-shrink: 0;
  }
  
  .card-footer {
    text-align: center;
  }
  
  .pricing-note {
    margin-top: 3rem;
    text-align: center;
    color: var(--gray-600);
  }
  
  .link-blue {
    color: var(--pos-blue);
    font-weight: 500;
  }
  
  .link-blue:hover {
    text-decoration: underline;
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--gray-50);
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
  }
  
  .contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--pos-blue);
    box-shadow: 0 0 0 3px rgba(30, 91, 150, 0.1);
  }
  
  .contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info h3 {
    margin-bottom: 1.5rem;
  }
  
  .info-items {
    margin-bottom: 2rem;
  }
  
  .info-item {
    display: flex;
    margin-bottom: 1.5rem;
  }
  
  .info-icon {
    color: var(--pos-blue);
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .info-item p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
  }
  
  .social-links h4 {
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: var(--pos-blue);
  }
  
  /* Footer */
  .footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer-info {
    margin-bottom: 2rem;
  }
  
  .footer-info p {
    color: var(--gray-400);
    margin-top: 1rem;
  }
  
  .footer-links h3 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .footer-links ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links ul li a {
    color: var(--gray-400);
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: var(--white);
  }
  
  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom p {
    color: var(--gray-400);
    margin-bottom: 1rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-social a {
    color: var(--gray-400);
    transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
    color: var(--white);
  }
  
  /* Responsive Styles */
  @media (min-width: 640px) {
    h1 {
      font-size: 3rem;
    }
  
    .hero-buttons {
      flex-direction: row;
    }
    
    .form-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }
    
    .desktop-menu {
      display: flex;
      align-items: center;
    }
  
    .mobile-menu-btn {
      display: none;
    }
  
    .hero-content {
      grid-template-columns: 1fr 1fr;
    }
  
    .hero-text {
      text-align: left;
    }
  
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .pricing-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .contact-container {
      grid-template-columns: 1fr 1fr;
    }
  
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr;
    }
  
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .footer-bottom p {
      margin-bottom: 0;
    }
  
    .svg-icon {
      width: 16rem;
      height: 16rem;
    }
  }
  
  @media (min-width: 1024px) {
    h1 {
      font-size: 4rem;
    }
  
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }