/*******************************************************************************
 * *
 * 10. CONTACTO Y UBICACIÓN                                                    *
 * *
 *******************************************************************************/

.seccion-contacto-header {
    background: #cf1515;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.seccion-contacto-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.seccion-contacto-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Círculos decorativos */
.circulo-decorativo {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.c1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
}

.c2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 35%;
}

.c3 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 5%;
}

.contenedor-contacto {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.rejilla-contacto {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* Bloque Sobre Nosotros */
.bloque-sobre-nosotros {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
    /* Se ajusta al texto */
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    border: 1px solid transparent;
}

.bloque-sobre-nosotros:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 46, 46, 0.14);
    box-shadow: 0 22px 40px rgba(127, 29, 29, 0.12);
}

.titulo-con-icono {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.titulo-con-icono i {
    background: #e62e2e;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.bloque-sobre-nosotros h2 {
    font-size: 28px;
    color: #111;
}

.bloque-sobre-nosotros p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Tarjetas de Información Laterales */
.bloque-info-lateral {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tarjeta-contacto-mini {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    border: 1px solid transparent;
}

.tarjeta-contacto-mini:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 46, 46, 0.14);
    box-shadow: 0 18px 34px rgba(127, 29, 29, 0.12);
}

.icono-contacto-rojo {
    background: #e62e2e;
    color: white;
    min-width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.detalles-contacto h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.detalles-contacto p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.dato-principal {
    display: block;
    font-weight: 700;
    color: #e62e2e;
    margin-bottom: 2px;
}

.detalles-contacto small {
    font-size: 11px;
    color: #aaa;
}

.iconos-redes-contacto {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.iconos-redes-contacto a {
    color: #666;
    font-size: 16px;
    transition: color 0.3s, transform 0.24s ease;
}

.iconos-redes-contacto a:hover {
    color: #e62e2e;
    transform: translateY(-3px) scale(1.08);
}



/* Sección Mapa */
.titulo-mapa-centrado {
    text-align: center;
    margin-bottom: 40px;
}

.titulo-mapa-centrado h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.mapa-placeholder {
    position: relative;
    background: #e9ecef;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mapa-placeholder:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 46, 46, 0.16);
    box-shadow: 0 22px 42px rgba(127, 29, 29, 0.14);
}

.mapa-placeholder iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.1) contrast(1.1);
    /* Suaviza los colores para que peguen con tu web */
}

.info-flotante-mapa {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #e62e2e;
    pointer-events: none;
    /* Permite hacer clic a través de ella para mover el mapa */
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mapa-placeholder:hover .info-flotante-mapa {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.info-flotante-mapa i {
    color: #e62e2e;
    font-size: 18px;
}

.info-flotante-mapa span {
    font-weight: 700;
    font-size: 14px;
    color: #111;
}

.btn-regresar-lista:hover {
    color: #e60000;
}




/* Migrado de inline */
.mapa-iframe-no-border { border: 0; }

.pie-pagina {
    margin-top: 0;
}

/* =========================
   Modo oscuro SOLO Contacto
   ========================= */
html[data-theme="dark"] .public-news-hero {
    background: radial-gradient(circle at 22% 12%, #7f1d1d 0%, #1f2937 45%, #020617 100%);
}

html[data-theme="dark"] .public-news-hero-badge {
    background: #111827;
    border: 1px solid #374151;
    color: #fecaca;
}

html[data-theme="dark"] .public-news-hero h1 {
    color: #f8fafc;
}

html[data-theme="dark"] .public-news-hero p {
    color: #e2e8f0;
}

html[data-theme="dark"] .public-news-hero-divider {
    background: #f87171;
}

html[data-theme="dark"] .contenedor-contacto {
    background: #0b1120;
    border-radius: 14px;
    padding-top: 24px;
    padding-bottom: 24px;
}

html[data-theme="dark"] .bloque-sobre-nosotros,
html[data-theme="dark"] .tarjeta-contacto-mini {
    background: #0f172a;
    border: 1px solid #1f2937;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.55);
}

html[data-theme="dark"] .titulo-con-icono i,
html[data-theme="dark"] .icono-contacto-rojo {
    background: #dc2626;
}

html[data-theme="dark"] .bloque-sobre-nosotros h2,
html[data-theme="dark"] .detalles-contacto h4,
html[data-theme="dark"] .titulo-mapa-centrado h2 {
    color: #f8fafc;
}

html[data-theme="dark"] .bloque-sobre-nosotros p,
html[data-theme="dark"] .detalles-contacto p,
html[data-theme="dark"] .titulo-mapa-centrado p {
    color: #cbd5e1;
}

html[data-theme="dark"] .dato-principal {
    color: #fca5a5;
}

html[data-theme="dark"] .detalles-contacto small {
    color: #94a3b8;
}

html[data-theme="dark"] .iconos-redes-contacto a {
    color: #cbd5e1;
}

html[data-theme="dark"] .iconos-redes-contacto a:hover {
    color: #f87171;
}

html[data-theme="dark"] .mapa-placeholder {
    border-color: #334155;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.55);
}

html[data-theme="dark"] .info-flotante-mapa {
    background: #111827;
    border-left-color: #ef4444;
    color: #f8fafc;
}

html[data-theme="dark"] .info-flotante-mapa i {
    color: #f87171;
}

html[data-theme="dark"] .info-flotante-mapa span {
    color: #f8fafc;
}

@media (max-width: 992px) {
    .seccion-contacto-header {
        padding: 60px 24px;
    }

    .contenedor-contacto {
        margin: 40px auto;
        padding: 0 24px;
    }

    .rejilla-contacto {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 50px;
    }

    .bloque-sobre-nosotros,
    .tarjeta-contacto-mini {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .seccion-contacto-header {
        padding: 42px 18px;
    }

    .seccion-contacto-header h1 {
        font-size: 34px;
    }

    .seccion-contacto-header p {
        font-size: 15px;
    }

    .c1,
    .c2,
    .c3 {
        opacity: 0.45;
    }

    .contenedor-contacto {
        margin: 28px auto;
        padding: 0 18px;
    }

    .bloque-sobre-nosotros {
        padding: 22px 18px;
    }

    .titulo-con-icono {
        gap: 12px;
        margin-bottom: 18px;
    }

    .bloque-sobre-nosotros h2 {
        font-size: 24px;
    }

    .bloque-sobre-nosotros p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .tarjeta-contacto-mini {
        padding: 18px;
        gap: 14px;
    }

    .detalles-contacto h4 {
        font-size: 16px;
    }

    .titulo-mapa-centrado {
        margin-bottom: 24px;
    }

    .titulo-mapa-centrado h2 {
        font-size: 26px;
    }

    .mapa-placeholder {
        height: 340px;
    }
}

@media (max-width: 576px) {
    .seccion-contacto-header {
        padding: 34px 16px;
    }

    .seccion-contacto-header h1 {
        font-size: 28px;
    }

    .contenedor-contacto {
        padding: 0 16px;
    }

    .titulo-con-icono {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .bloque-sobre-nosotros {
        text-align: center;
    }

    .tarjeta-contacto-mini {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .iconos-redes-contacto {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mapa-placeholder {
        height: 280px;
        border-radius: 12px;
    }

    .info-flotante-mapa {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 14px;
        justify-content: center;
        text-align: center;
    }

    .info-flotante-mapa span {
        font-size: 13px;
    }
}
