/* =========================================
   FOOTER: FULL WIDTH SOLID DESIGN
   ========================================= */

.site-footer {
    position: relative;
    background-color: #030712; /* Color solicitado */
    color: #ffffff;
    
    /* ELIMINAMOS EL EFECTO CAJA */
    margin-top: 0 !important; /* Pegado al bloque superior */
    width: 100% !important;     /* Ancho total del navegador */
    max-width: 100% !important; /* Sin límites externos */
    border-radius: 0 !important; /* Sin esquinas redondeadas */
    border: none;               /* Eliminamos bordes laterales */
    border-top: 1px solid rgba(0, 180, 216, 0.1); /* Línea sutil superior */
    
    padding: 80px 0 40px 0;     /* Padding vertical, 0 horizontal */
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* Mantenemos la textura muy sutil al 100% de ancho */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('/img/arctic-tech-background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* Este contenedor centra el texto pero deja que el fondo fluya */
.footer-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px; /* Alineado con el contenido del Hero */
    margin: 0 auto;    /* Centra las columnas */
    padding: 0 40px;   /* Margen de seguridad para el texto en pantallas pequeñas */
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-logo span {
    color: #00b4d8;
    font-weight: 700;
}

/* Grid de 4 columnas centrado */
.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #00b4d8;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
}

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

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: #00b4d8;
}

/* Newsletter ajustado */
.footer-newsletter input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 6px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.8rem;
    color: #64748b;
}