
    .footer {
        background: #0d1118;
        color: #e0e0e0;
        font-family: 'Poppins', 'Montserrat', sans-serif;
        position: relative;
        overflow: hidden;
        padding: 0;
    }

    /* Elementos decorativos de fondo */
    .footer::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
    }

    .footer::after {
        content: "";
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
    }

    .footer-accent-line {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #3B82F6, transparent, #3B82F6);
        z-index: 2;
    }

    /* Contenedor principal */
    .footer-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
        position: relative;
        z-index: 3;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px;
        padding: 70px 0 50px;
    }

    /* Estilos de las secciones */
    .footer-section {
        position: relative;
    }

    .footer-logo {
        max-width: 200px;
        height: auto;
        margin-bottom: 20px;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        transition: filter 0.3s ease;
    }

    .footer-logo:hover {
        filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.2)) brightness(1.1);
    }

    /* Nuevo estilo para .footer-heading */
    .footer-heading {
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 12px;
    }

    .footer-heading::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: #3B82F6;
        border-radius: 2px;
    }

    /* Estilo específico para .footer-categories .footer-heading */
    .footer-categories .footer-heading {
        display: inline-block;
        padding-bottom: 10px;
    }

    .footer-categories .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .footer-section p {
        color: #cccccc;
        line-height: 1.7;
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* Estilos para la información de contacto */
    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        color: #3B82F6;
    }

    .contact-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-text a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-text a:hover {
        color: #3B82F6;
    }

    /* Estilos para la lista de políticas */
    .policies-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .policies-list li {
        margin-bottom: 13px;
    }

    .policies-list li a {
        color: #cccccc;
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
        padding-left: 22px;
    }

    .policies-list li a::before {
        content: "→";
        position: absolute;
        left: 0;
        color: #3B82F6;
        opacity: 0.8;
        transition: transform 0.3s ease;
    }

    .policies-list li a:hover {
        color: #3B82F6;
        padding-left: 25px;
    }

    .policies-list li a:hover::before {
        transform: translateX(3px);
    }

    /* Estilos para las categorías */
    .footer-categories {
        padding: 30px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
    }

    .categories-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
    }

    .category-link {
        background: rgba(59, 130, 246, 0.08);
        border: 1px solid rgba(59, 130, 246, 0.15);
        border-radius: 30px;
        padding: 10px 20px;
        color: #e0e0e0;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .category-link:hover {
        background: rgba(59, 130, 246, 0.15);
        color: #3B82F6;
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Estilos para el pie de página */
    .footer-bottom {
        background: rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        text-align: center;
        font-size: 14px;
        color: #a0a0a0;
        position: relative;
    }

    .footer-bottom strong {
        color: #3B82F6;
        font-weight: 600;
    }

    /* CTA de contacto */
    .contact-cta {
        margin-top: 30px;
        background: rgba(59, 130, 246, 0.05);
        border: 1px solid rgba(59, 130, 246, 0.1);
        border-radius: 12px;
        padding: 25px;
        position: relative;
        overflow: hidden;
    }

    .contact-cta::before {
        content: "";
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .contact-cta p {
        color: #bbb;
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .contact-btn {
        display: inline-flex;
        align-items: center;
        background: #3B82F6;
        color: #fff !important;
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    }

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
        background: #2563eb;
    }

    .contact-btn-icon {
        margin-left: 8px;
    }

    /* Estilos responsivos */
    @media (max-width: 1024px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .footer-section:first-child {
            grid-column: 1 / -1;
            text-align: center;
        }

        .footer-section:first-child .footer-logo {
            margin: 0 auto 20px;
        }

        .footer-section:first-child .footer-heading::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-section:first-child p {
            max-width: 600px;
            margin: 0 auto 20px;
        }
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
        }

        .footer-heading::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-item {
            flex-direction: column;
            align-items: center;
        }

        .contact-icon {
            margin: 0 0 10px 0;
        }

        .contact-text {
            text-align: center;
        }

        .policies-list li a {
            padding-left: 0;
        }

        .policies-list li a::before {
            display: none;
        }

        .categories-grid {
            gap: 10px;
        }

        .category-link {
            padding: 8px 15px;
            font-size: 13px;
        }
    }
