/* ===== HERO estático ===== */
/* Hero de páginas estáticas */
.hero-estatico{
    background:#0f1216;
    color:#fff;
    /* reduce altura: antes clamp(2rem,5vw,3rem) */
    padding: clamp(1.5rem, 3vw, 2rem) 0;
}

/* Forzamos el subtítulo a gris claro en vez de negro */
.hero-estatico .lead{
    color: rgba(255,255,255,.75) !important;
}

/* ===== Propuesta de valor ===== */
.pv-card{ border-radius:14px; }
.pv-puntos li{ margin-bottom:.35rem; }

/* ===== Diferenciadores ===== */
.dif .dif-item{
    border-radius:14px;
    transition: transform .15s ease, box-shadow .15s ease;
}
.dif .dif-item:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15,23,42,.08);
}

/* ===== Principios ===== */
.principios-list li{ margin-bottom:.4rem; }

/* ===== Garantías del proceso ===== */
.garantias-proceso .card{ border-radius:14px; }

/* ===== Comparativa ===== */
.comparativa-table{
    border:1px solid #eef2f7; border-radius:12px; overflow:hidden;
}
.comparativa-table thead th{
    background:#f1f5f9; color:#0f172a;
}
.comparativa-table td, .comparativa-table th{ white-space: nowrap; }

/* ===== CTA final ===== */
.val-cta{ background:#f8fafc; }
.val-cta-card{ border-radius:18px; }


.hero-valores {
    background: #0f1216 url("../assets/valores/audiconcept.jpg") center/cover no-repeat;
    position: relative;
    min-height: 18vh;
}
.hero-valores::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.65));
}
.hero-valores .container {
    position: relative;
    z-index: 1;
}

/* Bandas recordatorio de propósito */
.brand-breaker{
    background:#111827; color:#fff; border-radius:14px;
    padding:.9rem 1rem; box-shadow:0 6px 24px rgba(0,0,0,.12);
}
.brand-breaker .brand-lead{ color:rgba(255,255,255,.85); font-size:.95rem; }
.brand-breaker--light{
    background:#1f2937; /* un tono distinto para alternar */
    border:1px solid rgba(255,255,255,.06);
}

/* ---------------------- MINI BANNER  -----------------*/
.mini-hero{ position:relative; border-radius:16px; overflow:hidden; }
.mini-hero img{ width:100%; height:200px; object-fit:cover; display:block; }
.mini-hero__overlay{
    position:absolute; inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.15) 55%,transparent);
    display:flex; align-items:center; color:#fff;
}
.mini-hero h3{ font-weight:800; margin-bottom:.25rem; }
.mini-hero p{ margin-bottom:.6rem; color:rgba(255,255,255,.9); }
@media (max-width: 576px){
    .mini-hero img{ height:220px; }
}

/* BARRA NAVEGACION ENTRE PAGINAS */
.ga-backnav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    color: #1f2937; /* gris oscuro */
}

.ga-backnav__link {
    position: relative;
    color: #2563eb; /* azul más oscuro, elegante */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ga-backnav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #2563eb; /* mismo tono del texto */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ga-backnav__link:hover::after {
    transform: scaleX(1);
}

.ga-backnav__link:hover {
    color: #1d4ed8; /* un tono más profundo al pasar el ratón */
}

.ga-backnav__title {
    color: #111827;
    font-weight: 600;
}
/* ===== Ocultar barra de navegación solo en móvil ===== */
@media (max-width: 576px){
    .ga-backnav{
        display: none !important;
    }
}