/* =============================================================
   EL ABETO — abeto-innox.css
   v3 · Secciones storytelling-first (referencia: Innox WP theme)
   Reutiliza tokens y paleta de abeto.css
   ============================================================= */


/* =============================================================
   0. RESET / BASE PARA SECCIONES NUEVAS
   ============================================================= */
.abeto-section {
    position: relative;
    padding: clamp(4rem, 9vw, 7.5rem) 0;
    background: #fff;
    color: var(--abeto-navy-deep);
    font-family: var(--abeto-font-body);
    overflow: hidden;
}
.abeto-section--dark {
    background: var(--abeto-navy-deep);
    color: #e8eef5;
}
.abeto-section--ice {
    background: var(--abeto-ice);
}
.abeto-section__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
}

/* Etiqueta tipo "industry" / "nosotros" / "trayectoria" — verticalish, all caps */
.abeto-tag {
    display: inline-block;
    margin: 0 0 0.85rem;
    font-family: var(--abeto-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: lowercase;
    color: var(--abeto-blue-light);
    position: relative;
    padding-left: 28px;
}
.abeto-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 1.5px;
    background: var(--abeto-blue-light);
    transform: translateY(-50%);
}
.abeto-section--dark .abeto-tag {
    color: var(--abeto-blue-light);
}

/* Título mayor estilo Innox — h2/h3 mega con line break manual */
.abeto-mega {
    margin: 0 0 1.5rem;
    font-family: var(--abeto-font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--abeto-navy-deep);
    text-wrap: balance;
}
.abeto-section--dark .abeto-mega { color: #fff; }
.abeto-mega .accent {
    color: var(--abeto-blue-light);
}

/* Lead paragraph */
.abeto-lead {
    max-width: 56ch;
    margin: 0 0 2rem;
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.6;
    color: rgba(15, 37, 64, 0.78);
}
.abeto-section--dark .abeto-lead { color: rgba(232, 238, 245, 0.82); }


/* =============================================================
   1. TRUST BAR (debajo del hero) — ancho completo, fondo navy
   ============================================================= */
.abeto-trust-bar {
    background: linear-gradient(90deg, var(--abeto-navy-deep) 0%, var(--abeto-navy) 100%);
    padding: 2.25rem 0;
    border-top: 1px solid rgba(74, 144, 217, 0.18);
    border-bottom: 1px solid rgba(74, 144, 217, 0.18);
}
.abeto-trust-bar__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem 2rem;
    align-items: center;
}
.abeto-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}
.abeto-trust-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--abeto-blue-light);
    border-radius: 50%;
    color: var(--abeto-blue-light);
}
.abeto-trust-item__icon svg { width: 22px; height: 22px; }
.abeto-trust-item__label {
    font-family: var(--abeto-font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--abeto-blue-light);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}
.abeto-trust-item__value {
    font-family: var(--abeto-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}


/* =============================================================
   2. STORY SECTION — split asimétrico imagen+texto
   "Turning big ideas into great products" estilo Innox
   ============================================================= */
.abeto-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.abeto-story__media {
    position: relative;
}
.abeto-story__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}
/* Año gigante outline detrás de la imagen */
.abeto-story__year {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
    font-family: var(--abeto-font-display);
    font-size: clamp(8rem, 15vw, 14rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(74, 144, 217, 0.28);
    text-stroke: 2px rgba(74, 144, 217, 0.28);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}
.abeto-story__content {
    padding-right: 1rem;
}
.abeto-story__quote-card {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: var(--abeto-ice);
    border-left: 4px solid var(--abeto-blue-light);
    border-radius: 0 8px 8px 0;
    font-family: var(--abeto-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--abeto-navy);
    position: relative;
}
.abeto-story__quote-card::before {
    content: '"';
    position: absolute;
    top: -28px;
    left: 1rem;
    font-size: 5rem;
    line-height: 1;
    color: var(--abeto-blue-light);
    font-family: Georgia, serif;
    opacity: 0.55;
}

@media (max-width: 900px) {
    .abeto-story { grid-template-columns: 1fr; gap: 3rem; }
    .abeto-story__year { font-size: clamp(5rem, 18vw, 9rem); top: -10px; right: 0; }
}


/* =============================================================
   3. PILLARS (Industry Areas estilo Innox) — 3 cards grandes
   ============================================================= */
.abeto-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.abeto-pillar {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--abeto-navy-deep);
    aspect-ratio: 4 / 5;
    isolation: isolate;
    text-decoration: none !important;
    color: #fff;
    transition: transform var(--abeto-dur-base) var(--abeto-ease);
}
.abeto-pillar:hover {
    transform: translateY(-6px);
}
.abeto-pillar__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.4s var(--abeto-ease);
    z-index: 1;
}
.abeto-pillar:hover .abeto-pillar__bg {
    transform: scale(1.08);
}
.abeto-pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(15, 37, 64, 0.0) 0%,
        rgba(15, 37, 64, 0.55) 55%,
        rgba(15, 37, 64, 0.92) 100%);
    transition: background var(--abeto-dur-base) var(--abeto-ease);
}
.abeto-pillar:hover::before {
    background: linear-gradient(180deg,
        rgba(15, 37, 64, 0.1) 0%,
        rgba(15, 37, 64, 0.65) 50%,
        rgba(43, 108, 176, 0.95) 100%);
}
.abeto-pillar__body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 3;
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    color: #fff;
}
.abeto-pillar__tag {
    display: inline-block;
    font-family: var(--abeto-font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: lowercase;
    color: var(--abeto-blue-light);
    margin-bottom: 0.65rem;
}
.abeto-pillar__title {
    font-family: var(--abeto-font-display);
    font-size: clamp(1.65rem, 2.3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}
.abeto-pillar__desc {
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.85);
    margin: 0 0 1rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--abeto-dur-base) var(--abeto-ease),
                opacity var(--abeto-dur-base) var(--abeto-ease);
}
.abeto-pillar:hover .abeto-pillar__desc {
    max-height: 100px;
    opacity: 1;
}
.abeto-pillar__count {
    font-family: var(--abeto-font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.abeto-pillar__count::after {
    content: '→';
    transition: transform var(--abeto-dur-base) var(--abeto-ease);
}
.abeto-pillar:hover .abeto-pillar__count::after {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .abeto-pillars { grid-template-columns: 1fr; }
    .abeto-pillar { aspect-ratio: 16/10; }
    .abeto-pillar__desc { max-height: 100px; opacity: 1; }
}


/* =============================================================
   4. QUOTE / WHOLESALE BANNER — fondo dark + cita grande
   "Somos comercializadora. NO tienda."
   ============================================================= */
.abeto-quote-banner {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) 0;
    background: var(--abeto-navy-deep);
    color: #fff;
    overflow: hidden;
}
.abeto-quote-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(43, 108, 176, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(74, 144, 217, 0.25) 0%, transparent 60%);
    pointer-events: none;
}
.abeto-quote-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('svg/chevron-pattern.svg');
    background-size: 80px 80px;
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
}
.abeto-quote-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
    text-align: center;
}
.abeto-quote-banner__quote {
    font-family: var(--abeto-font-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 2rem;
    text-wrap: balance;
}
.abeto-quote-banner__quote .accent {
    color: var(--abeto-blue-light);
    background: linear-gradient(120deg, var(--abeto-blue-light) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.abeto-quote-banner__cite {
    font-family: var(--abeto-font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(232, 238, 245, 0.65);
}


/* =============================================================
   5. GALLERY MASONRY — fotos almacén/equipo/operación
   ============================================================= */
.abeto-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.abeto-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--abeto-ice);
    border-radius: 4px;
}
.abeto-gallery__item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.abeto-gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.abeto-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--abeto-ease);
}
.abeto-gallery__item:hover img { transform: scale(1.07); }

@media (max-width: 900px) { .abeto-gallery { grid-template-columns: repeat(2, 1fr); } }


/* =============================================================
   6. INDUSTRIES SERVED — bento grid 6 industrias
   ============================================================= */
.abeto-industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.abeto-industry {
    padding: 2rem 1.75rem;
    background: #fff;
    border: 1px solid rgba(15, 37, 64, 0.08);
    border-radius: 8px;
    transition:
        transform var(--abeto-dur-base) var(--abeto-ease),
        border-color var(--abeto-dur-base) var(--abeto-ease),
        box-shadow var(--abeto-dur-base) var(--abeto-ease);
    cursor: default;
}
.abeto-industry:hover {
    transform: translateY(-4px);
    border-color: var(--abeto-blue-light);
    box-shadow: 0 18px 40px rgba(15, 37, 64, 0.12);
}
.abeto-industry__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: var(--abeto-ice);
    border-radius: 10px;
    color: var(--abeto-navy);
    transition: background var(--abeto-dur-base) var(--abeto-ease),
                color var(--abeto-dur-base) var(--abeto-ease);
}
.abeto-industry:hover .abeto-industry__icon {
    background: var(--abeto-navy);
    color: var(--abeto-blue-light);
}
.abeto-industry__icon svg { width: 26px; height: 26px; }
.abeto-industry__title {
    font-family: var(--abeto-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--abeto-navy-deep);
    margin: 0 0 0.5rem;
}
.abeto-industry__desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(15, 37, 64, 0.7);
    margin: 0;
}

@media (max-width: 900px) { .abeto-industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .abeto-industries { grid-template-columns: 1fr; } }


/* =============================================================
   7. CLIENTS / LOGOS BAR
   ============================================================= */
.abeto-clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    padding: 1.5rem 0;
}
.abeto-clients__item {
    width: 100%;
    max-width: 160px;
    height: 80px;
    display: grid;
    place-items: center;
    filter: grayscale(1);
    opacity: 0.55;
    transition: filter var(--abeto-dur-base) var(--abeto-ease),
                opacity var(--abeto-dur-base) var(--abeto-ease);
}
.abeto-clients__item:hover {
    filter: grayscale(0);
    opacity: 1;
}
.abeto-clients__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.abeto-clients__placeholder {
    color: rgba(15, 37, 64, 0.4);
    font-family: var(--abeto-font-display);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1.25rem;
    border: 1px dashed rgba(15, 37, 64, 0.2);
    width: 100%;
    text-align: center;
}


/* =============================================================
   8. CTA FINAL — pantalla completa con catálogo + WhatsApp
   ============================================================= */
.abeto-cta-final {
    position: relative;
    padding: clamp(5rem, 12vw, 10rem) 0;
    background: var(--abeto-navy);
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.abeto-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(74, 144, 217, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(43, 108, 176, 0.35) 0%, transparent 60%);
}
.abeto-cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('svg/chevron-pattern.svg');
    background-size: 100px 100px;
    background-repeat: repeat;
    opacity: 0.08;
    animation: abeto-pattern-drift 80s linear infinite;
}
.abeto-cta-final__inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.abeto-cta-final__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75em;
    font-family: var(--abeto-font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--abeto-blue-light);
    margin: 0 0 1.5rem;
}
.abeto-cta-final__eyebrow::before {
    content: '▲▲▲';
    letter-spacing: -3px;
    font-size: 0.85em;
}
.abeto-cta-final__title {
    font-family: var(--abeto-font-display);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 1.25rem;
    text-wrap: balance;
}
.abeto-cta-final__title .accent { color: var(--abeto-blue-light); }
.abeto-cta-final__sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.55;
    color: rgba(232, 238, 245, 0.85);
    max-width: 56ch;
    margin: 0 auto 2.5rem;
}
.abeto-cta-final__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.abeto-cta-final__contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 144, 217, 0.2);
}
.abeto-cta-final__contact a {
    color: rgba(232, 238, 245, 0.85);
    text-decoration: none;
    font-family: var(--abeto-font-display);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--abeto-dur-base) var(--abeto-ease);
}
.abeto-cta-final__contact a:hover { color: var(--abeto-blue-light); }
.abeto-cta-final__contact svg { width: 18px; height: 18px; }


/* =============================================================
   9. STATS COUNTER (componente reutilizable)
   ============================================================= */
.abeto-counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
.abeto-counter {
    text-align: center;
    padding: 1rem;
}
.abeto-counter__number {
    font-family: var(--abeto-font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--abeto-navy);
    letter-spacing: -0.04em;
    margin: 0 0 0.5rem;
}
.abeto-counter__number .plus { color: var(--abeto-blue-light); }
.abeto-section--dark .abeto-counter__number { color: #fff; }
.abeto-counter__label {
    font-family: var(--abeto-font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(15, 37, 64, 0.6);
}
.abeto-section--dark .abeto-counter__label { color: rgba(232, 238, 245, 0.7); }


/* =============================================================
   10. WHOLESALE STRIP — etiqueta de mayoreo intercalada
   ============================================================= */
.abeto-wholesale-strip {
    background: var(--abeto-blue-light);
    color: var(--abeto-navy-deep);
    padding: 1.25rem 0;
    overflow: hidden;
}
.abeto-wholesale-strip__track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: abeto-marquee 35s linear infinite;
    font-family: var(--abeto-font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.abeto-wholesale-strip__track > span {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
}
.abeto-wholesale-strip__track > span::after {
    content: '▲';
    font-size: 0.7em;
    opacity: 0.55;
}
@keyframes abeto-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* =============================================================
   11. SECTION HEADER (para todas las secciones internas)
   ============================================================= */
.abeto-section__header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 720px;
}
.abeto-section__header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* =============================================================
   14b. HERO INNOX SPLIT — composición fiel a referencia
   • Lado izquierdo: bg navy sólido con texto vertical dominante
   • Lado derecho: imagen del producto/categoría
   ============================================================= */

.abeto-hero-innox-banner {
    background-color: var(--abeto-navy-deep) !important;
    position: relative;
    overflow: hidden;
}

/* Overlay sólido del lado izquierdo — tapa la mitad de la imagen
   creando el efecto Innox de bloque sólido + imagen */
.abeto-hero-innox-banner .banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 52%;
    background: var(--abeto-navy-deep);
    z-index: 1;
    pointer-events: none;
}
/* Transición suave entre el bloque sólido y la imagen */
.abeto-hero-innox-banner .banner-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 52%;
    bottom: 0;
    width: 14%;
    background: linear-gradient(90deg,
        var(--abeto-navy-deep) 0%,
        rgba(15,37,64,0.55) 50%,
        rgba(15,37,64,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.abeto-hero-innox-banner .banner-bg img {
    object-fit: cover !important;
    object-position: 70% center !important;
}

/* El text-box debe estar encima del overlay */
.abeto-hero-innox-banner .banner-layers {
    z-index: 2;
}

/* Texto vertical PROTAGONISTA (no decorativo) */
.abeto-hero-innox-stack {
    font-family: var(--abeto-font-display);
    font-weight: 900;
    font-size: clamp(4rem, 11vw, 11rem);
    line-height: 0.85;
    letter-spacing: -0.045em;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 2rem;
}
.abeto-hero-innox-stack span {
    display: block;
}
.abeto-hero-innox-stack span:nth-child(2) {
    color: var(--abeto-blue-light);
}

.abeto-hero-innox-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--abeto-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--abeto-blue-light);
    margin: 0 0 2rem;
}
.abeto-hero-innox-eyebrow::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1.5px;
    background: var(--abeto-blue-light);
}

.abeto-hero-innox-sub {
    font-family: var(--abeto-font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.55;
    color: rgba(232,238,245,0.78) !important;
    max-width: 42ch;
    margin: 0 0 2.5rem;
}

.abeto-hero-innox-meta {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--abeto-font-display);
}
.abeto-hero-innox-meta__item small {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(232,238,245,0.5);
    margin-bottom: 0.4rem;
}
.abeto-hero-innox-meta__item strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Asegurar visibilidad del text-box sobre bg navy */
.abeto-hero-innox-banner .text-box-content.text.dark,
.abeto-hero-innox-banner .text-box-content.text.dark .text-inner,
.abeto-hero-innox-banner .text-box-content.text.dark p,
.abeto-hero-innox-banner .text-box-content.text.dark h1,
.abeto-hero-innox-banner .text-box-content.text.dark h2 {
    color: #fff !important;
}

/* CTA buttons override en hero innox */
.abeto-hero-innox-banner .button.primary,
.abeto-hero-innox-banner .button.abeto-cta--primary {
    background: var(--abeto-blue-light) !important;
    color: var(--abeto-navy-deep) !important;
    border-color: var(--abeto-blue-light) !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 1.1em 2.2em !important;
    border-radius: 2px !important;
}
.abeto-hero-innox-banner .button.is-outline,
.abeto-hero-innox-banner .button.abeto-cta--ghost {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 1.1em 2.2em !important;
    border-radius: 2px !important;
}
.abeto-hero-innox-banner .button.is-outline:hover {
    background: var(--abeto-blue-light) !important;
    color: var(--abeto-navy-deep) !important;
    border-color: var(--abeto-blue-light) !important;
}

/* Slider nav posicionado sobre la imagen */
.abeto-hero-slider .flickity-prev-next-button {
    background: rgba(15,37,64,0.6) !important;
    color: #fff !important;
}

/* Mobile: stack vertical (imagen full + texto bajo) */
@media (max-width: 768px) {
    .abeto-hero-innox-banner .banner-bg {
        left: 0 !important;
        width: 100% !important;
    }
    .abeto-hero-innox-banner .banner-bg::after {
        background: linear-gradient(180deg, transparent 0%, rgba(15,37,64,0.85) 60%, var(--abeto-navy-deep) 100%) !important;
    }
    .abeto-hero-innox-stack { font-size: clamp(3.5rem, 16vw, 6rem); }
}


/* =============================================================
   14. HERO SLIDER (estilo Innox) — banner_slider de Flatsome
   con clase .abeto-hero-slider
   ============================================================= */

/* Slider container */
.abeto-hero-slider .ux-slider-wrapper,
.abeto-hero-slider .ux-slider {
    height: 100vh;
    min-height: 640px;
}
.abeto-hero-slider .img,
.abeto-hero-slider .ux_banner,
.abeto-hero-slider .banner {
    min-height: 100vh !important;
    height: 100vh !important;
}
.abeto-hero-slider .img-overlay {
    background: linear-gradient(135deg, rgba(15,37,64,0.78) 0%, rgba(15,37,64,0.45) 60%, rgba(43,108,176,0.55) 100%) !important;
}

/* Texto vertical "IN DUS TRY" estilo Innox
   El elemento está dentro de .banner-layers.container que tiene
   padding lateral y max-width. Lo sacamos visualmente con left negativo
   y lo dejamos como overlay decorativo. */
.abeto-hero-slider .banner-layers { overflow: visible !important; }
.abeto-hero-slider .container { overflow: visible !important; }
.abeto-hero-slider .banner-layers > .abeto-hero-vertical,
.abeto-hero-vertical {
    position: absolute !important;
    top: 50% !important;
    left: -1rem !important;
    transform: translateY(-50%) !important;
    font-family: var(--abeto-font-display);
    font-size: clamp(4rem, 12vw, 12rem) !important;
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.05em;
    color: transparent !important;
    -webkit-text-stroke: 2px rgba(74, 144, 217, 0.5);
    text-stroke: 2px rgba(74, 144, 217, 0.5);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    z-index: 1 !important;
    margin: 0 !important;
}
.abeto-hero-vertical span {
    display: block !important;
}

/* Eyebrow superior con chevron triple */
.abeto-hero-eyebrow-line {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--abeto-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--abeto-blue-light);
    margin-bottom: 1.5rem;
}
.abeto-hero-eyebrow-line::before {
    content: '▲▲▲';
    letter-spacing: -3px;
    font-size: 0.85em;
}

/* Mega título del hero */
.abeto-hero-mega-title {
    font-family: var(--abeto-font-display);
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: #fff !important;
    text-transform: none;
    margin: 0 0 1.5rem;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.abeto-hero-mega-title .accent {
    color: var(--abeto-blue-light);
}

.abeto-hero-slider p.abeto-hero-mega-sub,
.abeto-hero-mega-sub {
    font-family: var(--abeto-font-body) !important;
    font-size: clamp(1rem, 1.4vw, 1.2rem) !important;
    line-height: 1.55 !important;
    color: rgba(255,255,255,0.9) !important;
    max-width: 50ch !important;
    margin: 0 0 2.25rem !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4) !important;
    display: block !important;
}

/* Override Flatsome text dark color en el text-box del slider para
   asegurar texto blanco encima de imagen */
.abeto-hero-slider .text-box-content.text.dark,
.abeto-hero-slider .text-box-content.text.dark .text-inner,
.abeto-hero-slider .text-box-content.text.dark p,
.abeto-hero-slider .text-box-content.text.dark h1 {
    color: #fff !important;
}
.abeto-hero-slider .text-box-content.text.dark .accent {
    color: var(--abeto-blue-light) !important;
}

/* Tag de categoría arriba del mega título (PLASTIC / STEEL etc → en nuestro caso EMPAQUE / SEGURIDAD / LIMPIEZA) */
.abeto-hero-cat {
    display: inline-block;
    background: var(--abeto-blue-light);
    color: var(--abeto-navy-deep);
    padding: 0.45em 1em;
    font-family: var(--abeto-font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border-radius: 2px;
}

/* CTA buttons en hero — fuerza color claro */
.abeto-hero-slider .button.abeto-cta--primary,
.abeto-hero-slider .button.primary {
    background: var(--abeto-blue-light) !important;
    color: var(--abeto-navy-deep) !important;
    border-color: var(--abeto-blue-light) !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 1em 2em !important;
    border-radius: 2px !important;
}
.abeto-hero-slider .button.is-outline,
.abeto-hero-slider .button.abeto-cta--ghost {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 1em 2em !important;
    border-radius: 2px !important;
}
.abeto-hero-slider .button.is-outline:hover {
    background: var(--abeto-blue-light) !important;
    color: var(--abeto-navy-deep) !important;
    border-color: var(--abeto-blue-light) !important;
}


/* =============================================================
   15. SECCIONES — wrappers con clase abeto-bg-* / abeto-tone-*
   Para usar con [section bg_color="..."] de Flatsome y override
   ============================================================= */

/* Asegurar legibilidad en secciones dark */
.abeto-tone-dark,
.abeto-tone-dark * {
    color: #e8eef5;
}
.abeto-tone-dark h1,
.abeto-tone-dark h2,
.abeto-tone-dark h3,
.abeto-tone-dark h4 { color: #fff; }
.abeto-tone-dark .accent { color: var(--abeto-blue-light); }

/* Asegurar legibilidad en secciones light/ice */
.abeto-tone-light,
.abeto-tone-light p,
.abeto-tone-light li {
    color: var(--abeto-navy-deep);
}
.abeto-tone-light h1,
.abeto-tone-light h2,
.abeto-tone-light h3,
.abeto-tone-light h4 { color: var(--abeto-navy-deep); }
.abeto-tone-light .accent { color: var(--abeto-blue); }


/* =============================================================
   16. TRUST BAR como section/row Flatsome (.abeto-trust-row)
   ============================================================= */
.abeto-trust-row .col {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.abeto-trust-row .icon-box-img {
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin-right: 1rem;
}


/* =============================================================
   17. PILLARS COMO BANNER GRID — el [ux_banner_grid] aplica
   .abeto-pillars-grid; cada banner aplica .abeto-pillar-banner
   ============================================================= */
.abeto-pillar-banner .img-overlay {
    background: linear-gradient(180deg,
        rgba(15,37,64,0.0) 0%,
        rgba(15,37,64,0.55) 55%,
        rgba(15,37,64,0.92) 100%) !important;
    transition: background 400ms var(--abeto-ease) !important;
}
.abeto-pillar-banner:hover .img-overlay {
    background: linear-gradient(180deg,
        rgba(43,108,176,0.2) 0%,
        rgba(43,108,176,0.6) 50%,
        rgba(43,108,176,0.95) 100%) !important;
}
.abeto-pillar-banner .text-box {
    background: transparent !important;
}
.abeto-pillar-banner h2,
.abeto-pillar-banner h3,
.abeto-pillar-banner .heading-large {
    color: #fff !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: -0.02em !important;
}


/* =============================================================
   18. STORY ROW (split image+text Flatsome row)
   ============================================================= */
.abeto-story-row .col {
    align-self: center;
}
.abeto-story-row .abeto-year-overlay {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 0;
    font-family: var(--abeto-font-display);
    font-size: clamp(7rem, 14vw, 13rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(74,144,217,0.28);
    pointer-events: none;
    user-select: none;
}


/* =============================================================
   19. CTA FINAL como section
   ============================================================= */
.abeto-cta-final-section {
    background: linear-gradient(135deg, var(--abeto-navy) 0%, var(--abeto-navy-deep) 100%) !important;
    position: relative;
    overflow: hidden;
}
.abeto-cta-final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(74,144,217,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(43,108,176,0.35) 0%, transparent 60%);
    pointer-events: none;
}
.abeto-cta-final-section h1,
.abeto-cta-final-section h2,
.abeto-cta-final-section h3 {
    color: #fff !important;
    font-weight: 800;
    line-height: 1.05;
}


/* =============================================================
   20. RESPONSIVE — hero slider mobile
   ============================================================= */
@media (max-width: 768px) {
    .abeto-hero-slider .ux-slider-wrapper,
    .abeto-hero-slider .img,
    .abeto-hero-slider .ux_banner,
    .abeto-hero-slider .banner { min-height: 80vh !important; height: 80vh !important; }
    .abeto-hero-vertical { font-size: clamp(2rem, 14vw, 4rem); left: 1rem; opacity: 0.6; }
    .abeto-hero-mega-title { font-size: clamp(2rem, 9vw, 3rem); }
}


/* =============================================================
   13. PREVIEW PAGE — ajusta layout sin ocultar header
   El header de Flatsome (logo + menú) DEBE verse.
   Solo quitamos el padding default del entry-content para que las
   secciones full-width respiren.
   ============================================================= */
.page-id-1906 #content { padding-top: 0 !important; padding-bottom: 0 !important; }
.page-id-1906 #main { padding: 0 !important; }
.page-id-1906 .page-wrapper > .container,
.page-id-1906 #post-1906 .entry-content > .container {
    max-width: none !important;
    padding: 0 !important;
}
.page-id-1906 .entry-content { margin: 0 !important; padding: 0 !important; }
.page-id-1906 .entry-content > p:empty { display: none; }
.page-id-1906 #post-1906 .entry-content > p:first-child:empty { display: none; }


/* =============================================================
   12. RESPONSIVE GLOBAL TWEAKS
   ============================================================= */
@media (max-width: 768px) {
    .abeto-section { padding: clamp(3rem, 8vw, 5rem) 0; }
    .abeto-mega { font-size: clamp(2rem, 8vw, 2.8rem); }
    .abeto-trust-bar__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .abeto-trust-bar__inner { grid-template-columns: 1fr; }
}
