/* ── RESET & BASE ─────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── COLORES ─────────────────────────────────── */
:root {
    --rojo: #f5a623;         /* Amarillo/Naranja de SIJAM */
    --rojo-dark: #d98a0f;    /* Amarillo/Naranja oscuro para hover */
    --amarillo: #f5a623;     /* Amarillo de la marca */
    --gris-oscuro: #1e1e1e;  /* Gris oscuro sólido del manual */
    --gris-medio: #5a5a5a;
    --gris-claro: #f5f5f5;
    --blanco: #ffffff;
    --sombra: 0 4px 20px rgba(0, 0, 0, .08);
}

/* ── UTILIDADES ──────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-rojo {
    background: var(--rojo);
    color: #fff;
}

.btn-rojo:hover {
    background: var(--rojo-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .15);
}

.btn-amarillo {
    background: var(--amarillo);
    color: #fff;
}

.btn-amarillo:hover {
    background: #d4891a;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transform: skewX(-12deg);
}

.tag-red {
    background: var(--rojo);
    color: #fff;
}

.tag-yellow {
    background: var(--amarillo);
    color: #fff;
}

.tag-dark {
    background: var(--gris-oscuro);
    color: #fff;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--gris-oscuro);
    line-height: 1.2;
}

.section-sub {
    font-size: 17px;
    color: var(--gris-medio);
    margin-top: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.divider {
    width: 56px;
    height: 4px;
    background: var(--rojo);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ── HEADER ──────────────────────────────────── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

/* Premium brand logo animation */
.marca-logo-img {
    height: 42px;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.65);
    transition: all 0.3s ease;
}

.marca-logo-img:hover {
    filter: brightness(0) invert(1) opacity(1);
    transform: translateY(-2px);
}


nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gris-medio);
    transition: color .2s;
}

nav a:hover {
    color: var(--rojo);
}

.nav-cta {
    background: var(--rojo);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 6px;
}

.nav-cta:hover {
    background: var(--rojo-dark) !important;
    color: #fff !important;
}

/* Hamburger menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    outline: none;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gris-oscuro);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── HERO ────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: radial-gradient(circle at 80% 20%, #1c2638 0%, #0d121c 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    position: relative;
}

/* Decorative glowing blobs in the background */
.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0) 70%);
    top: 10%;
    right: 5%;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0) 70%);
    bottom: 10%;
    left: 5%;
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    color: #fff;
}

.hero-badge-pill {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.25);
    color: var(--amarillo);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    text-transform: uppercase;
    transform: skewX(-12deg);
}

.hero-title {
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -1px;
    color: #fff;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--rojo) 0%, var(--amarillo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 15.5px);
    opacity: .85;
    margin-bottom: 24px;
    line-height: 1.6;
    color: #e2e8f0;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
}

.hero-badge {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-badge strong {
    font-size: 24px;
    font-weight: 900;
    color: var(--amarillo);
    letter-spacing: -0.5px;
}

.hero-badge span {
    font-size: 12px;
    color: #a0aec0;
    line-height: 1.3;
}

/* Hero Right Column: Graphic */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-main-video {
    max-height: 550px;
    width: auto;
    display: block;
    border-radius: 24px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.visual-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Glassmorphic floating badges */
.floating-badge {
    position: absolute;
    background: rgba(13, 18, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.badge-top {
    top: -15px;
    left: -25px;
    animation: float-slow 7s ease-in-out infinite alternate;
}

.badge-bottom {
    bottom: -15px;
    right: -25px;
    animation: float-slow 8s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(5px, -8px); }
}

.badge-icon {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.badge-text span {
    font-size: 11px;
    color: #a0aec0;
}

/* ── RESPONSIVE OVERRIDES ────────────────────── */
@media (max-width: 900px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }

    .hero-badge-pill {
        margin: 0 auto 24px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
        gap: 30px;
    }

    .badge-top {
        left: 10px;
        top: -10px;
    }

    .badge-bottom {
        right: 10px;
        bottom: -10px;
    }
}

/* ── MARCAS / LOGOS ──────────────────────────── */
.marcas-bar {
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 0;
}

.marcas-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.marca-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* ── INTRO / NOSOTROS ───────────────────────── */
.intro-section {
    padding: 60px 0 20px;
    background: #ffffff;
    text-align: center;
}

.intro-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gris-claro);
    padding: 32px 40px;
    border-radius: 16px;
    border-left: 5px solid var(--amarillo);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.intro-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.intro-text {
    font-size: 18px;
    color: var(--gris-medio);
    line-height: 1.7;
    font-weight: 500;
}

.intro-text strong {
    font-weight: 700;
    color: var(--gris-oscuro);
}

/* ── CATEGORÍAS PRODUCTOS ────────────────────── */
.productos {
    padding: 96px 0;
    background: #fff;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cat-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra);
    background: #fff;
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cat-img {
    height: 210px;
    background: var(--gris-claro) center/cover no-repeat;
    position: relative;
    flex-shrink: 0;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-card:hover .cat-img {
    transform: scale(1.05);
}

.cat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .6) 100%);
}

.cat-tag {
    position: absolute;
    top: 14px;
    left: 14px;
}

.cat-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cat-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--gris-oscuro);
    margin-bottom: 8px;
}

.cat-desc {
    font-size: 14px;
    color: var(--gris-medio);
    margin-bottom: 18px;
    line-height: 1.5;
    flex-grow: 1;
}

.cat-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.spec-pill {
    background: var(--gris-claro);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gris-oscuro);
}

.cat-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.cat-cta {
    flex: 1;
    text-align: center;
    padding: 11px;
    background: var(--rojo);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    display: block;
    transition: background .2s;
}

.cat-cta:hover {
    background: var(--rojo-dark);
}

.cat-wpp {
    background: #25d366;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
    cursor: pointer;
}

.cat-wpp:hover {
    background: #1ebd56;
    transform: scale(1.05);
}

/* ── LINEAS FILA 2 ───────────────────────────── */
.lineas {
    padding: 0 0 96px;
    background: #fff;
}

.linea-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .linea-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .linea-grid {
        grid-template-columns: 1fr;
    }
}

.linea-card {
    background: var(--gris-claro);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 3px solid transparent;
}

.linea-card:hover {
    background: #fdfdfd;
    transform: translateY(-8px);
    border-bottom-color: var(--amarillo);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.linea-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.linea-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--gris-oscuro);
    margin-bottom: 6px;
}

.linea-sub {
    font-size: 13px;
    color: var(--gris-medio);
}

/* ── ALQUILER / VENTA ────────────────────────── */
.modalidades {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--gris-oscuro) 0%, #111 100%);
    color: #fff;
}

.mod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mod-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 40px 36px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mod-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .1);
    border-color: var(--amarillo);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mod-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.mod-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.mod-desc {
    font-size: 15px;
    opacity: .8;
    margin-bottom: 24px;
}

.mod-list {
    list-style: none;
    margin-bottom: 28px;
}

.mod-list li {
    padding: 7px 0;
    font-size: 14px;
    opacity: .85;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mod-list li::before {
    content: '✓';
    color: var(--amarillo);
    font-weight: 900;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ── BENEFICIOS ──────────────────────────────── */
.beneficios {
    padding: 96px 0;
    background: var(--gris-claro);
}

.ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

@media (max-width: 600px) {
    .ben-grid {
        grid-template-columns: 1fr;
    }
}

.ben-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: var(--sombra);
    border-top: 4px solid var(--rojo);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.ben-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-top-color: var(--gris-oscuro);
}

.ben-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.ben-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--gris-oscuro);
}

.ben-desc {
    font-size: 14px;
    color: var(--gris-medio);
}

.hero-main-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── SUSTENTABILIDAD ─────────────────────────── */
.sustentabilidad {
    padding: 60px 0;
    background: #fff;
}

.sust-banner {
    background: #1b4d22; /* Clean dark forest green */
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sust-banner-left {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 40px;
}

.sust-banner-right {
    flex: 2;
}

.sust-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sust-banner-left .sust-big-num {
    font-size: 72px;
    font-weight: 900;
    color: #7ddb7d;
    line-height: 1;
}

.sust-banner-left .sust-big-label {
    font-size: 15px;
    opacity: .95;
    margin-top: 8px;
    line-height: 1.4;
}

.sust-banner-right .sust-item {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sust-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.sust-item-text strong {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
}

.sust-item-text span {
    font-size: 13px;
    color: #c2dcc2;
    line-height: 1.3;
}

/* Responsive banner */
@media (max-width: 992px) {
    .sust-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sust-banner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 24px;
    }
    .sust-banner-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 24px;
    }
}

/* ── SERVICIO POST VENTA ─────────────────────── */
.postventa {
    padding: 96px 0;
    background: var(--gris-claro);
}

.pv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.pv-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: var(--sombra);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.pv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 166, 35, 0.2);
    background-color: #fafafa;
}

.pv-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.pv-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--gris-oscuro);
    margin-bottom: 8px;
}

.pv-desc {
    font-size: 14px;
    color: var(--gris-medio);
}

/* confianza section CSS removed to avoid duplication */

/* ── CTA FINAL ───────────────────────────────── */
.cta-final {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--rojo) 0%, #8b0000 100%);
    color: #fff;
    text-align: center;
}

.cta-badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--amarillo);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-final .section-title {
    color: #fff;
}

.cta-final .divider {
    background: var(--amarillo);
}

.cta-desc {
    font-size: 18px;
    opacity: .9;
    margin: 16px auto 40px;
    max-width: 560px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-info {
    margin-top: 32px;
    font-size: 14px;
    opacity: .8;
}

.cta-info a {
    color: var(--amarillo);
    font-weight: 700;
}

/* ── CONTACTO FORM & CHANNELS ────────────────── */
.contacto {
    padding: 100px 0 140px 0;
    background: radial-gradient(circle at 10% 20%, #161f30 0%, #0b0e17 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.contacto::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, rgba(245, 166, 35, 0) 70%);
    top: -50px;
    left: -50px;
    pointer-events: none;
}

.contact-badge-pill {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.25);
    color: var(--amarillo);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.contacto .section-title {
    color: #fff;
}

.contact-intro {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacto .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contacto .contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amarillo);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contacto .contact-item:hover .contact-item-icon {
    background: rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.3);
    transform: scale(1.05);
}

.contacto .contact-item-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.contacto .contact-item-text span {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.contact-map-wrapper {
    margin-top: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 320px;
}

.contacto .contact-item-text a {
    color: var(--amarillo);
    font-weight: 600;
    transition: color 0.2s ease;
}

.contacto .contact-item-text a:hover {
    color: #fff;
}

/* Communication Channels (Right Column) */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.channel-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--amarillo);
    box-shadow: 0 12px 30px rgba(245, 166, 35, 0.08);
    transform: translateY(-4px);
}

.channel-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--amarillo);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.channel-card:hover .channel-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--amarillo);
    border-color: var(--amarillo);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
}

.channel-details h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.channel-details p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
    margin-bottom: 6px;
}

.channel-action-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--amarillo);
    transition: letter-spacing 0.2s ease;
}

.channel-card:hover .channel-action-label {
    letter-spacing: 1px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
    background: #111;
    color: #ccc;
    padding: 48px 0 24px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    opacity: .7;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--amarillo);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    opacity: .5;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background .2s;
}

.social-link:hover {
    background: var(--rojo);
}

/* ── WHATSAPP FLOTANTE ───────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
    transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
}

.whatsapp-icon {
    font-size: 18px;
}

/* WhatsApp Float Tooltip styles */
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #0f172a;
}

.whatsapp-tooltip.show-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
    .mod-grid {
        grid-template-columns: 1fr;
    }

    .sust-inner {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding: 80px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        align-items: flex-start;
        z-index: 1000;
    }

    nav.open {
        right: 0;
    }

    nav a {
        font-size: 18px;
        width: 100%;
    }

    .nav-cta {
        text-align: center;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-badges {
        gap: 20px;
    }

    .hero-badge strong {
        font-size: 26px;
    }

    .sust-big-num {
        font-size: 60px;
    }

    /* Show and style carousel navigation buttons on mobile */
    .carousel-nav-btn {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 22px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    }

    .carousel-nav-btn.prev {
        left: 8px !important;
    }

    .carousel-nav-btn.next {
        right: 8px !important;
    }

    /* Shrink product titles to fit better on mobile screens */
    .cat-name {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    /* Improve padding and wrapping space in the brands logobar */
    .marcas-bar {
        padding: 20px 0 !important;
    }

    .marcas-inner {
        gap: 20px 32px !important;
        padding: 0 20px !important;
    }

    .marca-logo-img {
        height: 28px !important;
        max-width: 90px !important;
    }

    /* Make product cards full width and adjust carousel padding */
    .productos .container {
        padding: 0 16px !important;
    }

    .carousel-track {
        padding: 10px 0 30px !important;
        gap: 0 !important;
    }

    .carousel-track .cat-card {
        flex: 0 0 100% !important;
    }

    /* Hide the floating WhatsApp tooltip on mobile screens */
    .whatsapp-tooltip {
        display: none !important;
    }
}

/* ── PRODUCT CAROUSEL & TABS ────────────────── */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    color: var(--gris-oscuro);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #ececec;
    border-color: #d5d5d5;
}

.tab-btn.active {
    background: var(--rojo);
    border-color: var(--rojo);
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.25);
}

.carousel-container {
    display: none;
    position: relative;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container.active {
    display: flex;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 4px 30px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track .cat-card {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 cards visible on desktop */
    scroll-snap-align: start;
}

@media (max-width: 990px) {
    .carousel-track .cat-card {
        flex: 0 0 calc((100% - 24px) / 2); /* 2 cards visible */
    }
}

@media (max-width: 650px) {
    .carousel-track .cat-card {
        flex: 0 0 100%; /* 1 card visible */
    }
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    color: var(--gris-oscuro);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 100;
    line-height: 1;
}

.carousel-nav-btn:hover {
    background: var(--rojo);
    border-color: var(--rojo);
    color: #fff;
    box-shadow: 0 6px 16px rgba(227, 27, 35, 0.3);
}

.carousel-nav-btn.prev {
    left: -24px;
}

.carousel-nav-btn.next {
    right: -24px;
}

@media (max-width: 1280px) {
    .carousel-container {
        padding: 0 40px;
    }
    .carousel-nav-btn.prev {
        left: 10px;
    }
    .carousel-nav-btn.next {
        right: 10px;
    }
}

/* ── SVG ICONS STYLES ────────────────────────── */
.icon-svg {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    color: currentColor;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}
.hero-badge-pill .icon-svg,
.tab-btn .icon-svg {
    margin-right: 6px;
}
.floating-badge .badge-icon .icon-svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}
.linea-icon .icon-svg,
.ben-icon .icon-svg,
.mod-icon .icon-svg,
.pv-icon .icon-svg,
.sust-icon-box .icon-svg,
.contact-item-icon .icon-svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}
.sust-item .icon-svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke-width: 2;
}
.social-link .icon-svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}
.btn .icon-svg {
    margin-right: 8px;
    stroke-width: 2.5;
}
.whatsapp-float .icon-svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    stroke-width: 2.5;
}

/* ── SCROLL REVEAL ANIMATIONS ────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay modifiers for staggered load effects */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── FAQ SECTION ────────────────────────────── */
.faq-section {
    padding: 96px 0;
    background: var(--gris-claro);
}

.faq-section .section-title {
    color: var(--gris-oscuro);
}

.faq-section .hero-badge-pill {
    background: rgba(30, 30, 30, 0.06);
    border: 1px solid rgba(30, 30, 30, 0.12);
    color: var(--gris-oscuro);
}

.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-wrapper details {
    background: #fff;
    border-radius: 12px;
    padding: 18px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-wrapper details[open] {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(245, 166, 35, 0.2);
}

.faq-wrapper summary {
    font-size: 17px;
    font-weight: 700;
    color: var(--gris-oscuro);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-wrapper summary::-webkit-details-marker {
    display: none;
}

.faq-wrapper summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--amarillo);
    transition: transform 0.3s ease;
}

.faq-wrapper details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-wrapper .a {
    margin-top: 14px;
    font-size: 15.5px;
    color: var(--gris-medio);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 14px;
}

.faq-wrapper .data {
    font-weight: 700;
    color: var(--gris-oscuro);
}

/* ── STICKY VIDEO CONTROLS ─────────────────── */
.video-sound-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.video-sound-btn:hover {
    background: var(--amarillo);
    transform: scale(1.1);
}

.video-sound-btn .icon-svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.video-close-btn {
    display: none; /* Only visible when sticky */
    position: absolute;
    top: -8px;
    left: -8px;
    background: #ff4d4d;
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background 0.2s ease;
}

.video-close-btn:hover {
    background: #e60000;
}

/* Sticky video wrapper styles */
.hero-visual.sticky-video {
    position: fixed;
    bottom: 96px; /* Stacks above WhatsApp float */
    right: 24px;
    width: 150px;
    height: 267px; /* Maintains 9:16 aspect ratio */
    z-index: 990;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideInSticky 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInSticky {
    from {
        transform: translateY(80px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.hero-visual.sticky-video .hero-main-video {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: none !important;
    object-fit: cover;
}

.hero-visual.sticky-video .video-close-btn {
    display: flex;
}

.hero-visual.sticky-video .video-sound-btn {
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
}

.hero-visual.sticky-video .video-sound-btn .icon-svg {
    width: 14px;
    height: 14px;
}

/* Make sticky video look clickable */
.hero-visual.sticky-video {
    cursor: pointer;
}

/* ── MAPA SECTION ───────────────────────────── */
.mapa-section {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block;
}

.mapa-section iframe {
    filter: grayscale(0.1) contrast(1.05);
    transition: filter 0.3s ease;
}

.mapa-section iframe:hover {
    filter: none;
}

/* ── FINANCIACIÓN SECTION ───────────────────── */
.financiacion {
    padding: 96px 0;
    background: #ffffff;
}

.fin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .fin-grid {
        grid-template-columns: 1fr;
    }
}

.fin-card {
    background: var(--gris-claro);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.fin-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.fin-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 30, 30, 0.06);
    color: var(--gris-oscuro);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.fin-card .fin-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--amarillo);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.fin-card .fin-icon-wrapper .icon-svg {
    width: 32px;
    height: 32px;
}

.fin-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--gris-oscuro);
    margin-bottom: 12px;
}

.fin-card p {
    font-size: 14.5px;
    color: var(--gris-medio);
    line-height: 1.6;
    margin-bottom: 24px;
}

.fin-card .fin-highlight {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--amarillo);
    background: rgba(245, 166, 35, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

/* Bypass Scroll Reveal animations inside the Admin Panel Heatmap Iframe */
body.in-iframe .reveal,
body.in-iframe .reveal-left,
body.in-iframe .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
}

body.in-iframe .hero-visual.sticky-video {
    display: none !important; /* Hide floating video in admin preview to avoid visual noise */
}





