
    .site-footer {
        background-color: var(--color-primary); /* Fondo con color primario */
        color: var(--color-bg); /* Color de texto */
        padding: 60px 20px 20px; /* Espaciado interno */
        font-family: 'Arial', sans-serif; /* Fuente moderna */
    }
  
    .wrap1 {
        margin: 0 auto; /* Centrar el contenido */
        display: inline-flex;
        flex-wrap: wrap; /* Permitir que los elementos se ajusten en pantallas pequeñas */
        gap: 10px; /* Espacio entre columnas */
        justify-content: space-between;
    }
  
    .footer-widget {
	        margin-left: 60px;
    margin-right: 60px;
    }
  
    .footer-heading {
        font-size: 22px; /* Tamaño de fuente más grande */
        margin-bottom: 20px; /* Espaciado inferior */
        font-weight: bold;
        color: var(--color-bg); /* Color de texto */
        position: relative;
        text-transform: uppercase;
    }
  
    .footer-heading::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: var(--color-hover); /* Línea decorativa */
        margin-top: 10px;
        color: white;
        
    }
  
    .footer-widget p {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.8); /* Texto más suave */
    }
  
    .footer-links ul {
        list-style: none;
        padding: 0;
    }
  
    .footer-links li {
        margin-bottom: 15px;
    }
  
    .footer-links a {
        color: var(--color-bg);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
  
    .footer-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background-color: var(--color-hover);
        transition: width 0.3s ease;
    }
  
    .footer-links a:hover {
        color: var(--color-hover);
    }
  
    .footer-links a:hover::after {
        width: 100%;
    }
  
    .footer-socials {
        margin-top: 20px;
    }
  
    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px; /* Espacio entre iconos */
    }
  
    .social-links a {
        color: var(--color-bg);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease, transform 0.3s ease;
    }
  
    .social-links a:hover {
        color: var(--color-hover);
        transform: scale(1.1); /* Efecto de escala al hacer hover */
    }
  
    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1); /* Línea decorativa */
        font-size: 14px;

    }
  
    .footer-bottom a {
        color: var(--color-bg);
        text-decoration: none;
        transition: color 0.3s ease;
    }
  
    .footer-bottom a:hover {
        color: var(--color-hover);
    }
  
    /* Animación para el footer */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
  
    .site-footer {
        animation: fadeInUp 1s ease-out; /* Animación de entrada */
    }
  
    .footer-copyright {
        padding: 20px 0;
        text-align: center;
        font-size: 14px;
        color: white;
        background: var(--color-primary);
    }
  
    .footer-copyright a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }
  
    .footer-copyright a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background-color: #0073e6;
        transition: width 0.3s ease;
    }
  
    .footer-copyright a:hover {
        color: #0073e6;
    }
  
    .footer-copyright a:hover::after {
        width: 100%;
    }
  
    .footer-copyright p {
        margin: 5px 0;
    }
  
    .t3-logo {
        text-align: center;
        padding: 5px 0;
        background: white;
        border-top: 1px solid #e0e0e0;
    }
  
    .t3-logo a {
        color: var(--color-primary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }
  
    .t3-logo a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background-color: #0073e6;
        transition: width 0.3s ease;
    }
  
    .t3-logo a:hover {
        color: #0073e6;
    }
  
    .t3-logo a:hover::after {
        width: 100%;
    }

    .t3-logo {
        text-align: center;
        padding: 10px 0;
        background: #f8f9fa;
        border-top: 1px solid #e0e0e0;
    }

    .t3-logo-light {
        background: white;
        color: var(--color-primary);
    }

    .t3-logo .main {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .t3-logo a {
        color: var(--color-primary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

    .t3-logo a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background-color: #0073e6;
        transition: width 0.3s ease;
    }

    .t3-logo a:hover {
        color: #0073e6;
    }

    .t3-logo a:hover::after {
        width: 100%;
    }

    .t3-logo #ja-poweredby {
        display: none; /* Ocultar el div vacío */
    }



    .trustpilot-button a {
        display: inline-block;
        padding: 10px 20px;
        background-color: white; 
        color: var(--color-primary);
        text-decoration: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }
    
    .trustpilot-button a:hover {
        transform: scale(1.1); 
    }
    
    @media (max-width: 768px) {
        .trustpilot-button a {
            font-size: 14px;
            padding: 8px 16px;
        }
    }

