
    :root {
        --primary-color-blue: #2e0086;
        --primary-color-red: #ff2014;
        --secondary-color-gray: #ffa814;
        --third-color-green: #89ff14;
    }

    body {
        font-family: 'Open Sans', sans-serif;
        background-color: #ffffff;
        overflow-x: hidden;
    }

    .navbar-brand img {
        height: 70px;
    }

    .bg-custom-blue {
        background-color: var(--primary-color-blue);
    }

    .text-custom-blue {
        color: var(--primary-color-blue);
    }

    .text-custom-red {
        color: var(--primary-color-red);
    }

    .btn-custom {
        background-color: var(--primary-color-red);
        color: white;
        border: none;
        padding: 10px 25px;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border-radius: 50px;
    }
    .btn-custom:hover {
        background-color: #ff2014;
        color: white;
        transform: translateY(-2px);
    }

    .hero {
        background: linear-gradient(rgba(46, 0, 134, 0.7), rgba(46, 0, 134, 0.7)), url('../img/hero-background.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0;
        text-align: center;
        color: white;
        position: relative;
    }
    .hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    .hero p.lead {
        font-size: 1.5rem;
        max-width: 800px;
        margin: 20px auto;
    }
    
    .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 40px;
        position: relative;
        display: inline-block;
        color: var(--primary-color-blue);
    }
    .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary-color-red);
        border-radius: 2px;
    }

    .service-card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        height: 100%;
        background-color: #fff;
        padding: 30px;
    }
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
    .icon-box {
        background-color: var(--primary-color-blue);
        color: white;
        border-radius: 10px;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        margin-bottom: 20px;
        box-shadow: 0 4px 10px rgba(46, 0, 134, 0.4);
        transition: all 0.3s ease;
    }
    .service-card:hover .icon-box {
        background-color: var(--primary-color-red);
        transform: scale(1.1);
    }
    
    #pricing {
        background-color: var(--secondary-color-gray);
        padding: 80px 0;
    }
    .price-box {
        background-color: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .price-box .price {
        font-size: 4rem;
        font-weight: 800;
        color: var(--primary-color-blue);
        margin: 25px 0;
        line-height: 1;
    }
    .price-box .price .main-number {
        font-size: 3em;
        color: var(--primary-color-red);
        font-weight: 900;
    }
    .price-box .price .unit {
        font-size: 0.5em;
        vertical-align: super;
        font-weight: 500;
    }
    .price-box .price .pound {
         font-size: 0.4em;
         vertical-align: sub;
    }
    .list-unstyled li {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #555;
    }

    .image-content-section {
        padding: 80px 0;
        background-color: #fff;
    }
    .image-content-section .img-fluid {
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    .image-content-section h3 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-color-blue);
        margin-bottom: 25px;
    }
    .image-content-section p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #444;
    }

    .how-it-works-step {
        display: flex;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .how-it-works-step .step-number {
        background-color: var(--primary-color-blue);
        color: white;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        min-width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: bold;
        margin-right: 20px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    .how-it-works-step:hover .step-number {
        background-color: var(--primary-color-red);
        transform: scale(1.1);
    }
    .how-it-works-step h4 {
        color: var(--primary-color-blue);
        font-weight: 700;
        margin-bottom: 10px;
    }
    .how-it-works-step p {
        color: #555;
    }

    /* Sección de "Listo para empezar" ahora con fondo gris */
    .call-to-action-section {
        background-color: var(--secondary-color-gray); /* Cambiado a gris */
        color: var(--primary-color-blue); /* Texto azul para contraste */
        padding: 5rem 0;
        text-align: center;
    }
    .call-to-action-section h2 {
        color: var(--primary-color-blue);
    }
    .call-to-action-section p.lead {
        color: #555; /* Un gris más oscuro para el texto del párrafo */
    }


    .footer-custom {
        background-color: var(--primary-color-blue);
        color: white;
        padding: 30px 0; /* Un poco más de padding, pero sigue siendo compacto */
        font-size: 1rem;
    }
    .footer-links a,
    .footer-icons a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
        margin: 0 10px;
        font-weight: 500;
    }
    .footer-links a:hover,
    .footer-icons a:hover {
        color: var(--primary-color-red);
        transform: translateY(-3px);
    }

    .social-icons a {
        font-size: 1.8rem;
    }
    .modal-header.bg-custom-blue {
        background-color: var(--primary-color-blue) !important;
    }
    .modal-title {
        color: white;
    }
    .btn-close-white {
        filter: invert(1);
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        color: var(--primary-color-red) !important;
    }

    @media (max-width: 991.98px) {
        .hero h1 {
            font-size: 2.8rem;
        }
        .hero p.lead {
            font-size: 1.2rem;
        }
        .section-title {
            font-size: 2.2rem;
        }
        .navbar-collapse {
            background-color: white;
            margin-top: 10px;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .navbar-nav .nav-item .nav-link {
            padding: 10px 15px;
        }
        .navbar-nav .btn-custom {
            margin-top: 15px;
            width: 100%;
        }
        .how-it-works-step {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .how-it-works-step .step-number {
            margin-right: 0;
            margin-bottom: 20px;
        }
    }

    .social-icons a {
    text-decoration: none !important; /* quita el underline */
    color: white; /* el color que quieras */
    font-size: 1.8rem; /* el tamaño del icono */
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
        color: var(--primary-color-red); /* cambia al pasar el mouse */
        transform: translateY(-3px);
    }

    .parallax-bg {
        background: url('../img/pricing-background.jpg') no-repeat center center; /* Reemplaza con una imagen de fondo si lo deseas, si no, usa el color */
        background-size: cover;
        background-attachment: fixed;
    }
    .parallax-content {
        position: relative;
        z-index: 2; /* Asegura que el contenido esté por encima del fondo */
    }

    .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.8) !important; /* Fondo semitransparente */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra suave para que resalte */
    backdrop-filter: blur(5px); /* Efecto de desenfoque detrás del menú */
    transition: background-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.sticky-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #50c100;
    border-radius: 30px;
    text-decoration: none;
  }
  .sticky-whatsapp:hover {
    background: #337405;
  }
  .sticky-whatsapp i {
    font-size: 30px;
    color: #fff;
  }

        .logo-carousel-section {
            padding: 40px 0;
            background-color: black;
            color: var(--color-text-light);
            text-align: center;
            overflow: hidden; /* Esto es clave para el contenedor de la sección */
            position: relative; /* Necesario para los pseudo-elementos del degradado */
        }

        .logo-carousel-section h2 {
            margin-bottom: 20px;
            color: var(--color-text-light);
        }

        /* Este es el nuevo contenedor que actúa como "máscara" o "ventana" */
        .logo-carousel-wrapper {
            width: 100%;
            overflow: hidden; /* Oculta lo que se desborda del carrusel */
            position: relative; /* Necesario para los degradados */
        }
        
        /* Efecto de desvanecimiento en los bordes */
        .logo-carousel-wrapper::before,
        .logo-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 10%; /* Ancho del degradado */
            height: 100%;
            z-index: 10;
        }

        .logo-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--color-secondary), rgba(0,0,0,0));
        }

        .logo-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--color-secondary), rgba(0,0,0,0));
        }

        .logo-carousel {
            display: flex;
            width: max-content; /* Es crucial para que todos los logos estén en línea */
            animation: scroll-logos 30s linear infinite; /* Animación de loop */
        }

        .logo-slide {
            padding: 0 30px; /* Espacio entre logos */
            flex-shrink: 0; /* Evita que los logos se encojan */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-slide img {
            height: 50px; /* Tamaño de los logos */
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        

        .logo-slide img:hover {
            opacity: 1;
        }

        /* La animación de desplazamiento */
        @keyframes scroll-logos {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); } /* Se mueve el 50% de su ancho total para un loop perfecto */
        }