/* ═══════════════════════════════════════
   HOME — CCL  (fiel al mockup webpge.jpeg)
   ═══════════════════════════════════════ */

/* ── HERO ── */
.hero {
    min-height: 92vh;
    background-color: var(--negro);
    background-image: url('../images/fuel-tanker-truck-winter-highway-long-haul.jpg');
    background-size: cover;
    background-position: center 40%;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;       /* navbar height */
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Overlay: denso a la izquierda, transparente a la derecha — deja ver el camión */
    background: linear-gradient(
        to right,
        rgba(26,26,26,0.88) 0%,
        rgba(26,26,26,0.72) 45%,
        rgba(26,26,26,0.25) 75%,
        rgba(26,26,26,0.05) 100%
    );
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--naranja);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-badge::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--naranja);
    display: inline-block;
}

.hero-text { max-width: 600px; }

.hero-text h1 {
    font-size: clamp(42px, 5.5vw, 70px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--blanco);
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-text h1 span { color: var(--naranja); }

.hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 38px;
    max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Botón secundario en hero (outline blanco) */
.btn-outline-white {
    background: transparent;
    color: var(--blanco);
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 4px;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-outline-white:hover {
    border-color: var(--naranja);
    color: var(--naranja);
}

/* ── FRANJA DE ÍCONOS ── */
.hero-features {
    background: var(--blanco);
    border-top: 3px solid var(--naranja);
    padding: 28px 0;
    position: relative;
    z-index: 3;
}
.hero-features-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.hero-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 160px;
}
.feat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}
.feat-icon img,
.feat-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Fallback si no hay imagen — mantiene el emoji pero pequeño */
.feat-icon-emoji { font-size: 22px; line-height: 36px; }

.hero-feat strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--negro);
    line-height: 1.3;
    margin-bottom: 3px;
}
.hero-feat span {
    display: block;
    font-size: 12px;
    color: var(--gris-carbono);
    line-height: 1.4;
}

/* ── ABOUT: checks ── */
.about-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 32px;
}
.about-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--negro);
}
.about-check span {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--naranja);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ── QUOTE ── */
.quote-section {
    background: var(--negro);
    padding: 60px 0;
}
.site-quote {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.5;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    border: none;
}
.site-quote em { color: var(--naranja); font-style: normal; }
.quote-mark {
    font-size: 80px;
    color: var(--naranja);
    line-height: 0;
    vertical-align: -0.35em;
    margin-right: 6px;
    font-family: Georgia, serif;
    opacity: 0.6;
}

/* ── NOSOTROS PREVIEW ── */
.about-preview { background: var(--blanco); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
}
.about-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-content .section-label { margin-bottom: 12px; }

.about-content .section-title {
    font-size: clamp(24px, 3.5vw, 38px);
    margin-bottom: 22px;
}

.about-content > p {
    font-size: 15px;
    color: var(--gris-carbono);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-stats {
    display: flex;
    gap: 36px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item { text-align: left; }
.stat-item strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--naranja);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-item span {
    font-size: 12px;
    color: var(--gris-carbono);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── SERVICIOS ── */
.services-section { background: var(--bg-light); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.service-card {
    background: var(--blanco);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--naranja);
}
.service-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #FEF3E8;
    border: 2px solid rgba(245,159,53,0.25);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.25s;
}
.service-card:hover .service-icon-wrap {
    background: var(--naranja);
    border-color: var(--naranja);
}
.service-icon { font-size: 26px; line-height: 1; }
.service-card h3 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--negro);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 13px;
    color: var(--gris-carbono);
    line-height: 1.7;
    margin-bottom: 18px;
}
.service-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--naranja);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.service-link:hover { color: var(--rojo); }

/* ── POR QUÉ CCL ── */
.why-section { background: var(--blanco); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.why-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--naranja);
    color: var(--blanco);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-list li strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--negro);
    margin-bottom: 4px;
}
.why-list li p {
    font-size: 13px;
    color: var(--gris-carbono);
    line-height: 1.65;
    margin: 0;
}
.why-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* ── TESTIMONIOS ── */
.testimonials-section { background: var(--bg-light); }

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}
.testimonials-header .section-subtitle { margin-bottom: 0; max-width: 400px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--blanco);
    border-radius: var(--radius-md);
    padding: 32px 30px;
    border: var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.testimonial-card--accent {
    background: var(--negro);
    border-color: transparent;
}
.testimonial-card--accent > p { color: rgba(255,255,255,0.75); }

.tcard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stars {
    color: var(--naranja);
    font-size: 15px;
    letter-spacing: 3px;
}
.tcard-logo {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: #FEF3E8;
    border: 1px solid rgba(245,159,53,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--naranja);
    letter-spacing: 0.05em;
}
.tcard-logo--dark {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.15);
    color: var(--blanco);
}

.testimonial-card > p {
    font-size: 14px;
    color: var(--gris-carbono);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--naranja);
    color: var(--blanco);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--negro);
}
.testimonial-author span { font-size: 12px; color: var(--gris-medio); }

/* ── SECTORES (home) ── */
.sectores-section { background: var(--bg-light); }

.sectores-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.sectores-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
}
.sector-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.sector-row:first-child { border-top: 1px solid var(--border); }
.sector-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--naranja);
    flex-shrink: 0;
    margin-top: 5px;
}
.sector-row strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--negro);
    margin-bottom: 3px;
}
.sector-row span {
    font-size: 13px;
    color: var(--gris-carbono);
    line-height: 1.5;
}

/* ── TECNOLOGÍA ── */
.tech-section { background: var(--blanco); }

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.tech-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}
.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.tech-icon {
    font-size: 24px;
    width: 48px; height: 48px;
    background: #FEF3E8;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(245,159,53,0.2);
}
.tech-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--negro);
    margin-bottom: 4px;
}
.tech-item span {
    font-size: 13px;
    color: var(--gris-carbono);
    line-height: 1.6;
}
.tech-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* ── COMPROMISO (reemplaza CTA final) ── */
.compromiso-section { background: var(--bg-light); padding: 80px 0; }

.compromiso-box {
    background: var(--negro);
    border-radius: var(--radius-md);
    border-top: 3px solid var(--naranja);
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}
.compromiso-text .section-label { margin-bottom: 16px; }
.compromiso-text h2 {
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 800;
    color: var(--blanco);
    line-height: 1.4;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    max-width: 560px;
}
.compromiso-claim {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}
.compromiso-claim strong { color: var(--naranja); font-style: normal; }
.compromiso-action {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 200px;
}
.compromiso-action .btn { justify-content: center; }

/* ── EMPRESAS ── */
.empresas-section { background: var(--blanco); }

/* Carrusel infinito */
.logos-carousel {
    overflow: hidden;
    position: relative;
    margin-bottom: 64px;
}
.logos-carousel::before,
.logos-carousel::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.logos-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--blanco), transparent);
}
.logos-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--blanco), transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: scrollLogos 28s linear infinite;
    width: max-content;
}
.logos-track:hover { animation-play-state: paused; }

@keyframes scrollLogos {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.logo-item {
    flex-shrink: 0;
    height: 72px;
    min-width: 180px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(87,87,86,0.1);
}
/* Con imagen real: */
.logo-item img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s;
}
.logo-item:hover img { filter: grayscale(0%) opacity(1); }
/* Placeholder texto mientras no hay logo: */
.logo-item span {
    font-size: 13px;
    font-weight: 700;
    color: var(--gris-medio);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: color 0.3s;
}
.logo-item:hover span { color: var(--naranja); }

/* Sectores */
.sectores-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.sector-item {
    text-align: center;
    padding: 28px 16px 24px;
    border-radius: var(--radius-md);
    border: var(--border);
    background: var(--bg-light);
    transition: all 0.25s;
    cursor: default;
}
.sector-item:hover {
    border-color: var(--naranja);
    background: #FEF3E8;
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}
.sector-icon { font-size: 30px; margin-bottom: 12px; }
.sector-item strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--negro);
    margin-bottom: 5px;
}
.sector-item span {
    font-size: 11px;
    color: var(--gris-carbono);
    line-height: 1.5;
}

/* ── CTA FINAL ── */
.cta-section { padding: 0; }
.cta-inner {
    background: var(--negro);
    background-image: url('../images/fuel-tanker-truck-winter-highway-long-haul.jpg');
    background-size: cover;
    background-position: center 60%;
    position: relative;
    padding: 100px 0;
}
.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.82);
}
.cta-inner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--naranja);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blanco);
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-content h2 span { color: var(--naranja); }
.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 38px;
    line-height: 1.7;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-outline-white-cta {
    background: transparent;
    color: var(--blanco);
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 4px;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-outline-white-cta:hover {
    border-color: var(--naranja);
    color: var(--naranja);
}

/* ── RESPONSIVE — TABLET (≤991px) ── */
@media (max-width: 991px) {
    /* Hero */
    .hero               { min-height: 85vh; align-items: flex-end; padding-bottom: 0; }
    .hero .container    { padding-top: 40px; padding-bottom: 48px; }
    .hero-text          { max-width: 100%; }
    .hero-text h1       { font-size: clamp(38px, 7vw, 56px); }

    /* Features: 2 columnas */
    .hero-features      { padding: 20px 0; }
    .hero-features-grid { flex-wrap: wrap; gap: 0; }
    .hero-feat          { min-width: 50%; padding: 14px 16px; border-bottom: 1px solid var(--border); }
    .hero-feat:nth-child(odd) { border-right: 1px solid var(--border); }

    /* About */
    .about-grid         { grid-template-columns: 1fr; gap: 36px; }
    .about-img-wrap img { height: 280px; }
    .about-image        { order: -1; }

    /* Servicios */
    .services-grid      { grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Por qué */
    .why-grid           { grid-template-columns: 1fr; gap: 36px; }
    .why-image          { order: -1; }
    .why-image img      { height: 260px; }

    /* Sectores */
    .sectores-intro     { grid-template-columns: 1fr; gap: 36px; }
    .sectores-grid      { grid-template-columns: repeat(3, 1fr); }

    /* Tech */
    .tech-grid          { grid-template-columns: 1fr; gap: 36px; }
    .tech-image         { order: -1; }
    .tech-image img     { height: 260px; }

    /* Testimonios */
    .testimonials-header { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 32px; }
    .testimonials-grid  { grid-template-columns: 1fr; }

    /* Compromiso */
    .compromiso-box     { grid-template-columns: 1fr; gap: 32px; padding: 44px 28px; }
    .compromiso-action  { flex-direction: row; flex-wrap: wrap; gap: 12px; }

    /* Carrusel */
    .logo-item          { min-width: 150px; padding: 0 20px; }
}

/* ── RESPONSIVE — MOBILE (≤600px) ── */
@media (max-width: 600px) {
    /* Hero */
    .hero               { min-height: 100svh; background-position: 65% center; }
    .hero::after {
        background: linear-gradient(
            to bottom,
            rgba(26,26,26,0.45) 0%,
            rgba(26,26,26,0.85) 55%,
            rgba(26,26,26,0.95) 100%
        );
    }
    .hero .container    { padding-bottom: 36px; }
    .hero-badge         { font-size: 10px; letter-spacing: 2px; margin-bottom: 14px; }
    .hero-text h1       { font-size: clamp(34px, 9.5vw, 46px); margin-bottom: 16px; }
    .hero-text p        { font-size: 14px; margin-bottom: 28px; }
    .hero-actions       { flex-direction: column; gap: 10px; }
    .hero-actions .btn,
    .hero-actions .btn-outline-white {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 13px;
    }

    /* Features: lista vertical */
    .hero-features      { padding: 0; border-top: none; }
    .hero-features-grid { flex-direction: column; gap: 0; }
    .hero-feat          {
        min-width: 100%;
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 14px 16px;
    }
    .hero-feat:last-child { border-bottom: none; }
    .feat-icon          { width: 28px; height: 28px; }
    .hero-feat strong   { font-size: 11px; }
    .hero-feat span     { font-size: 11px; }

    /* Quote */
    .site-quote         { font-size: clamp(16px, 5vw, 22px); padding: 0 4px; }
    .quote-mark         { font-size: 56px; }

    /* About */
    .about-img-wrap img { height: 220px; border-radius: var(--radius-sm); }
    .about-content .section-title { font-size: clamp(22px, 6vw, 30px); }
    .about-stats        { gap: 12px; flex-wrap: wrap; }
    .stat-item strong   { font-size: 26px; }

    /* Servicios */
    .services-grid          { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
    .service-card           { padding: 20px 16px; display: flex; align-items: flex-start; gap: 16px; text-align: left; }
    .service-icon-wrap      { flex-shrink: 0; margin: 0; width: 48px; height: 48px; }
    .service-card h3        { font-size: 13px; margin-bottom: 6px; }
    .service-card p         { font-size: 12px; margin-bottom: 10px; }
    /* El ícono ya no centra — queda a la izquierda */
    .service-card:hover     { transform: none; }

    /* Por qué */
    .why-image img      { height: 200px; }
    .why-list           { gap: 16px; margin-top: 20px; }

    /* Sectores */
    .sectores-intro > *:first-child .section-title { font-size: clamp(22px, 6vw, 30px); }
    .sectores-grid      { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sector-item        { padding: 20px 12px; }
    .sector-icon        { font-size: 24px; margin-bottom: 8px; }

    /* Tech */
    .tech-image img     { height: 200px; }
    .tech-items         { gap: 16px; margin-top: 20px; }
    .tech-icon          { width: 40px; height: 40px; font-size: 18px; }

    /* Testimonios */
    .testimonial-card   { padding: 24px 20px; }

    /* Compromiso */
    .compromiso-box     { padding: 32px 18px; gap: 24px; }
    .compromiso-text h2 { font-size: clamp(18px, 5.5vw, 26px); }
    .compromiso-action  { flex-direction: column; gap: 10px; }
    .compromiso-action .btn,
    .compromiso-action .btn-outline-white-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Carrusel */
    .logo-item          { min-width: 120px; padding: 0 14px; height: 60px; }
    .logos-carousel::before,
    .logos-carousel::after { width: 40px; }
    .logos-carousel     { margin-bottom: 40px; }

    /* Empresas sectores */
    .sectores-grid      { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE — SMALL MOBILE (≤400px) ── */
@media (max-width: 400px) {
    .hero-text h1       { font-size: 32px; }
    .services-grid      { grid-template-columns: 1fr; }
    .sectores-grid      { grid-template-columns: 1fr; }
    .about-stats        { flex-direction: column; gap: 16px; border: none; padding: 0; margin: 20px 0; }
}
