    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      /* Previene el scroll horizontal */
    }

    /* Custom styles for hero section background image */
    .hero-background {
      background-color: #0A192F;
      /* color oscuro */
      /*background-image: url('https://placehold.co/1920x1080/0A192F/E0E7FF?text=Profesionalismo+y+Confianza');*/
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* Swiper custom styling */
    .swiper-pagination-bullet-active {
      background-color: #3B82F6 !important;
      /* Blue-500 */
    }

    /* Custom scrollbar for better aesthetics */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #555;
    }


    /* Estilo personalizado para asegurar que la paginación no se superponga */
    .swiper-container-testimonials .swiper-pagination {
      position: relative;
      /* Cambia a posición relativa para que ocupe espacio normal en el flujo del documento */
      margin-top: 1.5rem;
      /* Añade un margen superior para separarse de los slides */
    }

    /* Corrige el color de los puntos de paginación de Swiper */
    .swiper-pagination-bullet {
      background: #4B5563 !important;
      /* Color gris */
      opacity: 0.8 !important;
    }

    .swiper-pagination-bullet-active {
      background: #3B82F6 !important;
      /* Color azul para el punto activo */
      opacity: 1 !important;
    }

    /*.........modals*/
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
      /*opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;*/
      animation: pop-in 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .modal-overlay.active {
      /*opacity: 1;
      visibility: visible;*/
      display: flex;
    }

    .modal-container {
      background-color: white;
      padding: 2rem;
      border-radius: 0.75rem;
      max-width: 800px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      transform: scale(0.95);
      /*transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);*/
      opacity: 0;
      transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.3s ease;
    }

    .modal-overlay.active .modal-container {
      transform: scale(1);
      opacity: 1;
    }

    .modal-close-button {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: #4B5563;
    }