
.footer-home {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 4px solid var(--green600);
    position: relative;
    overflow: hidden;
    margin: 0;
}

/* Efecto de fondo sutil */
.footer-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(12, 250, 159, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 162, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Fila superior (video + info) */
.footer-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

/* Columna del video */
.footer-video-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-video-container {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--green600);
    transition: all 0.3s ease;
}

.footer-video-container:hover {
    transform: scale(1.02);
    border-color: var(--green500);
    box-shadow: 0 25px 50px rgba(12, 250, 159, 0.3);
}

.footer-video {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

/* Columna de información */
.footer-info-col {
    padding-left: 1rem;
}

.footer-info-title {
    font-size: 1.8rem;
    font-family: 'Labrada', sans-serif;
    color: var(--green500);
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray200);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.footer-location {
    color: var(--cyan400);
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-location i {
    color: var(--green500);
}

.footer-privacy {
    margin-bottom: 1rem;
    color: var(--gray200);
}

.footer-email {
    color: var(--gray200);
}

.footer-email b {
    color: var(--green400);
}

/* Separador */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green600), transparent);
    margin: 2rem 0;
}

/* Grid de 3 columnas */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Columnas del footer */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--green500));
}

.footer-brand-name {
    font-size: 1.5rem;
    font-family: 'Labrada', sans-serif;
    color: var(--green400);
    margin: 0;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray200);
    margin-bottom: 1.5rem;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(12, 250, 159, 0.3);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--green500);
    border-color: var(--green500);
    color: var(--black);
    transform: translateY(-5px);
}

/* Títulos de columnas */
.footer-column-title {
    font-size: 1.2rem;
    font-family: 'Labrada', sans-serif;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--green500);
}

/* Listas de enlaces */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--gray200);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--green500);
    transform: translateX(5px);
}

.footer-link i {
    color: var(--green500);
    font-size: 0.9rem;
}

.footer-contact-item {
    color: var(--gray200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-item i {
    color: var(--green500);
    width: 20px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: var(--gray400);
    font-size: 0.9rem;
    margin: 0;
}

/* ====================================
   RESPONSIVE DEL FOOTER
   ==================================== */

@media screen and (max-width: 1024px) {
    .footer-top-row {
        gap: 2rem;
    }
    
    .footer-info-title {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-home {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info-col {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-info-title {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .footer-info-text {
        text-align: center;
    }
    
    .footer-location {
        justify-content: center;
    }
    
    .footer-privacy {
        text-align: center;
    }
    
    .footer-email {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-list li {
        text-align: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-info-title {
        font-size: 1.2rem;
    }
    
    .footer-info-text {
        font-size: 0.9rem;
    }
    
    .footer-video-container {
        max-width: 100%;
    }
    
    .footer-brand-name {
        font-size: 1.2rem;
    }
}