/**
 * footer — Estilos extraidos de views/footer.php
 */
    .noemi-footer {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        color: white;
        padding: 80px 0 0;
        margin-top: 0;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        position: relative;
        overflow: hidden;
    }

    .noemi-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    }

    .noemi-footer h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        margin-bottom: 25px;
        color: #D4AF37;
        font-weight: 700;
        letter-spacing: 0.5px;
        position: relative;
        padding-bottom: 15px;
    }

    .noemi-footer h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #D4AF37, #F4E4BC);
        border-radius: 2px;
    }

    .noemi-footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
        color: #F4E4BC;
        font-weight: 600;
    }

    .noemi-footer h6 {
        font-size: 0.9rem;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .noemi-footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .noemi-footer ul li {
        margin-bottom: 12px;
    }

    .noemi-footer ul li a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }

    .noemi-footer ul li a::before {
        content: '›';
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .noemi-footer ul li a:hover {
        color: #F4E4BC;
        padding-left: 10px;
    }

    .noemi-footer ul li a:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    .noemi-footer p {
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.8;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .contact-info {
        margin-top: 20px;
    }

    .contact-info-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
        padding: 8px 0;
    }

    .contact-info-item:hover {
        color: #F4E4BC;
        transform: translateX(5px);
    }

    .contact-info-item .icon-wrapper {
        width: 35px;
        height: 35px;
        background: rgba(212, 175, 55, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .contact-info-item:hover .icon-wrapper {
        background: #D4AF37;
        transform: rotate(360deg);
    }

    .contact-info-item svg {
        width: 16px;
        height: 16px;
        fill: #D4AF37;
        transition: fill 0.3s ease;
    }

    .contact-info-item:hover svg {
        fill: #0f172a;
    }

    .footer-divider {
        border: none;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        margin: 50px 0;
    }

    .footer-bottom {
        background: rgba(0, 0, 0, 0.3);
        padding: 35px 0;
        margin-top: 50px;
        text-align: center;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .footer-bottom p {
        margin: 0 0 20px 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

    .social-links-footer {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin: 25px 0;
        flex-wrap: wrap;
    }

    .social-link-item {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid rgba(212, 175, 55, 0.2);
        position: relative;
        overflow: hidden;
    }

    .social-link-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #D4AF37, #F4E4BC);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    .social-link-item svg {
        width: 20px;
        height: 20px;
        fill: white;
        position: relative;
        z-index: 1;
        transition: fill 0.4s ease;
    }

    .social-link-item:hover {
        transform: translateY(-5px) scale(1.1);
        border-color: #D4AF37;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }

    .social-link-item:hover::before {
        opacity: 1;
    }

    .social-link-item:hover svg {
        fill: #0f172a;
    }

    /* ============================================
       SECCIÓN DE REDES SOCIALES DESTACADAS
    ============================================ */
    .redes-sociales-seccion {
        padding: 60px 0;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
        border-radius: 20px;
        margin: 40px 0;
    }

    .redes-sociales-contenedor {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .redes-sociales-titulo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .sparkle-icon {
        font-size: 2rem;
        animation: sparkle 2s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
        50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
    }

    .redes-sociales-titulo {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin: 0;
        letter-spacing: 1px;
        text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    }

    .redes-sociales-subtitulo {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 50px;
        font-weight: 300;
        letter-spacing: 0.5px;
    }

    .social-links-destacados {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        padding: 20px;
    }

    .social-link-destacado {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 2px solid transparent;
    }

    .social-icon-container {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .social-icon-container::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .social-icon-container svg {
        width: 40px;
        height: 40px;
        fill: white;
        position: relative;
        z-index: 1;
        transition: all 0.4s ease;
    }

    .social-nombre {
        font-size: 1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.4s ease;
        letter-spacing: 0.5px;
    }

    /* Hover Effects */
    .social-link-destacado:hover {
        transform: translateY(-10px) scale(1.05);
        background: rgba(255, 255, 255, 0.08);
    }

    .social-link-destacado:hover .social-icon-container {
        transform: rotate(360deg) scale(1.1);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    }

    .social-link-destacado:hover .social-icon-container::before {
        opacity: 1;
    }

    .social-link-destacado:hover .social-nombre {
        color: #D4AF37;
        transform: scale(1.1);
    }

    /* Colores específicos por red social */
    .social-link-destacado.facebook .social-icon-container {
        background: #1877F2;
    }

    .social-link-destacado.facebook:hover {
        border-color: #1877F2;
    }

    .social-link-destacado.instagram .social-icon-container {
        background: linear-gradient(135deg, #E1306C, #FD1D1D, #F77737, #FCAF45);
    }

    .social-link-destacado.instagram:hover {
        border-color: #E1306C;
    }

    .social-link-destacado.whatsapp .social-icon-container {
        background: #25D366;
    }

    .social-link-destacado.whatsapp:hover {
        border-color: #25D366;
    }

    .social-link-destacado.tiktok .social-icon-container {
        background: linear-gradient(135deg, #000000, #FF0050, #00F2EA);
    }

    .social-link-destacado.tiktok:hover {
        border-color: #FF0050;
    }

    .social-link-destacado.twitter .social-icon-container {
        background: #000000;
    }

    .social-link-destacado.twitter:hover {
        border-color: #000000;
    }

    .social-link-destacado.youtube .social-icon-container {
        background: #FF0000;
    }

    .social-link-destacado.youtube:hover {
        border-color: #FF0000;
    }

    .social-link-destacado.linkedin .social-icon-container {
        background: #0077B5;
    }

    .social-link-destacado.linkedin:hover {
        border-color: #0077B5;
    }

    .social-link-destacado.pinterest .social-icon-container {
        background: #E60023;
    }

    .social-link-destacado.pinterest:hover {
        border-color: #E60023;
    }

    .social-link-destacado.telegram .social-icon-container {
        background: #0088CC;
    }

    .social-link-destacado.telegram:hover {
        border-color: #0088CC;
    }

    .social-link-destacado.snapchat .social-icon-container {
        background: #FFFC00;
    }

    .social-link-destacado.snapchat .social-icon-container svg {
        fill: #000000;
    }

    .social-link-destacado.snapchat:hover {
        border-color: #FFFC00;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .redes-sociales-titulo {
            font-size: 1.8rem;
        }

        .sparkle-icon {
            font-size: 1.5rem;
        }

        .redes-sociales-subtitulo {
            font-size: 0.95rem;
            padding: 0 20px;
        }

        .social-links-destacados {
            gap: 20px;
        }

        .social-icon-container {
            width: 70px;
            height: 70px;
        }

        .social-icon-container svg {
            width: 35px;
            height: 35px;
        }

        .social-link-destacado {
            padding: 15px;
        }
    }

    @media (max-width: 576px) {
        .redes-sociales-titulo {
            font-size: 1.5rem;
        }

        .social-icon-container {
            width: 60px;
            height: 60px;
        }

        .social-icon-container svg {
            width: 30px;
            height: 30px;
        }

        .social-nombre {
            font-size: 0.9rem;
        }
    }

    /* ============================================
       SECCIÓN DEL DESARROLLADOR (Versión Moderna)
    ============================================ */
    .developer-credit-simple {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
        border-top: 2px solid rgba(212, 175, 55, 0.3);
        padding: 25px 0;
        margin-top: 30px;
        position: relative;
        overflow: hidden;
    }

    .developer-credit-simple::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .developer-content-box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .developer-subtitle-modern {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 15px;
        font-weight: 400;
        line-height: 1.5;
    }

    .developer-highlight-text {
        background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }

    .developer-cta-modern {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 30px;
        background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4), 0 0 0 2px rgba(212, 175, 55, 0.3);
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
    }

    .developer-cta-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s;
    }

    .developer-cta-modern:hover::before {
        left: 100%;
    }

    .developer-cta-modern:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 119, 181, 0.6), 0 0 0 2px #D4AF37;
        color: white;
        border-color: rgba(212, 175, 55, 0.5);
    }

    .developer-cta-modern svg {
        width: 18px;
        height: 18px;
        fill: white;
        transition: transform 0.4s ease;
    }

    .developer-cta-modern:hover svg {
        transform: scale(1.15);
    }

    @media (max-width: 768px) {
        .developer-credit-simple {
            padding: 20px 15px;
        }

        .developer-subtitle-modern {
            font-size: 0.85rem;
        }

        .developer-cta-modern {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
    }

    .newsletter-footer-section {
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 15px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .newsletter-footer-form {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .newsletter-footer-input {
        flex: 1;
        padding: 14px 20px;
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .newsletter-footer-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-footer-input:focus {
        outline: none;
        border-color: #D4AF37;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    }

    .newsletter-footer-input:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background: rgba(255, 255, 255, 0.05);
    }

    .newsletter-footer-btn {
        padding: 14px 30px;
        background: linear-gradient(135deg, #D4AF37, #F4E4BC);
        color: #0f172a;
        border: none;
        border-radius: 30px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .newsletter-footer-btn:hover {
        background: linear-gradient(135deg, #F4E4BC, #D4AF37);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }

    .newsletter-footer-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background: rgba(212, 175, 55, 0.3);
    }

    .newsletter-footer-btn:disabled:hover {
        transform: none;
        box-shadow: none;
    }

    .newsletter-footer-btn svg {
        width: 16px;
        height: 16px;
        fill: #0f172a;
    }

    .certification-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .certification-badge:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .certification-badge svg {
        width: 18px;
        height: 18px;
        fill: white;
    }

    .payment-methods-footer {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .payment-icon {
        width: 60px;
        height: 40px;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .payment-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .payment-icon:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    }

    .guarantee-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .guarantee-badge:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #D4AF37;
        transform: scale(1.05);
    }

    .guarantee-badge svg {
        width: 16px;
        height: 16px;
        fill: white;
    }

    .category-icon {
        width: 16px;
        height: 16px;
        fill: #D4AF37;
        margin-right: 5px;
    }

    @media (max-width: 768px) {
        .noemi-footer {
            padding: 50px 0 0;
        }

        .noemi-footer h4 {
            font-size: 1.2rem;
        }

        .newsletter-footer-form {
            flex-direction: column;
        }

        .newsletter-footer-btn {
            width: 100%;
        }

        .payment-methods-footer,
        .social-links-footer {
            justify-content: center;
        }

        .newsletter-footer-section {
            padding: 20px;
        }
    }

    @media (max-width: 576px) {
        .social-link-item {
            width: 40px;
            height: 40px;
        }

        .social-link-item svg {
            width: 18px;
            height: 18px;
        }
    }
