/* ==============================================
   SISTEC TELECOM - LANDINGS DE LOCALIDAD
   Se apoya en las clases de style.css
   ============================================== */

/* === MIGAS DE PAN === */
.breadcrumbs {
    background: var(--gris-bg);
    border-bottom: 1px solid var(--gris-claro);
    padding: 12px 0;
    font-size: 0.9rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    color: var(--gris-texto);
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li + li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gris-medio);
    font-size: 0.75rem;
}

.breadcrumbs a {
    color: var(--gris-texto);
}

.breadcrumbs a:hover {
    color: var(--violeta);
}

.breadcrumbs [aria-current="page"] {
    color: var(--negro-texto);
    font-weight: 600;
}

/* === ACCIONES DEL HERO === */
.hero-acciones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* === CHIPS DE COBERTURA === */
.local-zonas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

.local-zona {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blanco);
    border: 1px solid var(--gris-claro);
    border-radius: var(--radio-xl);
    padding: 10px 20px;
    font-weight: 500;
    color: var(--negro-texto);
    box-shadow: var(--sombra-suave);
}

.local-zona i {
    color: var(--celeste);
}

/* === BLOQUE DE DATOS LOCALES === */
.local-datos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.local-dato {
    background: var(--blanco);
    border: 1px solid var(--gris-claro);
    border-radius: var(--radio-md);
    padding: 22px;
    text-align: center;
    box-shadow: var(--sombra-suave);
    transition: var(--transicion);
}

.local-dato:hover {
    border-color: var(--celeste);
    transform: translateY(-4px);
}

.local-dato i {
    color: var(--violeta);
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
}

.local-dato h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.local-dato p {
    font-size: 0.9rem;
    color: var(--gris-texto);
    margin: 0;
}

.local-dato a {
    color: var(--violeta);
    font-weight: 600;
}

/* === TEXTO SEO === */
.local-texto p {
    color: var(--gris-texto);
    margin-bottom: 16px;
}

.local-texto a {
    color: var(--violeta);
    font-weight: 600;
}

.local-texto a:hover {
    color: var(--celeste);
}

/* === CTA centrado === */
.local-cta-centro {
    text-align: center;
    margin-top: 28px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-acciones {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-acciones .boton {
        width: 100%;
        justify-content: center;
    }

    .local-dato {
        padding: 18px;
    }
}
