/* ===== FOOTER LOS TRES GUÍAS ===== */

.footer {
    background: #000000;
    color: #d9b981;              /* dorado suave */
    padding: 40px 0 30px;
    font-size: 13px;
}

/* línea superior */
.footer hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 0 0 40px;
}

/* enlaces */
.footer a {
    color: inherit;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

/* contenedor general de cada fila del footer */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    text-align: center;
}

/* anulamos el grid antiguo dentro del footer */
.footer .column,
.footer .one-third,
.footer .quarter,
.footer .a.quarter {
    float: none !important;
    width: auto !important;

    flex: 1 1 260px;             /* todas las columnas se reparten igual */
    max-width: 340px;
}

/* títulos (CONTACTO, E-MAIL, etc.) */
.footer h6 {
    margin: 0;
}
.footer .column h6:first-of-type {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 8px;
}

/* valores (teléfono, emails…) */
.footer .column h6:not(:first-of-type),
.footer .column a span,
.footer .column a {
    font-size: 16px;
    font-weight: 400;
}

/* fila de 4 columnas (eventos, colaboraciones, tienda, solicitudes) */
.footer .a.quarter.column {
    position: relative;
    padding: 0 40px;
}

/* barras verticales naranjas entre columnas centrales */
.footer .a.quarter.column + .a.quarter.column::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #d9b981;         /* naranja corporativo */
}

/* línea punteada y copyright */
.footer .line-sep {
    width: 100%;
    border-top: 1px dashed #d9b981;
    margin: 60px auto 20px;
}

.footer .sixteen.columns {
    width: 100%;
    text-align: center;
}

.footer .sixteen.columns p {
    margin: 5px 0 0;
    font-size: 11px;
    opacity: 0.8;
}

/* responsive: en móviles todo en columna */
@media (max-width: 768px) {
    .footer .container {
        gap: 30px;
    }

    .footer .column,
    .footer .one-third,
    .footer .quarter,
    .footer .a.quarter {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .footer .a.quarter.column {
        padding: 0 10px;
    }

    .footer .a.quarter.column::before {
        display: none;           /* quitamos barras en móvil */
    }
}

/* Línea naranja a la IZQUIERDA del primer bloque (antes de EVENTOS Y LOCACIONES) */
.footer .a.quarter.column:first-child::before {
    content: "";
    position: absolute;
    left: 0;              /* ← barra a la izquierda */
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #d9b981;  /* naranja */
}

/* Dentro del footer, que las columnas NO tengan márgenes raros del framework */
.footer .column,
.footer .one-third,
.footer .quarter,
.footer .a.quarter {
    margin: 0 !important;      /* esto es clave para centrar visualmente */
}
