/* ============================================================
   PRODINSA – Hoja de estilos principal
   Paleta extraída del logo: verde #1d6e3f, rojo #b52025, celeste #2aa3c8
   ============================================================ */

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

:root {
    --verde:        #006647;
    --verde-dark:   #004d34;
    --verde-light:  #f7fffd;
    --rojo:         #992035;
    --rojo-dark:    #7a1a2b;
    --celeste:      #727f9f;
    --celeste-dark: #4a5570;
    --gris-50:      #f7fffd;
    --gris-100:     #f2f4f7;
    --gris-200:     #e3e7f0;
    --gris-400:     #727f9f;
    --gris-600:     #4a5570;
    --gris-800:     #0f131f;
    --blanco:       #ffffff;
    --sombra-sm:    0 2px 8px rgba(0,0,0,.07);
    --sombra:       0 4px 20px rgba(0,0,0,.10);
    --sombra-lg:    0 8px 40px rgba(0,0,0,.14);
    --radio:        10px;
    --radio-lg:     16px;
    --t:            .2s ease;
    --fuente:       'Glory', system-ui, sans-serif;
    --header-h:     80px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--fuente);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--gris-800);
    background: var(--gris-50);
    text-align: justify;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--verde); text-decoration: none; }
a:hover { color: var(--verde-dark); }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fuente);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gris-800);
    margin-bottom: 1.5rem;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 2.0rem; }
h4 { font-size: calc(17px + 0.9vw); }
h5 { font-size: calc(16px + 0.8vw); }
h6 { font-size: calc(15px + 0.8vw); }
/* ─── Utilidades ────────────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 24px;
}
.section    { padding-block: 72px; }
.section-sm { padding-block: 48px; }
.bg-blanco  { background: var(--blanco); }
.bg-gris    { background: var(--gris-50); }

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--gris-800);
    margin-bottom: 6px;
}
.section-title span { color: var(--verde); }
.section-sub { color: var(--gris-600); margin-bottom: 40px; max-width: 560px; }

/* ── Botones ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--t), color var(--t), border-color var(--t), transform .15s;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--verde); color: var(--blanco); }
.btn-primary:hover { background: var(--verde-dark); color: var(--blanco); }
.btn-outline { border-color: var(--verde); color: var(--verde); }
.btn-outline:hover { background: var(--verde); color: var(--blanco); }
.btn-outline-white { border-color: rgba(255,255,255,.8); color: var(--blanco); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: var(--blanco); }
.btn-white { background: var(--blanco); color: var(--verde-dark); font-weight: 700; }
.btn-white:hover { background: var(--gris-50); color: var(--verde-dark); }
.btn-sm { padding: 7px 18px; font-size: .82rem; }

/* ══════════════════════════════════════════════════════════════
   HEADER – píldora flotante
══════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: transparent;
    padding: 12px 24px;
    transition: background .2s;
    animation: header-fade-down .7s ease .05s both;
}
.site-header.scrolled {
    background: transparent;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 20px;
    position: relative;
    isolation: isolate;
    overflow: visible;
    background: rgba(255,255,255,.42);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 3em;
    padding: 10px 15px 10px 30px;
    box-shadow: 0 3px 2rem 0 rgba(0,0,0,.10);
    max-width: 1180px;
    margin-inline: auto;
    backdrop-filter: blur(50px) saturate(150%);
    -webkit-backdrop-filter: blur(50px) saturate(150%);
}

.header-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.42));
    border-radius: 3em;
    pointer-events: none;
}

.header-inner > * {
    position: relative;
    z-index: 1;
}

@keyframes header-fade-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo-img  { height: 38px; width: auto; }

/* Nav */
.main-nav {
    flex: 1;
    position: relative;
    z-index: 3;
}
.main-nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.main-nav > ul > li {
    position: relative;
}
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .44);
    border: 1px solid rgba(255, 255, 255, .58);
    backdrop-filter: blur(7px) saturate(118%);
    -webkit-backdrop-filter: blur(7px) saturate(118%);
    font-weight: 500;
    font-size: .88rem;
    color: var(--gris-800);
    transition: color var(--t), transform .22s ease, background-color var(--t), border-color var(--t);
}
.main-nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 102, 71, 0), rgba(0, 102, 71, .95), rgba(0, 102, 71, 0));
    transform: scaleX(.2);
    transform-origin: center;
    opacity: 0;
    transition: transform .24s ease, opacity .24s ease;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a,
.has-submenu.is-open > a,
.has-submenu:hover > a,
.has-submenu:focus-within > a {
    color: var(--verde);
    background: rgba(255, 255, 255, .62);
    border-color: rgba(0, 102, 71, .18);
    transform: translateY(-1px);
}
.main-nav > ul > li > a:hover::before,
.main-nav > ul > li.active > a::before,
.has-submenu.is-open > a::before,
.has-submenu:hover > a::before,
.has-submenu:focus-within > a::before {
    transform: scaleX(1);
    opacity: 1;
}

.nav-arrow {
    display: inline-flex;
    width: 14px;
    height: 14px;
    line-height: 1;
    opacity: .8;
    transform: translateY(-1px);
    transition: transform var(--t), opacity var(--t);
}
.nav-arrow svg,
.submenu-arrow-side svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Submenú */
.has-submenu { position: relative; }
.has-submenu::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}
.submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--blanco);
    border-radius: var(--radio-lg);
    box-shadow: var(--sombra-lg);
    border: 1px solid var(--gris-200);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    z-index: 100;
    overflow: hidden;
}
.submenu::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--verde), rgba(0, 102, 71, .18));
}
.submenu-mega {
    min-width: 320px;
    overflow: visible;
    transform: translateY(-8px) scale(.98);
    transform-origin: top left;
}
.submenu-list {
    display: grid;
    gap: 2px;
}
.submenu-list > li {
    position: relative;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.has-submenu:hover .nav-arrow,
.has-submenu:focus-within .nav-arrow,
.has-submenu.is-open > a .nav-arrow {
    transform: rotate(-180deg);
    opacity: 1;
}
.submenu li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    position: relative;
    padding: 11px 20px;
    font-size: .875rem;
    text-align: left;
    color: var(--gris-600);
    transition: background var(--t), color var(--t), padding-left var(--t), transform .22s ease, box-shadow .22s ease;
}
.submenu li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--verde);
    opacity: 0;
    transform: scale(.4);
    transition: transform .2s ease, opacity .2s ease;
}
.submenu li a:hover,
.submenu li a:focus-visible,
.submenu li.is-current > a,
.has-submenu-side.is-open > a,
.has-submenu-side:hover > a,
.has-submenu-side:focus-within > a {
    background: var(--verde-light);
    color: var(--verde);
    padding-left: 24px;
    transform: translateX(2px);
    box-shadow: inset 3px 0 0 var(--verde);
}
.submenu li a:hover::before,
.submenu li a:focus-visible::before,
.submenu li.is-current > a::before,
.has-submenu-side.is-open > a::before,
.has-submenu-side:hover > a::before,
.has-submenu-side:focus-within > a::before {
    opacity: 1;
    transform: scale(1);
}
.submenu-arrow-side {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-left: auto;
    color: currentColor;
    opacity: .75;
    transition: transform .2s ease, opacity .2s ease;
}
.has-submenu-side:hover > a .submenu-arrow-side,
.has-submenu-side:focus-within > a .submenu-arrow-side,
.has-submenu-side.is-open > a .submenu-arrow-side {
    opacity: 1;
    transform: translateX(2px);
}
.has-submenu-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 14px;
    height: 100%;
}
.submenu-side {
    top: 0;
    left: calc(100% + 14px);
    min-width: 320px;
    transform: translateX(-12px) scale(.98);
    transform-origin: top left;
}
.submenu-side::before {
    background: linear-gradient(90deg, rgba(0, 102, 71, .2), var(--verde));
}
.has-submenu-side:hover > .submenu-side,
.has-submenu-side:focus-within > .submenu-side,
.has-submenu-side.is-open > .submenu-side {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

/* Búsqueda de productos */
.header-search {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gris-50);
    border: 1px solid var(--gris-200);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .8rem;
    color: var(--gris-400);
    width: 210px;
    min-width: 210px;
    transition: width .22s ease, border-color var(--t), box-shadow var(--t), background var(--t);
}
.header-search svg { flex-shrink: 0; opacity: .6; }
.header-search:focus-within,
.header-search.is-focused {
    width: 320px;
    border-color: #a8c7bb;
    background: var(--blanco);
    box-shadow: 0 4px 14px rgba(16, 78, 56, .12);
}
.header-search-input {
    border: none;
    background: transparent;
    width: 100%;
    font: inherit;
    color: var(--gris-800);
    outline: none;
}
.header-search-input::placeholder { color: var(--gris-400); }

/* Dropdown de sugerencias */
.search-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--blanco);
    border: 1px solid var(--gris-200);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    z-index: 9999;
    overflow: hidden;
    max-height: 340px;
    overflow-y: auto;
}
.search-dropdown:empty { display: none; }
.search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    text-decoration: none;
    color: var(--gris-800);
    font-size: .82rem;
    transition: background var(--t);
    border-bottom: 1px solid var(--gris-100);
}
.search-dropdown-item:last-child { border-bottom: none; }
.search-dropdown-item:hover,
.search-dropdown-item.is-active {
    background: var(--gris-50);
}
.search-dropdown-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
    background: var(--gris-100);
}
.search-dropdown-item span { flex: 1; font-weight: 500; }
.search-dropdown-item small {
    color: var(--gris-400);
    font-size: .74rem;
    white-space: nowrap;
}
.search-dropdown-footer {
    display: block;
    padding: 8px 14px;
    text-align: center;
    font-size: .78rem;
    color: var(--verde-600, #2d7a52);
    font-weight: 600;
    background: var(--gris-50);
    text-decoration: none;
    transition: background var(--t);
}
.search-dropdown-footer:hover { background: var(--gris-100); }
.search-dropdown-empty {
    padding: 14px;
    text-align: center;
    color: var(--gris-400);
    font-size: .82rem;
}
/* El form necesita position relative para el dropdown */
.header-search { position: relative; }

/* Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gris-800);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t);
}

/* ══════════════════════════════════════════════════════════════
   HERO – home compuesto (fondo + isotipo + planta + marca)
══════════════════════════════════════════════════════════════ */
.hero-home {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    margin-top: -84px;
    background: #eef4f1;
}
.hero-home .hero-layer { position: absolute; }
.hero-home .hero-bg {
    inset: 0;
    z-index: 1;
}
.hero-home .hero-bg::after {
    content: '';
    position: absolute;
    inset: -4%;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(247,255,253,.98) 0%, rgba(247,255,253,.94) 52%, rgba(247,255,253,.42) 72%, rgba(247,255,253,.08) 100%),
        radial-gradient(circle at 24% 26%, rgba(0, 102, 71, .16), rgba(0, 102, 71, 0) 36%),
        radial-gradient(circle at 82% 74%, rgba(153, 32, 53, .12), rgba(153, 32, 53, 0) 42%);
    animation: hero-gray-overlay 10.5s ease-in-out 1.2s infinite alternate;
}
.hero-home .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.03) saturate(.96);
    animation: hero-bg-in 1.25s ease-out both,
               hero-bg-drift 9.5s ease-in-out 1.15s infinite alternate;
}
.hero-home .hero-mundo {
    z-index: 2;
    right: 18%;
    left: auto;
    top: 190px;
    width: min(22vw, 300px);
    opacity: .42;
    animation: hero-mundo-in .95s cubic-bezier(.2,.65,.2,1) .22s both;
}
.hero-home .hero-mundo img {
    width: 100%;
    height: auto;
    opacity: .42;
}
.hero-home .hero-planta {
    z-index: 3;
    right: -90px;
    left: auto;
    bottom: -110px;
    width: min(42vw, 640px);
    opacity: .82;
    animation: hero-planta-in 1.05s cubic-bezier(.2,.65,.2,1) .32s both;
}
.hero-home .hero-planta img {
    width: 100%;
    height: auto;
    opacity: .82;
    animation: hero-planta-float 4.6s ease-in-out 1.2s infinite alternate;
}
.hero-home .hero-brand {
    z-index: 4;
    right: 6%;
    top: 136px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: hero-brand-in .95s cubic-bezier(.2,.65,.2,1) .5s both,
               hero-brand-float 6.6s ease-in-out 1.55s infinite alternate;
}
.hero-home .hero-brand h1 {
    margin: 0;
    font-size: clamp(2.1rem, 3.2vw, 3.4rem);
    line-height: .98;
    color: #2f3136;
    font-weight: 700;
}
.hero-home .hero-sep {
    width: 4px;
    height: 82px;
    background: var(--rojo);
    display: block;
}
.hero-home .hero-brand img {
    width: min(20vw, 280px);
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    padding-top: 188px;
    max-width: 1180px;
    pointer-events: none;
}

.hero-content h1 {
    max-width: 640px;
    margin: 0 0 18px;
    color: var(--verde-dark);
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    font-weight: 700;
    line-height: .96;
    text-align: left;
}

.hero-actions,
.hero-stats {
    pointer-events: auto;
}

.hero-content p {
    max-width: 560px;
    margin: 0 0 28px;
    color: var(--gris-600);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.65;
    text-align: left;
}

.hero-eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(0, 102, 71, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--verde-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 150px));
    gap: 10px;
    max-width: 500px;
}

.hero-stats div {
    min-height: 92px;
    padding: 16px 14px;
    border: 1px solid rgba(0, 102, 71, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 30px rgba(15, 19, 31, .06);
}

.hero-stats strong {
    display: block;
    color: var(--verde);
    font-size: 1.85rem;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: var(--gris-600);
    font-size: .82rem;
    line-height: 1.22;
}

.hero-scroll-hint {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 24px;
    width: 1px;
    height: 58px;
    background: linear-gradient(180deg, rgba(0,102,71,0), rgba(0,102,71,.75));
}

.hero-home .hero-mundo img {
    animation: hero-mundo-float 4.4s ease-in-out 1.05s infinite alternate;
}

@keyframes hero-bg-in {
    from {
        opacity: 0;
        transform: scale(1.04);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes hero-mundo-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.93);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hero-planta-in {
    from {
        opacity: 0;
        transform: translateX(-36px) translateY(22px) scale(.92);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

@keyframes hero-brand-in {
    from {
        opacity: 0;
        transform: translateX(34px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-bg-drift {
    from {
        transform: scale(1) translateX(0);
    }
    to {
        transform: scale(1.035) translateX(14px) translateY(-4px);
    }
}

@keyframes hero-bg-gray-pulse {
    from {
        filter: grayscale(.06) contrast(1.01) saturate(.98);
    }
    to {
        filter: grayscale(.34) contrast(1.07) saturate(.78);
    }
}

@keyframes hero-gray-overlay {
    from {
        opacity: .38;
        transform: translateX(0) translateY(0) scale(1);
    }
    to {
        opacity: .82;
        transform: translateX(20px) translateY(-12px) scale(1.06);
    }
}

@keyframes hero-mundo-float {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-16px) scale(1.04) rotate(.7deg);
    }
}

@keyframes hero-planta-float {
    from {
        transform: translateY(0) rotate(0deg);
    }
    to {
        transform: translateY(-18px) rotate(-1.6deg) scale(1.02);
    }
}

@keyframes hero-brand-float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

/* ══════════════════════════════════════════════════════════════
    CATEGORÍAS – cards con fondo de imagen
══════════════════════════════════════════════════════════════ */
.sec-categorias {
    background: var(--blanco);
    padding-block: 76px 68px;
}

.home-section-head {
    max-width: 680px;
    margin-bottom: 32px;
    text-align: left;
}

.home-section-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--rojo);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-section-head h2 {
    margin-bottom: 10px;
    color: var(--verde-dark);
    font-size: clamp(1.75rem, 3.3vw, 3rem);
    font-weight: 700;
    line-height: 1.03;
}

.home-section-head p {
    max-width: 560px;
    margin: 0;
    color: var(--gris-600);
    font-size: 1rem;
    line-height: 1.65;
    text-align: left;
}

.home-section-head--inline {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.categoria-card {
    position: relative;
    isolation: isolate;
    border: 0;
    border-radius: 8px;
    padding: 20px;
    min-height: 238px;
    opacity: 0;
    text-align: left;
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-decoration: none;
    background-color: transparent;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: none;
    animation: categoria-card-in .72s cubic-bezier(.2,.65,.2,1) both;
}
.categoria-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.18) 36%, rgba(255,255,255,.08) 62%, rgba(255,255,255,.78) 100%);
    pointer-events: none;
}
.categorias-grid > .categoria-card:nth-child(1) { animation-delay: .08s; }
.categorias-grid > .categoria-card:nth-child(2) { animation-delay: .18s; }
.categorias-grid > .categoria-card:nth-child(3) { animation-delay: .28s; }
.categorias-grid > .categoria-card:nth-child(4) { animation-delay: .38s; }
.categorias-grid > .categoria-card:nth-child(5) { animation-delay: .48s; }
.categorias-grid > .categoria-card:nth-child(6) { animation-delay: .58s; }
.categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}
.categoria-card h3 {
    margin: auto 0 0;
    width: min(100%, 260px);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    font-weight: 700;
    color: var(--verde-dark);
    line-height: 1.12;
    max-width: 100%;
}

.categoria-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--rojo);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

@keyframes categoria-card-in {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTOS – nombre arriba, imagen abajo, fondo blanco
══════════════════════════════════════════════════════════════ */
.sec-productos {
    background: linear-gradient(180deg, var(--gris-50), #fff);
    padding-block: 74px;
}

.productos-filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.filtro-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--gris-200);
    background: var(--blanco);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: background var(--t), border-color var(--t), color var(--t), box-shadow var(--t), transform var(--t);
    color: var(--gris-600);
    line-height: 1;
}
.filtro-btn:hover {
    border-color: var(--verde);
    color: var(--verde);
    background: var(--verde-light);
    box-shadow: 0 3px 10px rgba(0,102,71,.13);
    transform: translateY(-1px);
}
.filtro-btn.active {
    background: var(--verde);
    border-color: var(--verde);
    color: var(--blanco);
    box-shadow: 0 4px 14px rgba(0,102,71,.28);
    transform: translateY(-1px);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.producto-card {
    position: relative;
    isolation: isolate;
    min-height: 292px;
    background:
        linear-gradient(180deg, #fff 0%, #f8fffc 100%);
    border: 1px solid rgba(0, 102, 71, .14);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow var(--t), transform var(--t), border-color var(--t), background var(--t);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 19, 31, .045);
}
.producto-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(0, 102, 71, .1), rgba(0, 102, 71, 0) 34%),
        radial-gradient(circle at 82% 12%, rgba(196, 30, 58, .09), transparent 30%);
    opacity: 0;
    transition: opacity var(--t);
}
.producto-card::after {
    content: "Ver producto";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    color: var(--verde);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--t), transform var(--t);
}
.producto-card:hover {
    border-color: rgba(0, 102, 71, .32);
    background: #fff;
    box-shadow: 0 18px 40px rgba(26, 35, 56, .12);
    transform: translateY(-4px);
}
.producto-card:hover::before,
.producto-card:hover::after {
    opacity: 1;
}
.producto-card:hover::after {
    transform: translateY(0);
}
/* Nombre arriba */
.producto-card-nombre {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    padding: 18px 18px 8px;
    font-size: .72rem;
    font-weight: 800;
    color: var(--verde-dark);
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 1.25;
    min-height: 58px;
    text-align: left;
}
/* Imagen abajo, fondo blanco */
.producto-card-img {
    background:
        radial-gradient(circle at 50% 52%, rgba(0, 102, 71, .08), rgba(0, 102, 71, 0) 54%),
        #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px 44px;
    padding: 18px;
    flex: 1;
    min-height: 184px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 71, .08);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.producto-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform .35s ease;
    animation: none;
    transform-origin: center center;
}
.producto-card:hover .producto-card-img img {
    transform: scale(1.055);
}

@keyframes producto-card-img-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.productos-grid.is-loading {
    opacity: .5;
    pointer-events: none;
}

.productos-empty {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dfe4ec;
    background: #f4f7fb;
    color: var(--gris-600);
    font-size: .92rem;
}

/* ══════════════════════════════════════════════════════════════
   NOSOTROS / EMPRESA strip (home)
══════════════════════════════════════════════════════════════ */
.sec-nosotros {
    background: var(--blanco);
    padding-block: 82px;
}

.productos-listado {
    background:
        linear-gradient(180deg, #f7fffd 0%, #ffffff 100%);
    padding-block: 58px 80px;
}

.productos-listado-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.productos-listado-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--rojo);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.productos-listado-head h2 {
    margin: 0;
    color: var(--verde-dark);
    font-size: clamp(1.45rem, 2.7vw, 2.4rem);
    line-height: 1.05;
}

.productos-listado-head p {
    max-width: 460px;
    margin: 0;
    color: var(--gris-600);
    line-height: 1.55;
    text-align: left;
}
.nosotros-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}
.nosotros-header h2 {
    max-width: 640px;
    color: var(--verde-dark);
    font-size: clamp(1.75rem, 3.2vw, 3rem);
    line-height: 1.03;
}
.nosotros-foto {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 36px;
    line-height: 0;
}
.nosotros-foto img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.nosotros-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 320px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 8px;
    background: rgba(0, 77, 52, .78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    line-height: 1.35;
}
.nosotros-badge strong,
.nosotros-badge span {
    display: block;
}
.nosotros-badge strong { font-size: 1rem; }
.nosotros-badge span {
    margin-top: 4px;
    opacity: .86;
    font-size: .9rem;
}
.nosotros-texto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: var(--gris-600);
    font-size: .94rem;
    line-height: 1.75;
    text-align: left;
}

.nosotros-texto p { text-align: left; }

.nosotros-metricas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.nosotros-metricas div {
    padding: 20px 18px;
    border: 1px solid rgba(0, 102, 71, .11);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 19, 31, .05);
}

.nosotros-metricas strong {
    display: block;
    color: var(--verde);
    font-size: 1.65rem;
    line-height: 1;
}

.nosotros-metricas span {
    display: block;
    margin-top: 8px;
    color: var(--gris-600);
    font-size: .86rem;
    line-height: 1.25;
}

/* ══════════════════════════════════════════════════════════════
   SERVICIO A TERCEROS
══════════════════════════════════════════════════════════════ */
.sec-servicio-terceros {
    padding-block: 82px;
    background:
        linear-gradient(rgba(0, 77, 52, .88), rgba(0, 77, 52, .88)),
        url('../img/planta.jpg') center/cover no-repeat;
    color: #fff;
}

.servicio-terceros-inner {
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
    gap: 54px;
    align-items: start;
}

.servicio-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: rgba(255,255,255,.78);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.servicio-terceros-titulo h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4.4vw, 4.25rem);
    font-weight: 700;
    line-height: .98;
}

.servicio-terceros-cuerpo {
    max-width: 690px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.servicio-terceros-cuerpo p {
    margin-bottom: 16px;
    color: rgba(255,255,255,.9);
    line-height: 1.72;
    text-align: left;
}

.servicio-terceros-cuerpo .btn {
    margin-top: 10px;
    background: #fff;
    color: var(--verde-dark);
}

.servicio-terceros-cuerpo .btn:hover {
    background: var(--gris-50);
    color: var(--verde-dark);
}

/* ══════════════════════════════════════════════════════════════
   INSTAGRAM
══════════════════════════════════════════════════════════════ */
.sec-instagram { background: var(--gris-50); padding-block: 70px; text-align: center; }
.sec-instagram p {
    max-width: 560px;
    margin: 8px auto 28px;
    color: var(--gris-600);
    text-align: center;
}

.ig-fotos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 960px;
    margin: 24px auto 32px;
}
.ig-foto-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.ig-foto-item.ig-visible { opacity: 1; transform: translateY(0); }

.ig-foto-item:nth-child(1).ig-visible  { transition-delay: .05s; }
.ig-foto-item:nth-child(2).ig-visible  { transition-delay: .10s; }
.ig-foto-item:nth-child(3).ig-visible  { transition-delay: .15s; }
.ig-foto-item:nth-child(4).ig-visible  { transition-delay: .20s; }
.ig-foto-item:nth-child(5).ig-visible  { transition-delay: .25s; }
.ig-foto-item:nth-child(6).ig-visible  { transition-delay: .30s; }
.ig-foto-item:nth-child(7).ig-visible  { transition-delay: .35s; }
.ig-foto-item:nth-child(8).ig-visible  { transition-delay: .40s; }
.ig-foto-item:nth-child(9).ig-visible  { transition-delay: .45s; }
.ig-foto-item:nth-child(10).ig-visible { transition-delay: .50s; }
.ig-foto-item:nth-child(11).ig-visible { transition-delay: .55s; }
.ig-foto-item:nth-child(12).ig-visible { transition-delay: .60s; }

/* fallback sin JS */
.no-js .ig-foto-item { opacity: 1; transform: none; }
.ig-foto-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.ig-foto-item:hover img { transform: scale(1.05); }

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

.ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    color: #fff;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    transition: opacity .2s;
}
.ig-btn:hover { opacity: .88; color: #fff; }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (categoría, empresa, contacto)
══════════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    z-index: 1;
    margin-top: -84px;
    background:
        linear-gradient(90deg, rgba(247,255,253,.96) 0%, rgba(247,255,253,.86) 52%, rgba(247,255,253,.45) 100%),
        url('../img/breadcrumb/detalle-planta-arroz-al-atardecer-valencia-plantacion-desenfocada-granos-arroz-semillas-plantas_181624-25838.webp') center/cover no-repeat;
    border-bottom: 0;
    padding-block: 142px 58px;
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -140px;
    width: min(42vw, 520px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 71, .12), rgba(0, 102, 71, 0) 66%);
    pointer-events: none;
}
.page-hero h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: .98;
    color: var(--verde-dark);
}
.page-hero p  {
    color: var(--gris-600);
    margin-top: 0;
    max-width: 680px;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.62;
    text-align: left;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .78rem;
    color: var(--gris-600);
    margin-bottom: 14px;
}
.breadcrumb a { color: var(--verde); font-weight: 700; }
.breadcrumb span::before { content: '/'; margin-right: 6px; }

/* ══════════════════════════════════════════════════════════════
   PRODUCTO detalle
══════════════════════════════════════════════════════════════ */
.producto-detalle {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: 38px;
    align-items: start;
    padding-block: 64px 74px;
    background: transparent;
}
.producto-wrap {
    background: transparent;
}
.producto-top-hero {
    position: relative;
    z-index: 1;
    margin-top: -84px;
    padding: 146px 0 74px;
    overflow: hidden;
    background:
                radial-gradient(circle at 86% 18%, rgba(153, 32, 53, .12), transparent 28%),
                linear-gradient(90deg, rgba(247,255,253,.98), rgba(247,255,253,.74)),
                url('../img/breadcrumb/detalle-planta-arroz-al-atardecer-valencia-plantacion-desenfocada-granos-arroz-semillas-plantas_181624-25838.webp') center/cover no-repeat;
    border-bottom: 0;
}
.producto-top-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: min(40vw, 500px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 71, .14), rgba(0, 102, 71, 0) 68%);
    pointer-events: none;
}
.producto-top-hero-inner {
    position: relative;
    z-index: 1;
    text-align: left;
}
.producto-hero-cat {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid rgba(0, 102, 71, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    color: var(--verde-dark);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.producto-top-hero h1 {
    max-width: 840px;
    margin-bottom: 14px;
    color: var(--verde-dark);
    font-size: clamp(2.25rem, 5vw, 4.55rem);
    line-height: .98;
}
.producto-top-hero p {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--gris-600);
    font-size: clamp(1rem, 1.45vw, 1.2rem);
    line-height: 1.62;
    text-align: left;
}
.breadcrumb-on-hero {
    justify-content: flex-start;
    color: var(--verde);
}
.breadcrumb-on-hero a { color: var(--verde); }
.producto-detalle-media {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 14px;
}
.producto-detalle-img {
    background:
        radial-gradient(circle at 50% 42%, rgba(0, 102, 71, .08), rgba(0, 102, 71, 0) 54%),
        #fff;
    border: 1px solid rgba(0, 102, 71, .1);
    border-radius: 8px;
    padding: clamp(22px, 3vw, 38px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(15, 19, 31, .06);
}
.producto-detalle-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-inline: auto;
    animation: none;
    transform-origin: center center;
}

@keyframes producto-img-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.035);
    }
}
.producto-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(0, 102, 71, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    color: var(--verde-dark);
    font-size: .86rem;
    font-weight: 700;
}
.producto-back-link:hover {
    background: var(--verde);
    border-color: var(--verde);
    color: #fff;
}
.producto-detalle-info {
    display: grid;
    gap: 24px;
    padding: clamp(26px, 3vw, 38px);
    border: 1px solid rgba(0, 102, 71, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 42px rgba(15, 19, 31, .045);
}
.producto-info-head span,
.relacionados-head span {
    display: block;
    margin-bottom: 8px;
    color: var(--verde);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}
.producto-info-head h2 {
    margin: 0;
    color: var(--verde-dark);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.08;
}
.producto-detalle-info h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.det-cat {
    display: inline-flex;
    width: fit-content;
    background: rgba(0, 102, 71, .08);
    color: var(--verde-dark);
    font-size: .75rem;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.det-desc {
    color: var(--gris-600);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
}
.det-specs {
    display: grid;
    gap: 12px;
}
.det-spec {
    position: relative;
    padding: 18px 20px 18px 22px;
    border: 1px solid rgba(0, 102, 71, .1);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(247, 255, 253, .88), rgba(255, 255, 255, .92));
    overflow: hidden;
}
.det-spec::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--verde);
}
.det-spec span {
    display: block;
    margin-bottom: 6px;
    color: var(--verde-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.det-spec p {
    margin: 0;
    color: var(--gris-600);
    font-size: .96rem;
    line-height: 1.58;
    text-align: left;
}
.det-docs {
    padding-top: 6px;
}
.det-docs h3,
.producto-consulta h3 {
    margin: 0 0 6px;
    color: var(--gris-800);
    font-size: 1.08rem;
    line-height: 1.2;
}
.det-docs p,
.producto-consulta p {
    margin: 0;
    color: var(--gris-600);
    font-size: .92rem;
    line-height: 1.55;
    text-align: left;
}
.det-ctas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.btn-download {
    background: var(--rojo);
    color: #fff;
    border-radius: 8px;
    padding: 13px 18px;
    font-size: .88rem;
    font-weight: 700;
    white-space: normal;
}
.btn-download svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
}
.btn-download:hover { background: var(--rojo-dark); color: #fff; }
.btn-download-alt {
    background: var(--verde);
}
.btn-download-alt:hover {
    background: var(--verde-dark);
}
.producto-consulta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 4px;
    padding: 22px;
    border: 1px solid rgba(0, 102, 71, .13);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(0, 102, 71, .08), rgba(255, 255, 255, .92));
}
.producto-consulta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.relacionados { padding-block: 58px 76px; background: var(--gris-50); }
.relacionados h3 {
    color: var(--verde-dark);
    font-size: clamp(1.45rem, 2.7vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0;
}
.relacionados-head {
    margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════════
   EMPRESA
══════════════════════════════════════════════════════════════ */
.empresa-hero {
    margin-top: -84px;
    padding: 142px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 18%, rgba(0, 102, 71, .16), transparent 34%),
        linear-gradient(135deg, #f4faf7 0%, #ffffff 46%, #eef5f2 100%);
}

.home-products-action {
    text-align: center;
    margin-top: 38px;
}

.empresa-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
    gap: 42px;
    align-items: center;
}

.empresa-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.empresa-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(0, 102, 71, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--verde-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.empresa-hero-copy h1 {
    margin-bottom: 18px;
    color: var(--verde-dark);
    font-size: clamp(2.15rem, 4.4vw, 4.65rem);
    font-weight: 700;
    line-height: .98;
    text-align: left;
}

.empresa-hero-copy p {
    max-width: 500px;
    margin-bottom: 26px;
    color: var(--gris-600);
    font-size: clamp(1rem, 1.45vw, 1.16rem);
    line-height: 1.65;
    text-align: left;
}

.empresa-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.empresa-hero-stats div {
    min-height: 94px;
    padding: 16px 14px;
    border: 1px solid rgba(0, 102, 71, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 30px rgba(15, 19, 31, .06);
}

.empresa-hero-stats strong {
    display: block;
    color: var(--verde);
    font-size: clamp(1.55rem, 2.2vw, 2.05rem);
    line-height: 1;
}

.empresa-hero-stats span {
    display: block;
    margin-top: 8px;
    color: var(--gris-600);
    font-size: .82rem;
    line-height: 1.25;
}
.empresa-hero-media,
.empresa-media,
.empresa-iso-media {
    margin: 0;
    position: relative;
    isolation: isolate;
    will-change: transform, opacity;
}

.empresa-hero-media::after,
.empresa-media::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -20px;
    height: 30%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 102, 71, .22), rgba(153, 32, 53, .12));
    filter: blur(28px);
    opacity: .82;
    z-index: 0;
    pointer-events: none;
}

.empresa-hero-media img,
.empresa-media img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(12, 73, 50, .16);
    object-fit: cover;
    aspect-ratio: 16 / 7.2;
    position: relative;
    z-index: 1;
}

.empresa-hero-media img {
    min-height: 430px;
    aspect-ratio: 1.24 / 1;
}

.empresa-contenido {
    padding: 72px 0 64px;
    background: var(--blanco);
}

.empresa-contenido--final {
    padding-top: 0;
    padding-bottom: 80px;
}

.empresa-stack {
    display: grid;
    gap: 38px;
}

.empresa-stack--compact {
    gap: 0;
}

.empresa-copy {
    max-width: 980px;
}

.empresa-copy h1,
.empresa-copy h2,
.empresa-iso h2,
.empresa-frase h2 {
    color: var(--verde-dark);
    line-height: 1.15;
}

.empresa-copy h1 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    margin-bottom: 18px;
    max-width: 760px;
}

.empresa-copy h2,
.empresa-iso h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.18rem);
    margin-bottom: 16px;
}

.empresa-copy p,
.empresa-iso p {
    color: var(--gris-600);
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.78;
    text-align: left;
}

.empresa-copy--intro {
    display: grid;
    grid-template-columns: minmax(250px, .55fr) minmax(0, 1fr);
    column-gap: 48px;
    align-items: start;
    max-width: none;
}

.empresa-copy--intro h1 {
    position: sticky;
    top: 112px;
    text-align: left;
    grid-column: 1;
    grid-row: 1 / -1;
}

.empresa-copy--intro p {
    grid-column: 2;
}

.empresa-copy-body {
    grid-column: 2;
    display: grid;
    gap: 0;
}

.empresa-copy--intro .empresa-copy-body p {
    margin-bottom: 0;
}

.empresa-copy--detalle {
    max-width: 900px;
    margin-inline: auto;
    padding: 42px 54px;
    border-left: 4px solid var(--verde);
    background: linear-gradient(90deg, rgba(0, 102, 71, .065), rgba(255, 255, 255, 0));
}

.empresa-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.empresa-pillar {
    min-height: 205px;
    padding: 24px;
    border: 1px solid rgba(0, 102, 71, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(15, 19, 31, .06);
}

.empresa-pillar span {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--rojo);
    font-size: .82rem;
    font-weight: 700;
}

.empresa-pillar h2 {
    margin-bottom: 10px;
    color: var(--verde-dark);
    font-size: 1.18rem;
}

.empresa-pillar p {
    margin: 0;
    color: var(--gris-600);
    font-size: .94rem;
    line-height: 1.6;
}

.empresa-aporte {
    margin-top: 28px;
    color: var(--verde-dark);
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    font-weight: 700;
    text-align: center;
}

.empresa-iso {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    gap: 42px;
    align-items: start;
    padding: 44px;
    border: 1px solid rgba(0, 102, 71, .11);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(247, 255, 253, .96), rgba(255, 255, 255, 1)),
        var(--blanco);
    box-shadow: 0 18px 46px rgba(15, 19, 31, .06);
}

.empresa-iso-side {
    display: grid;
    gap: 18px;
}

.empresa-iso-media img {
    width: min(360px, 100%);
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 18px;
    border: 1px solid rgba(0, 102, 71, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(15, 19, 31, .06);
}

.empresa-hero-media.is-visible,
.empresa-media.is-visible,
.empresa-iso-media.is-visible {
    animation: empresa-media-reveal .85s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes empresa-media-reveal {
    from {
        opacity: 0;
        transform: translateY(34px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.empresa-frase {
    background:
        linear-gradient(rgba(0, 77, 52, .86), rgba(0, 77, 52, .86)),
        url('../img/planta-aerea.jpg') center/cover no-repeat;
    color: var(--verde-dark);
    text-align: center;
    padding: 72px 0;
}

.empresa-frase h2 {
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    font-weight: 700;
    max-width: 880px;
    margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
    .empresa-hero-media.is-visible,
    .empresa-media.is-visible,
    .empresa-iso-media.is-visible {
        animation: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════════════════════ */
.contacto-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; padding-block: 60px; background: var(--blanco); }
.contacto-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--verde-dark); }
.contacto-info p  { color: var(--gris-600); margin-bottom: 10px; }

.form-grupo { margin-bottom: 18px; }
.form-grupo label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 6px; color: var(--gris-800); }
.form-grupo input,
.form-grupo textarea,
.form-grupo select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gris-200);
    border-radius: var(--radio);
    font-family: var(--fuente);
    font-size: .9rem;
    color: var(--gris-800);
    background: var(--blanco);
    transition: border-color var(--t), box-shadow var(--t);
}
.form-grupo input:focus,
.form-grupo textarea:focus { outline: none; border-color: var(--verde); box-shadow: 0 0 0 3px rgba(29,110,63,.1); }
.form-grupo textarea { resize: vertical; min-height: 130px; }
.form-requerido { color: var(--rojo); margin-left: 2px; }

.alerta { padding: 14px 18px; border-radius: var(--radio); margin-bottom: 18px; font-size: .9rem; }
.alerta-ok    { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alerta-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #04764f 0%, #03724c 48%, #026546 100%);
    color: #fff;
    padding-top: 56px;
}
.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    inset: -22% -10%;
    pointer-events: none;
    z-index: 0;
    opacity: .3;
    will-change: transform, opacity;
}
.site-footer::before {
    background:
        radial-gradient(circle at 15% 28%, rgba(129, 201, 167, .24) 0%, rgba(129, 201, 167, 0) 42%),
        radial-gradient(circle at 74% 18%, rgba(198, 245, 222, .16) 0%, rgba(198, 245, 222, 0) 36%),
        radial-gradient(circle at 56% 84%, rgba(96, 178, 144, .2) 0%, rgba(96, 178, 144, 0) 40%);
    animation: footer-bg-float 18s ease-in-out infinite alternate;
}
.site-footer::after {
    background:
        linear-gradient(115deg, rgba(214, 248, 234, .06) 0%, rgba(214, 248, 234, 0) 60%),
        radial-gradient(circle at 82% 72%, rgba(23, 121, 86, .35) 0%, rgba(23, 121, 86, 0) 45%);
    opacity: .2;
    animation: footer-bg-glow 14s ease-in-out infinite;
}
.site-footer .container,
.site-footer .footer-bottom {
    position: relative;
    z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1.2fr; gap: 44px; padding-bottom: 44px; align-items: start; }
.footer-logo { height: 46px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-logo-link:hover .footer-logo { opacity: .88; }
.footer-desc { font-size: 1rem; line-height: 1.75; font-weight: 600; max-width: 600px; }
.footer-col-iso { display: flex; justify-content: center; }
.footer-iso { width: min(300px, 100%); height: auto; }
.footer-col-contacto address { display: grid; gap: 10px; }
.footer-contact-item { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 0; font-size: 1rem; line-height: 1.65; font-weight: 600; }
.footer-icon { width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.footer-icon svg { width: 18px; height: 18px; fill: #fff; }
.footer-col address a { color: #fff; text-decoration: none; }
.footer-col address a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); padding-block: 18px; }
.footer-bottom p { font-size: .8rem; text-align: center; color: rgba(255,255,255,.85); }
.footer-dots {
    position: relative;
    z-index: 1;
    height: 14px;
    background-color: rgba(0,0,0,.22);
    background-image: radial-gradient(circle, rgba(255,255,255,.28) 1px, transparent 1px);
    background-size: 14px 14px;
    background-position: 7px 50%;
}

@keyframes footer-bg-float {
    0% {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
        opacity: .24;
    }
    50% {
        transform: translate3d(1.8%, 1.2%, 0) scale(1.03);
        opacity: .36;
    }
    100% {
        transform: translate3d(3.5%, -1.6%, 0) scale(1.05);
        opacity: .28;
    }
}

@keyframes footer-bg-glow {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: .16;
    }
    50% {
        transform: translate3d(-1.2%, 1%, 0);
        opacity: .26;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer::before,
    .site-footer::after {
        animation: none;
    }

    .producto-card-img img,
    .producto-detalle-img img {
        animation: none;
    }
}
.footer-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255,255,255,.92);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: opacity var(--t), transform var(--t);
}
.footer-signature:hover {
    color: #fff;
    opacity: 1;
    transform: translateY(-1px);
}
.footer-signature-logo {
    width: auto;
    height: 28px;
    object-fit: contain;
}

/* ══════════════════════════════════════════════════════════════
   WHATSAPP flotante + inline
══════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.25);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(0,0,0,.3); }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: #fff;
    border: none;
    padding: .75rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .92rem;
    text-decoration: none;
    transition: background .2s, transform .15s;
    gap: 7px;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .categorias-grid { grid-template-columns: repeat(3, 1fr); }
    .productos-grid  { grid-template-columns: repeat(4, 1fr); }
    .empresa-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .empresa-hero-copy {
        max-width: 760px;
    }
    .empresa-hero-media img {
        min-height: 0;
        aspect-ratio: 16 / 7.5;
    }
}
@media (max-width: 900px) {
    .nosotros-texto   { grid-template-columns: 1fr; }
    .nosotros-metricas { grid-template-columns: repeat(2, 1fr); }
    .home-section-head--inline {
        display: block;
    }
    .servicio-terceros-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .empresa-iso      { grid-template-columns: 1fr; gap: 24px; }
    .empresa-copy--intro { grid-template-columns: 1fr; }
    .empresa-copy--intro h1 { position: static; }
    .empresa-copy-body { grid-column: 1; }
    .empresa-pillars  { grid-template-columns: 1fr; }
    .footer-grid      { grid-template-columns: 1fr; gap: 30px; }
    .footer-col-iso   { justify-content: flex-start; }
    .footer-iso       { width: min(280px, 100%); }
    .producto-detalle { grid-template-columns: 1fr; }
    .producto-detalle-media {
        position: static;
    }
    .productos-listado-head {
        display: block;
    }
    .productos-listado-head p,
    .productos-listado-head .btn {
        margin-top: 14px;
    }
    .contacto-grid    { grid-template-columns: 1fr; }
    .productos-grid   { grid-template-columns: repeat(3, 1fr); }
    .hero-home {
        min-height: 720px;
    }
    .hero-content {
        padding-top: 150px;
    }
    .hero-home .hero-mundo {
        right: 12%;
        left: auto;
        top: 300px;
        width: min(30vw, 250px);
    }
    .hero-home .hero-mundo img {
        opacity: .34;
    }
    .hero-home .hero-brand {
        right: 4%;
        top: 122px;
        gap: 12px;
    }
    .hero-home .hero-brand img {
        width: min(28vw, 220px);
    }
    .hero-home .hero-sep {
        height: 92px;
    }
}
@media (max-width: 768px) {
    .empresa-hero { padding: 118px 0 46px; }
    .empresa-hero-copy h1 { font-size: clamp(2rem, 10vw, 3rem); }
    .empresa-hero-stats { grid-template-columns: 1fr; }
    .empresa-hero-stats div { min-height: 0; }
    .empresa-contenido { padding-top: 48px; }
    .empresa-hero-media::after,
    .empresa-media::after {
        left: 4%;
        right: 4%;
        bottom: -14px;
        height: 28%;
        filter: blur(20px);
    }
    .empresa-hero-media img,
    .empresa-media img {
        aspect-ratio: 4 / 3;
        border-radius: 8px;
    }
    .empresa-copy h1 { font-size: clamp(1.6rem, 7vw, 2rem); }
    .empresa-copy p,
    .empresa-iso p { font-size: .93rem; }
    .empresa-copy--detalle,
    .empresa-iso {
        padding: 26px 22px;
    }
    .empresa-aporte { text-align: left; }
    .empresa-frase { padding: 52px 0; }
    .home-section-head h2 { font-size: clamp(1.7rem, 8vw, 2.35rem); }
    .hero-content {
        width: min(100% - 36px, 1180px);
        padding-top: 128px;
    }
    .hero-content h1 {
        max-width: 560px;
        font-size: clamp(2rem, 11vw, 3.25rem);
    }
    .hero-content p {
        max-width: 520px;
        font-size: .98rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    .hero-stats div {
        min-height: 0;
    }
    .hero-home .hero-planta {
        right: -120px;
    }
    .hero-home .hero-planta img {
        opacity: .54;
    }
    .categorias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categoria-card {
        min-height: 220px;
        padding: 20px;
        background-size: cover;
        background-position: center bottom;
    }
    .servicio-terceros-cuerpo {
        padding: 24px;
    }
    .nosotros-badge {
        position: static;
        max-width: none;
        border-radius: 0;
        background: var(--verde-dark);
    }
    .menu-toggle   { display: flex; }
    .header-search { display: none; }
    .logo-img      { height: 32px; }
    .site-header   { padding: 10px 12px; }
    .main-nav {
        position: fixed;
        top: 74px;
        left: 12px;
        right: 12px;
        background: var(--blanco);
        border-radius: var(--radio-lg);
        box-shadow: var(--sombra-lg);
        padding: 16px 20px 24px;
        transform: translateY(-130%);
        opacity: 0;
        transition: transform .25s ease, opacity .2s ease;
        z-index: 200;
    }
    .main-nav.is-open { transform: translateY(0); opacity: 1; }
    .main-nav > ul    { flex-direction: column; align-items: stretch; gap: 2px; }
    .main-nav > ul > li > a { padding: 12px 14px; border-radius: 8px; font-size: .95rem; }
    .main-nav > ul > li > a::before {
        left: 14px;
        right: auto;
        width: 34px;
        bottom: 7px;
        transform-origin: left center;
    }
    .main-nav > ul > li > a::after {
        left: 14px;
        bottom: 3px;
        transform: translateX(0) translateY(4px) scale(.35);
    }
    .nav-arrow {
        width: 16px;
        height: 16px;
        margin-left: auto;
    }
    .has-submenu::after,
    .has-submenu-side::after { display: none; }
    .main-nav > ul > li > a:hover::after,
    .main-nav > ul > li.active > a::after,
    .has-submenu.is-open > a::after,
    .has-submenu:hover > a::after,
    .has-submenu:focus-within > a::after {
        transform: translateX(0) translateY(0) scale(1);
    }
    .submenu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 4px 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 0;
        overflow: visible;
        background: transparent;
        border-radius: 0;
    }
    .submenu::before { display: none; }
    .submenu li a {
        padding: 11px 14px;
        color: var(--gris-600);
    }
    .submenu li a:hover,
    .submenu li a:focus-visible,
    .submenu li.is-current > a,
    .has-submenu-side.is-open > a,
    .has-submenu-side:hover > a,
    .has-submenu-side:focus-within > a {
        padding-left: 18px;
        transform: none;
        box-shadow: none;
    }
    .submenu-mega,
    .submenu-side {
        transform: none;
    }
    .submenu-side {
        min-width: 0;
        padding-left: 14px;
    }
    .submenu-arrow-side {
        width: 14px;
        height: 14px;
    }
    .has-submenu.is-open .submenu { display: block; }
    .has-submenu-side.is-open > a .submenu-arrow-side {
        transform: rotate(90deg);
    }
    .categorias-grid { grid-template-columns: repeat(2, 1fr); }
    .categoria-card {
        min-height: 220px;
        padding: 20px;
        background-size: cover;
        background-position: center bottom;
    }
    .categoria-card h3 {
        font-size: 1.08rem;
    }
    .productos-grid  { grid-template-columns: repeat(2, 1fr); }
    .footer-grid     { grid-template-columns: 1fr; }
    .footer-logo     { height: 40px; }
    .footer-desc,
    .footer-contact-item { font-size: .95rem; }
    .hero-home {
        min-height: 820px;
    }
    .hero-home .hero-planta {
        width: min(94vw, 430px);
        bottom: -60px;
        right: -150px;
        left: auto;
    }
    .hero-home .hero-planta img {
        opacity: .38;
    }
    .hero-home .hero-mundo {
        width: min(50vw, 220px);
        top: 500px;
        right: 12%;
        left: auto;
    }
    .hero-home .hero-mundo img {
        opacity: .22;
    }
    .hero-home .hero-brand {
        top: auto;
        right: auto;
        left: 18px;
        bottom: 34px;
        gap: 8px;
    }
    .hero-home .hero-brand h1 {
        font-size: 1.3rem;
    }
    .hero-home .hero-brand img {
        width: 150px;
    }
    .hero-home .hero-sep {
        width: 3px;
        height: 62px;
    }
    .producto-top-hero {
        padding: 130px 0 40px;
    }
    .page-hero {
        padding-block: 124px 46px;
    }
    .page-hero h1,
    .producto-top-hero h1 {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }
    .productos-listado {
        padding-block: 42px 58px;
    }
    .producto-card {
        min-height: 268px;
    }
    .producto-card-nombre {
        min-height: 54px;
        padding: 14px 13px 8px;
        font-size: .68rem;
    }
    .producto-card-img {
        min-height: 164px;
        margin: 0 12px 38px;
        padding: 14px;
    }
    .producto-card::after {
        left: 13px;
        right: 13px;
        bottom: 12px;
        font-size: .62rem;
    }
    .producto-detalle {
        padding-block: 44px;
    }
    .producto-detalle-img {
        min-height: 320px;
        padding: 20px;
    }
    .producto-detalle-info {
        padding: 24px;
    }
    .det-ctas {
        grid-template-columns: 1fr;
    }
    .producto-consulta {
        grid-template-columns: 1fr;
    }
    .producto-consulta-actions {
        justify-content: stretch;
    }
    .det-ctas .btn,
    .producto-consulta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .logo-img        { height: 28px; }
    .productos-grid  {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .producto-card {
        min-height: 228px;
    }
    .producto-card-nombre {
        min-height: 50px;
        padding: 12px 10px 6px;
        font-size: .6rem;
        line-height: 1.22;
    }
    .producto-card-img {
        min-height: 138px;
        margin: 0 9px 34px;
        padding: 10px;
    }
    .producto-card::after {
        left: 10px;
        right: 10px;
        bottom: 11px;
        font-size: .56rem;
    }
    .producto-top-hero {
        padding-bottom: 34px;
    }
    .producto-top-hero p {
        font-size: .95rem;
    }
    .producto-detalle {
        padding-block: 32px 44px;
    }
    .producto-detalle-img {
        min-height: 260px;
    }
    .producto-detalle-info {
        gap: 20px;
        padding: 22px 18px;
    }
    .det-spec {
        padding: 16px 16px 16px 19px;
    }
    .producto-consulta {
        padding: 18px;
    }
    .categorias-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .categoria-card {
        min-height: 178px;
        padding: 12px;
        background-size: cover;
        background-position: center bottom;
    }
    .categoria-card h3 {
        font-size: .9rem;
        line-height: 1.1;
    }
    .categoria-kicker {
        font-size: .56rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .nosotros-metricas {
        grid-template-columns: 1fr;
    }
    .servicio-terceros-titulo h2 {
        font-size: 2.05rem;
    }
    .whatsapp-float  { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}
@media (max-width: 360px) {
    .logo-img        { height: 26px; }
    .productos-grid  { grid-template-columns: 1fr 1fr; }
    .producto-card {
        min-height: 212px;
    }
    .producto-card-nombre {
        min-height: 46px;
        font-size: .56rem;
    }
    .producto-card-img {
        min-height: 128px;
        margin-bottom: 32px;
    }
    .categorias-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .categoria-card {
        min-height: 168px;
        padding: 10px;
    }
    .categoria-card h3 {
        font-size: .82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .categoria-card,
    .hero-home .hero-bg img,
    .hero-home .hero-bg::after,
    .hero-home .hero-mundo,
    .hero-home .hero-mundo img,
    .hero-home .hero-planta,
    .hero-home .hero-planta img,
    .hero-home .hero-brand {
        animation: none !important;
    }
}
