        /* Imagen soci en el footer */
        .soci-img {
            margin-top: 10px;
            max-width: 80px;
            margin-left: 80px;
            cursor: pointer;
        }
        /* Modal para imagen soci */
        .modal-img-soci .modal-dialog {
            max-width: 40vw;
        }
        .modal-img-soci .modal-content {
            background: transparent;
            border: none;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .modal-img-soci img {
            width: 40vw;
            max-width: 40vw;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 32px rgba(0,0,0,0.25);
        }
        .footer-bg {
            background: linear-gradient(135deg, #ebe6e6 0%, #c8c5c5 100%);
            color: #000;
            padding: 2rem 0 0.8rem 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            width: 100%;
            max-width: none;
            margin: 0;
        }

        .footer-row {
            width: min(94%, 1400px);
            max-width: 1400px;
            margin: 0 auto;
            --bs-gutter-x: 2rem;
            padding: 0 12px;
        }

        .footer-bg .footer-bottom {
            width: min(94%, 1400px);
            max-width: 1400px;
            margin: 1.2rem auto 0;
            padding: 1rem 12px 0;
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #000;
            text-shadow: none;
            position: relative;
        }

        /* Todos los textos del footer en bold */
        .footer-bg, .footer-bg p, .footer-bg span, .footer-bg a, .footer-bg li, .footer-bg .hashtag-badge, .footer-bg .footer-bottom, .footer-bg .footer-bottom p, .footer-bg .footer-title, .footer-bg .contact-item, .footer-bg .useful-links a, .footer-bg .footer-social-links a, .footer-bg .hashtag-title {
            font-weight: bold !important;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #dd1515;
            border-radius: 2px;
        }
        
        /* ✅ SECCIÓN CONTACTOS */
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.6rem;
            padding: 0.3rem 0;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(5px);
            color: #dd1515;
        }
        
        .contact-item i {
            font-size: 1.2rem;
            width: 25px;
            margin-right: 1rem;
            color: #000;
        }
        
        .contact-item span {
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .contact-item a {
            color: #000 !important;
            transition: all 0.3s ease;
            font-weight: bold;
        }
        
        .contact-item a:hover {
            color: #dd1515 !important;
            text-decoration: underline !important;
        }
        
        /* ✅ SECCIÓN ENLACES ÚTILES */
        .useful-links {
            list-style: none;
            padding: 0;
        }
        
        .useful-links li {
            margin-bottom: 0.5rem;
        }
        
        .useful-links a {
            color: #000;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 0.3rem 0;
            font-weight: bold;
        }
        
        .useful-links a:hover {
            color: #dd1515;
            transform: translateX(5px);
            text-decoration: underline;
        }
        
        .useful-links a i {
            margin-right: 0.8rem;
            width: 20px;
            font-size: 0.9rem;
            color: #000;
            font-weight: bold;
        }
        
        /* ✅ SECCIÓN REDES SOCIALES */
        .footer-social-links {
            display: flex;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
        }
        
        .footer-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(130, 130, 130, 0.25);
            border-radius: 50%;
            color: #000;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .footer-social-link-disabled {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(130, 130, 130, 0.14);
            border-radius: 50%;
            color: #000;
            font-size: 1.3rem;
            opacity: 0.6;
            cursor: default;
        }
        
        .footer-social-links a:hover {
            background: rgba(0,0,0,0.15);
            color: #000;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        .footer-bg i,
        .footer-bg .footer-social-links a i,
        .footer-bg .footer-social-link-disabled i,
        .footer-bg .contact-item i,
        .footer-bg .useful-links a i,
        .footer-bg .footer-bottom i,
        .footer-bg .hashtag-title i {
            color: #000 !important;
        }
        
        .social-description {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-bottom: 1rem;
            line-height: 1.4;
        }
        
        /* ✅ COPYRIGHT */
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
        }
        
        .footer-bottom p {
            margin: 0;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .footer-bottom a {
            color: #000 !important;
            font-weight: bold;
            transition: color 0.2s;
        }
        .footer-bottom a:hover {
            color: #fff !important;
            text-decoration: underline;
        }

        .footer-link-disabled {
            color: #000;
            font-weight: bold;
            cursor: default;
            opacity: 0.9;
        }
        
        /* ✅ RESPONSIVE TABLET (768px - 991px) */
        @media (max-width: 991px) and (min-width: 768px) {
            .footer-bg {
                padding: 1.5rem 0 0.8rem 0;
            }
            
            .footer-title {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }
            
            .contact-item,
            .useful-links a {
                font-size: 0.9rem;
            }
            
            .footer-social-links {
                justify-content: center;
            }
        }
        
        /* ✅ RESPONSIVE MÓVIL (menos de 768px) */
        @media (max-width: 767px) {
            .footer-bg {
                padding: 1.2rem 0 0.8rem 0;
            }
            
            .footer-title {
                font-size: 1rem;
                margin-bottom: 0.8rem;
                text-align: center;
            }
            
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-item,
            .useful-links a {
                font-size: 0.85rem;
                justify-content: center;
                text-align: center;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
                margin-bottom: 1.5rem;
            }
            
            .contact-item i {
                margin-right: 0;
                margin-bottom: 0.5rem;
            }
            
            .useful-links {
                text-align: center;
            }
            
            .footer-social-links {
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.8rem;
            }
            
            .social-description {
                text-align: center;
                font-size: 0.85rem;
            }
            .soci-img {
                margin-left: 0;
            }
        }
        
        /* ✅ ANIMACIONES */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .footer-bg {
            animation: fadeInUp 0.6s ease-out;
        }
        
        .contact-item,
        .useful-links li,
        .footer-social-links a {
            animation: fadeInUp 0.6s ease-out;
        }
        
        .contact-item:nth-child(1) { animation-delay: 0.1s; }
        .contact-item:nth-child(2) { animation-delay: 0.2s; }
        .contact-item:nth-child(3) { animation-delay: 0.3s; }
        .contact-item:nth-child(4) { animation-delay: 0.4s; }
        
        .useful-links li:nth-child(1) { animation-delay: 0.1s; }
        .useful-links li:nth-child(2) { animation-delay: 0.2s; }
        .useful-links li:nth-child(3) { animation-delay: 0.3s; }
        .useful-links li:nth-child(4) { animation-delay: 0.4s; }
        .useful-links li:nth-child(5) { animation-delay: 0.5s; }
        .useful-links li:nth-child(6) { animation-delay: 0.6s; }
        
        .footer-social-links a:nth-child(1) { animation-delay: 0.1s; }
        .footer-social-links a:nth-child(2) { animation-delay: 0.2s; }
        .footer-social-links a:nth-child(3) { animation-delay: 0.3s; }
        .footer-social-links a:nth-child(4) { animation-delay: 0.4s; }
        .footer-social-links a:nth-child(5) { animation-delay: 0.5s; }
        .footer-social-links a:nth-child(6) { animation-delay: 0.6s; }
        
        /* ✅ HASHTAGS Y ETIQUETAS */
        .hashtag-title {
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .hashtag-badge {
            background: rgba(255,255,255,0.2);
            font-size: 0.75rem;
            color: #000;
            font-weight: bold;
        }
        
        /* ✅ LÍNEA SEPARADORA SUPERIOR DEL FOOTER */
        .footer-separator {
            width: 100%;
            max-width: none;
            height: 4px;
            background: linear-gradient(90deg, #3e0e0e 0%, #2f0b0b 50%, #340505 100%);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: relative;
            margin: 0;
        }
        
        .footer-separator::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
            animation: shine 2s ease-in-out infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }