/* -------------------------------------
   FOOTER PREMIUM COMPACTO
-------------------------------------- */

.footer {
    width: 100%;
    background: rgba(2, 33, 26, 0.92);
    backdrop-filter: blur(15px);
    color: var(--text-light);
    padding: 35px 0 25px; /* MÁS COMPACTO */
    position: relative;
    margin-top: 70px; /* menos separación del contenido */
}

/* Línea dorada superior */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}

/* Línea dorada inferior */
.footer-bottom-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
    margin-top: 25px; /* compacto */
}

/* Grid */
.footer-row {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* más compacto */
}

/* Títulos */
.footer-col h3 {
    font-size: 1rem; /* más pequeño */
    color: var(--accent);
    margin-bottom: 10px;
    font-family: "Comfortaa", sans-serif;
}

.gold-dot {
    color: var(--accent);
    margin-right: 5px;
}

/* Listas */
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    font-size: 0.85rem; /* más pequeño */
    color: var(--text-muted);
    margin: 5px 0; /* más compacto */
    cursor: pointer;
    transition: 0.25s ease;
    font-family: "Comfortaa", sans-serif;
}

.footer-col ul li:hover {
    color: var(--accent);
    transform: translateX(3px);
}

/* Email */
.footer-mail {
    color: var(--text-muted);
    text-decoration: none;
    font-family: "Comfortaa", sans-serif;
    transition: 0.25s ease;
}

.footer-mail:hover {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(212,175,55,0.45);
}

/* Botón */
.footer-btn {
    margin-top: 15px;
    padding: 8px 20px; /* más compacto */
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.85rem; /* más pequeño */
    cursor: pointer;
    transition: 0.3s ease;
    font-family: "Comfortaa", sans-serif;
}

.footer-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(212,175,55,0.45);
}

/* Pie */
.footer-bottom {
    text-align: center;
    margin-top: 30px; /* más compacto */
    font-size: 0.8rem; /* más pequeño */
    color: var(--text-muted);
    opacity: 0.85;
    line-height: 1.4rem; /* más compacto */
    font-family: "Comfortaa", sans-serif;
}

.footer-bottom .gold {
    color: var(--accent);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 500px) {
    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul li:hover {
        transform: none;
    }
}
