/* ======= FOOTER GLOBAL ELEGANTE ======= */
.global-footer {
    background: #000000;
    color: #e5e5e5;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.global-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(248, 247, 246, 0.5), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Sección Principal del Footer */
.footer-main {
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

/* Columna de Marca */
.brand-column {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

/* Brand Header - Logo y Texto lado a lado */
.brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.brand-logo {
    height: 50px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.brand-logo:hover {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(1.05);
}

.brand-text {
    flex: 1;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: #ffffff;
    margin: 3px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.brand-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
}

/* Redes Sociales */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Columnas Generales */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    border-radius: 1px;
}

/* Enlaces del Footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #d4af37;
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

/* Columna de Contacto */
.contact-column {
    max-width: 300px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #cccccc;
}

.contact-item svg {
    color: #d4af37;
    flex-shrink: 0;
}

/* Newsletter */
.newsletter-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.newsletter-form {
    position: relative;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    outline: none;
}

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

.newsletter-button {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border: none;
    padding: 0.8rem 1rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #b8860b, #d4af37);
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: #999999;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #d4af37;
}

.separator {
    color: #666666;
    font-size: 0.8rem;
}

/* Badges de Seguridad */
.footer-badges {
    display: flex;
    gap: 0.5rem;
}

.security-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: #d4af37;
    transition: all 0.3s ease;
    cursor: help;
}

.badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
        gap: 2.5rem;
    }
    
    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .brand-column {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: 1rem;
    }
    
    .contact-column {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-bottom {
        padding: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        order: -1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-section {
        padding: 1rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-button {
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 480px) {
    .brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .brand-logo {
        height: 40px;
        max-width: 70px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .brand-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* Animaciones y Efectos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

/* Efectos de Hover Especiales */
.global-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    transition: left 3s ease;
}

.global-footer:hover::after {
    left: 100%;
}

/* ======= END FOOTER GLOBAL ELEGANTE ======= */
