/* ═══════════════════════════════════════
   PÁGINAS INTERNAS — CCL
   ═══════════════════════════════════════ */

/* ── Banner superior ── */
.page-hero {
    min-height: 340px;
    background-color: var(--negro);
    background-image: url('../images/view-male-engineer-work-engineers-day-celebration.jpg');
    background-size: cover;
    background-position: 60% center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    padding-top: 90px;   /* navbar */
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,26,26,0.55) 0%,
        rgba(26,26,26,0.82) 100%
    );
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero-overlay { display: none; }   /* quitado — overlay está en ::after */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--naranja); }
.breadcrumb span { opacity: 0.4; }

.page-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blanco);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.page-hero h1 .highlight { color: var(--naranja); }
.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
}

/* ── Sección fondo claro ── */
.bg-light-section { background: var(--bg-light); }

/* ── Grid de dos columnas ── */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

/* ── Lista de features ── */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gris-carbono);
    font-weight: 500;
}
.feat-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--naranja);
    color: var(--blanco);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ── Misión y Visión ── */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
.mv-card {
    background: var(--blanco);
    border-radius: var(--radius-md);
    padding: 44px 36px;
    border: var(--border);
}
.mv-card--accent {
    background: var(--negro);
    border-color: transparent;
}
.mv-card--accent h3 { color: var(--blanco); }
.mv-card--accent p  { color: rgba(255,255,255,0.75); }

.mv-icon {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.mv-icon svg { width: 48px; height: 48px; }

.mv-card h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--negro);
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}
.mv-card p { font-size: 14px; color: var(--gris-carbono); line-height: 1.8; }

/* ── Valores ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.value-item {
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: var(--border);
    background: var(--blanco);
    transition: box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.value-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--naranja);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.value-item:hover::after { transform: scaleX(1); }
.value-item:hover { box-shadow: var(--shadow); }
.value-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--naranja);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 14px;
}
.value-item h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--negro);
    margin-bottom: 8px;
}
.value-item p { font-size: 13px; color: var(--gris-carbono); line-height: 1.7; }

/* ── Estaciones ── */
.stations-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.station-feat {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--radius-md);
    background: var(--blanco);
    border: var(--border);
    transition: all 0.25s;
}
.station-feat:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.sf-icon  { font-size: 36px; margin-bottom: 16px; }
.station-feat h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--negro);
    margin-bottom: 10px;
}
.station-feat p { font-size: 13px; color: var(--gris-carbono); line-height: 1.7; }

/* ── Mapa placeholder ── */
.map-placeholder {
    border-radius: var(--radius-md);
    border: var(--border);
    background: var(--blanco);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.map-placeholder-inner { text-align: center; padding: 60px 40px; }
.map-icon { font-size: 52px; margin-bottom: 18px; }
.map-placeholder-inner h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--negro);
    margin-bottom: 10px;
}
.map-placeholder-inner p { font-size: 14px; color: var(--gris-carbono); }

/* ── Noticias ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.news-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: var(--border);
    background: var(--blanco);
    transition: all 0.25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-img {
    position: relative;
    overflow: hidden;
    height: 190px;
    background: var(--bg-light);
}
.news-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.news-card:hover .news-img img { transform: scale(1.05); }
.news-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--naranja);
    color: var(--blanco);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.news-body { padding: 22px; }
.news-date {
    font-size: 11px;
    color: var(--gris-medio);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 8px;
}
.news-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--negro);
    line-height: 1.4;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.news-body p { font-size: 13px; color: var(--gris-carbono); line-height: 1.7; margin-bottom: 16px; }
.news-read {
    font-size: 12px;
    font-weight: 700;
    color: var(--naranja);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.news-read:hover { color: var(--rojo); }

/* ── CTA interna ── */
.inner-cta-section { background: var(--bg-light); }
.inner-cta-box {
    background: var(--negro);
    border-radius: var(--radius-md);
    padding: 72px 56px;
    text-align: center;
    border-top: 3px solid var(--naranja);
}
.inner-cta-box h2 {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blanco);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.inner-cta-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ── Responsive — Tablet (≤991px) ── */
@media (max-width: 991px) {
    .page-hero              { min-height: 300px; padding-bottom: 48px; }
    .page-hero h1           { font-size: clamp(28px, 6vw, 44px); }
    .two-col-grid           { grid-template-columns: 1fr; gap: 36px; }
    .two-col-reverse        { direction: ltr; }
    .two-col-grid img       { height: 280px !important; }
    .mv-grid                { grid-template-columns: 1fr; gap: 16px; }
    .values-grid            { grid-template-columns: 1fr 1fr; }
    .stations-features-grid { grid-template-columns: 1fr 1fr; }
    .news-grid              { grid-template-columns: 1fr 1fr; }
    .inner-cta-box          { padding: 48px 28px; }
}

/* ── Responsive — Mobile (≤600px) ── */
@media (max-width: 600px) {
    /* Banner */
    .page-hero              { min-height: 260px; padding-bottom: 36px; }
    .page-hero h1           { font-size: clamp(24px, 8vw, 36px); }
    .page-hero p            { font-size: 14px; }
    .breadcrumb             { font-size: 11px; margin-bottom: 10px; }

    /* Imágenes en servicios */
    .two-col-grid img       { height: 200px !important; border-radius: var(--radius-sm) !important; }

    /* Listas de features */
    .feature-list li        { font-size: 13px; }

    /* Misión/visión */
    .mv-card                { padding: 28px 22px; }
    .mv-icon                { font-size: 28px; margin-bottom: 12px; }

    /* Valores */
    .values-grid            { grid-template-columns: 1fr; gap: 12px; }
    .value-item             { padding: 20px 18px; }
    .value-num              { font-size: 32px; margin-bottom: 8px; }

    /* Estaciones */
    .stations-features-grid { grid-template-columns: 1fr; gap: 12px; }
    .station-feat           { padding: 24px 16px; display: flex; align-items: center; gap: 16px; text-align: left; }
    .sf-icon                { font-size: 28px; margin: 0; flex-shrink: 0; }

    /* Noticias */
    .news-grid              { grid-template-columns: 1fr; gap: 16px; }
    .news-img               { height: 160px; }

    /* CTA interna */
    .inner-cta-box          { padding: 36px 18px; border-radius: var(--radius-sm); }
    .inner-cta-box h2       { font-size: clamp(18px, 5.5vw, 26px); }
    .inner-cta-box .btn     { width: 100%; justify-content: center; }

    /* Mapa */
    .map-placeholder-inner  { padding: 40px 20px; }
    .map-icon               { font-size: 40px; }
}
