/* NEXO Foods — Sistema visual global v0.3.0 */
.nexo-skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 99999;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--nexo-navy);
    color: #fff;
    text-decoration: none;
}
.nexo-skip-link:focus { top: 12px; }

.nexo-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(11,53,80,.08);
    box-shadow: 0 6px 20px rgba(8,39,57,.04);
    backdrop-filter: blur(12px);
}
.admin-bar .nexo-site-header { top: 32px; }
.nexo-header-inner {
    width: min(var(--nexo-container), calc(100% - 48px));
    min-height: 84px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}
.nexo-brand,
.nexo-footer-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nexo-brand .nexo-logo-image { width: 142px; max-height: 58px; object-fit: contain; display: block; }
.nexo-desktop-nav { justify-self: center; }
.nexo-menu,
.nexo-desktop-nav ul,
.nexo-footer-menu,
.nexo-mobile-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nexo-menu { display: flex; align-items: center; gap: 32px; }
.nexo-menu > li { position: relative; }
.nexo-menu > li > a {
    position: relative;
    display: block;
    padding: 30px 0 28px;
    color: var(--nexo-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}
.nexo-menu > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 0;
    height: 2px;
    background: var(--nexo-green);
    transform: translateX(-50%);
    transition: width .2s ease;
}
.nexo-menu > li:hover > a,
.nexo-menu > li.current-menu-item > a,
.nexo-menu > li.current_page_item > a { color: var(--nexo-green-dark); }
.nexo-menu > li:hover > a::after,
.nexo-menu > li.current-menu-item > a::after,
.nexo-menu > li.current_page_item > a::after { width: 100%; }

.nexo-menu .sub-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: -20px;
    min-width: 220px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--nexo-border);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(8,39,57,.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}
.nexo-menu li:hover > .sub-menu,
.nexo-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nexo-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--nexo-text);
    font-size: 14px;
    text-decoration: none;
}
.nexo-menu .sub-menu a:hover { background: var(--nexo-surface); color: var(--nexo-green-dark); }

.nexo-header-actions { display: flex; align-items: center; gap: 18px; }
.nexo-header-cta,
.nexo-mobile-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 8px;
    background: var(--nexo-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 9px 18px rgba(67,170,70,.18);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nexo-header-cta svg { width: 17px; height: 17px; }
.nexo-header-cta:hover,
.nexo-mobile-cta:hover { background: var(--nexo-green-dark); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(67,170,70,.23); }

.nexo-menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
    user-select: none;
    -webkit-user-select: none;
    font-size: 16px;
}
.nexo-menu-toggle:focus-visible {
    outline: 2px solid var(--nexo-green);
    outline-offset: 3px;
}
.nexo-menu-toggle span { width: 23px; height: 2px; border-radius: 99px; background: var(--nexo-navy); transition: .25s ease; }
.nexo-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nexo-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nexo-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nexo-mobile-panel {
    position: fixed;
    inset: 84px 0 0;
    z-index: 998;
    background: rgba(255,255,255,.995);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
}
.admin-bar .nexo-mobile-panel { inset: 116px 0 0; }
.nexo-mobile-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nexo-mobile-panel-inner { width: min(620px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0 40px; }
.nexo-mobile-menu-list > li { border-bottom: 1px solid var(--nexo-border); }
.nexo-mobile-menu-list a {
    display: block;
    padding: 17px 2px;
    color: var(--nexo-navy);
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
}
.nexo-mobile-menu-list .sub-menu { list-style: none; margin: -4px 0 10px; padding: 0 0 0 14px; }
.nexo-mobile-menu-list .sub-menu a { padding: 9px 0; color: var(--nexo-muted); font-size: 15px; font-weight: 600; }
.nexo-mobile-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding-top: 26px; }
.nexo-mobile-cta { width: 100%; min-height: 50px; }

/* Footer */
.nexo-site-footer { margin-top: 0; background: #fff; border-top: 1px solid var(--nexo-border); }
.nexo-footer-main { padding: 58px 0 44px; }
.nexo-footer-grid {
    width: min(var(--nexo-container), calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr .8fr .85fr 1.45fr;
    gap: 54px;
}
.nexo-footer-logo .nexo-logo-image { width: 152px; max-height: 65px; object-fit: contain; }
.nexo-footer-tagline {
    max-width: 240px;
    margin: 18px 0 0;
    color: var(--nexo-muted);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.nexo-footer-column h2 {
    margin: 3px 0 17px;
    color: var(--nexo-navy);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}
.nexo-footer-menu { display: grid; gap: 8px; }
.nexo-footer-menu a {
    color: #526571;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color .2s ease;
}
.nexo-footer-menu a:hover { color: var(--nexo-green-dark); }
.nexo-footer-contact { min-width: 0; }
.nexo-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #526571;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}
.nexo-contact-row svg { width: 17px; min-width: 17px; height: 17px; margin-top: 1px; color: var(--nexo-navy); }
a.nexo-contact-row:hover { color: var(--nexo-green-dark); }
.nexo-socials { display: flex; align-items: center; gap: 9px; margin-top: 21px; }
.nexo-socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nexo-border);
    border-radius: 8px;
    color: var(--nexo-navy);
    transition: .2s ease;
}
.nexo-socials a:hover { border-color: var(--nexo-green); color: var(--nexo-green-dark); transform: translateY(-1px); }
.nexo-socials svg { width: 16px; height: 16px; fill: currentColor; }
.nexo-footer-bottom { border-top: 1px solid var(--nexo-border); background: #fbfcfc; }
.nexo-footer-bottom-inner {
    width: min(var(--nexo-container), calc(100% - 48px));
    min-height: 58px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #80909a;
    font-size: 14px;
}
.nexo-footer-bottom-inner a { text-decoration: none; }
.nexo-footer-bottom-inner a:hover { color: var(--nexo-green-dark); }

/* El contenido del Builder conserva ancho completo. Solo aplicamos reseteos seguros. */
.nexo-site-main > .alignfull,
.nexo-site-main > .wp-block-group.alignfull { width: 100%; max-width: none; }

@media (min-width: 981px) {
    .nexo-mobile-panel { display: none !important; }
}

@media (max-width: 1120px) {
    .nexo-header-inner { gap: 20px; }
    .nexo-menu { gap: 22px; }
    .nexo-header-cta { padding: 0 16px; }
}

@media (max-width: 980px) {
    .nexo-desktop-nav,
    .nexo-header-cta { display: none; }
    .nexo-header-inner { min-height: 76px; grid-template-columns: 1fr auto; }
    .nexo-brand .nexo-logo-image { width: 132px; max-height: 54px; }
    .nexo-menu-toggle { display: flex; }
    .nexo-mobile-panel { inset: 76px 0 0; }
    .admin-bar .nexo-mobile-panel { inset: 108px 0 0; }
    .nexo-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 38px; }
    .nexo-footer-contact { grid-column: 1 / -1; max-width: 540px; }
}

@media (max-width: 782px) {
    .admin-bar .nexo-site-header { top: 46px; }
    .admin-bar .nexo-mobile-panel { inset: 122px 0 0; }
}

@media (max-width: 680px) {
    .nexo-header-inner,
    .nexo-footer-grid,
    .nexo-footer-bottom-inner { width: min(100% - 32px, var(--nexo-container)); }
    .nexo-header-inner { min-height: 70px; }
    .nexo-brand .nexo-logo-image { width: 118px; max-height: 48px; }
    .nexo-mobile-panel { inset: 70px 0 0; }
    .admin-bar .nexo-mobile-panel { inset: 116px 0 0; }
    .nexo-mobile-panel-inner { width: calc(100% - 32px); }
    .nexo-footer-main { padding: 46px 0 34px; }
    .nexo-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 26px; }
    .nexo-footer-brand-block,
    .nexo-footer-contact { grid-column: 1 / -1; }
    .nexo-footer-tagline { max-width: none; }
    .nexo-footer-bottom-inner { min-height: 70px; flex-direction: column; justify-content: center; align-items: flex-start; padding: 14px 0; }
}

@media (max-width: 420px) {
    .nexo-footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 30px 18px;
    }
    .nexo-footer-brand-block,
    .nexo-footer-contact { grid-column: 1 / -1; }
    .nexo-footer-nav,
    .nexo-footer-products { min-width: 0; }
    .nexo-footer-column h2 { margin-bottom: 14px; }
    .nexo-footer-menu a { font-size: 14px; }
}


/* WooCommerce — modo catálogo v0.3.0 */
.nexo-catalog-mode .nexo-basic-wrap {
    width: min(var(--nexo-container), calc(100% - 48px));
    padding: 54px 0 72px;
}
.nexo-catalog-mode .woocommerce-products-header {
    margin-bottom: 26px;
}
.nexo-catalog-mode .woocommerce-products-header__title.page-title,
.nexo-catalog-mode .product_title.entry-title {
    margin: 0;
    color: var(--nexo-navy);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -.035em;
}
.nexo-catalog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 30px;
}
.nexo-catalog-cat {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid var(--nexo-border);
    border-radius: 999px;
    background: #fff;
    color: var(--nexo-navy);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
}
.nexo-catalog-cat:hover,
.nexo-catalog-cat.is-active {
    border-color: var(--nexo-green);
    background: var(--nexo-green);
    color: #fff;
}
.nexo-catalog-mode .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
    margin: 0;
}
.nexo-catalog-mode .woocommerce ul.products::before,
.nexo-catalog-mode .woocommerce ul.products::after { display: none; }
.nexo-catalog-mode .woocommerce ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
    padding: 0 0 18px;
    overflow: hidden;
    border: 1px solid var(--nexo-border);
    border-radius: 15px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.nexo-catalog-mode .woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: rgba(67,170,70,.35);
    box-shadow: 0 18px 38px rgba(8,39,57,.09);
}
.nexo-catalog-mode .woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 0 16px;
    object-fit: cover;
    background: var(--nexo-surface);
}
.nexo-catalog-mode .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0 17px;
    margin: 0;
    color: var(--nexo-navy);
    font-size: 17px;
    line-height: 1.28;
    font-weight: 800;
}
.nexo-catalog-mode .woocommerce span.onsale,
.nexo-catalog-mode .woocommerce div.product p.price,
.nexo-catalog-mode .woocommerce div.product span.price,
.nexo-catalog-mode .woocommerce ul.products li.product .price,
.nexo-catalog-mode .woocommerce .button.add_to_cart_button,
.nexo-catalog-mode .woocommerce .single_add_to_cart_button { display: none !important; }

.nexo-catalog-mode .woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 56px;
    align-items: start;
}
.nexo-catalog-mode .woocommerce div.product div.images,
.nexo-catalog-mode .woocommerce div.product div.summary {
    float: none;
    width: auto;
    margin: 0;
}
.nexo-catalog-mode .woocommerce div.product div.images img {
    border-radius: 16px;
    background: var(--nexo-surface);
}
.nexo-catalog-mode .woocommerce div.product .summary .product_meta {
    margin-top: 18px;
    color: var(--nexo-muted);
    font-size: 14px;
}
.nexo-catalog-mode .woocommerce-product-details__short-description {
    margin-top: 22px;
    color: #526571;
    font-size: 16px;
    line-height: 1.7;
}
.nexo-product-quote {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--nexo-border);
}
.nexo-product-quote__button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 22px;
    border-radius: 9px;
    background: var(--nexo-green);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(67,170,70,.19);
}
.nexo-product-quote__button:hover { background: var(--nexo-green-dark); color: #fff; }
.nexo-product-quote p {
    max-width: 430px;
    margin: 13px 0 0;
    color: var(--nexo-muted);
    font-size: 14px;
    line-height: 1.55;
}
.nexo-catalog-mode .woocommerce nav.woocommerce-pagination { margin-top: 38px; }

@media (max-width: 1020px) {
    .nexo-catalog-mode .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .nexo-catalog-mode .woocommerce div.product { gap: 34px; }
}
@media (max-width: 760px) {
    .nexo-catalog-mode .nexo-basic-wrap { width: min(100% - 32px, var(--nexo-container)); padding: 38px 0 54px; }
    .nexo-catalog-mode .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; }
    .nexo-catalog-mode .woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 13px; font-size: 15px; }
    .nexo-catalog-mode .woocommerce div.product { grid-template-columns: 1fr; gap: 26px; }
    .nexo-catalog-cats { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .nexo-catalog-cats::-webkit-scrollbar { display: none; }
    .nexo-catalog-cat { flex: 0 0 auto; }
}
@media (max-width: 420px) {
    .nexo-catalog-mode .woocommerce ul.products { gap: 14px 10px; }
    .nexo-catalog-mode .woocommerce ul.products li.product { border-radius: 12px; padding-bottom: 14px; }
    .nexo-catalog-mode .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px; }
}

/* ==========================================================
   WooCommerce — Catálogo visual v0.4.0
   ========================================================== */
.nexo-catalog-hero {
    position: relative;
    overflow: hidden;
    background: var(--nexo-navy-dark);
    color: #fff;
}
.nexo-catalog-hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -165px;
    border: 70px solid rgba(67,170,70,.14);
    border-radius: 50%;
}
.nexo-catalog-hero__inner {
    position: relative;
    z-index: 1;
    width: min(var(--nexo-container), calc(100% - 48px));
    min-height: 300px;
    margin: 0 auto;
    padding: 66px 0 58px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
}
.nexo-catalog-hero__copy { max-width: 760px; }
.nexo-catalog-hero__kicker,
.nexo-product-single__eyebrow,
.nexo-related-products__head > span {
    display: block;
    margin-bottom: 14px;
    color: #7ad578;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nexo-catalog-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: .98;
    letter-spacing: -.045em;
}
.nexo-catalog-hero__text {
    max-width: 650px;
    margin-top: 20px;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.7;
}
.nexo-catalog-hero__text p { margin: 0; }
.nexo-catalog-hero__mark {
    display: grid;
    gap: 10px;
    min-width: 180px;
}
.nexo-catalog-hero__mark span {
    padding: 10px 0 10px 16px;
    border-left: 3px solid var(--nexo-green);
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
}
.nexo-catalog-shell {
    width: min(var(--nexo-container), calc(100% - 48px));
    margin: 0 auto;
    padding: 42px 0 82px;
}
.nexo-catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}
.nexo-catalog-toolbar .nexo-catalog-cats { margin: 0; }
.nexo-catalog-count {
    flex: 0 0 auto;
    margin: 0;
    color: var(--nexo-muted);
    font-size: 14px;
    font-weight: 700;
}
.nexo-catalog-shell ul.products,
.nexo-related-products ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
    margin: 0;
    padding: 0;
}
.nexo-catalog-shell ul.products::before,
.nexo-catalog-shell ul.products::after,
.nexo-related-products ul.products::before,
.nexo-related-products ul.products::after { display: none; }
.nexo-catalog-shell li.nexo-product-card,
.nexo-related-products li.nexo-product-card {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid var(--nexo-border);
    border-radius: 16px;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.nexo-catalog-shell li.nexo-product-card:hover,
.nexo-related-products li.nexo-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(67,170,70,.38);
    box-shadow: 0 20px 44px rgba(6,40,62,.09);
}
.nexo-product-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--nexo-surface);
}
.nexo-product-card__media img {
    display: block;
    width: 100% !important;
    aspect-ratio: 1 / 1;
    margin: 0 !important;
    object-fit: cover;
    transition: transform .35s ease;
}
.nexo-product-card:hover .nexo-product-card__media img { transform: scale(1.025); }
.nexo-product-card__category {
    position: absolute;
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(6,40,62,.9);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
}
.nexo-product-card__body { padding: 18px 18px 17px; }
.nexo-product-card__title {
    display: block;
    min-height: 49px;
    text-decoration: none;
}
.nexo-product-card__title strong {
    display: block;
    color: var(--nexo-navy);
    font-size: 17px;
    line-height: 1.18;
    font-weight: 850;
}
.nexo-product-card__title span {
    display: block;
    margin-top: 5px;
    color: var(--nexo-muted);
    font-size: 14px;
    line-height: 1.25;
}
.nexo-product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    color: var(--nexo-green-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}
.nexo-product-card__cta span { transition: transform .2s ease; }
.nexo-product-card__cta:hover span { transform: translateX(3px); }
.nexo-catalog-pagination { margin-top: 44px; }
.nexo-catalog-pagination .woocommerce-pagination ul.page-numbers {
    border: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.nexo-catalog-pagination .woocommerce-pagination ul.page-numbers li { border: 0; }
.nexo-catalog-pagination .page-numbers a,
.nexo-catalog-pagination .page-numbers span {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nexo-border);
    border-radius: 9px;
    background: #fff !important;
    color: var(--nexo-navy) !important;
    font-weight: 700;
}
.nexo-catalog-pagination .page-numbers .current {
    border-color: var(--nexo-green);
    background: var(--nexo-green) !important;
    color: #fff !important;
}
.nexo-catalog-empty {
    padding: 64px 20px;
    text-align: center;
    border: 1px dashed var(--nexo-border);
    border-radius: 16px;
}
.nexo-catalog-empty h2 { margin: 0 0 14px; color: var(--nexo-navy); font-size: 24px; }
.nexo-catalog-empty a { color: var(--nexo-green-dark); font-weight: 800; text-decoration: none; }

/* Grid reset: WooCommerce may not wrap custom archive templates in .woocommerce. */
.nexo-catalog-shell ul.products,
.nexo-related-products ul.products {
    width: 100%;
    list-style: none;
}
.nexo-catalog-shell ul.products li.product.nexo-product-card,
.nexo-related-products ul.products li.product.nexo-product-card {
    min-width: 0;
    max-width: none;
}

/* Single product */
.nexo-product-single {
    width: min(var(--nexo-container), calc(100% - 48px));
    margin: 0 auto;
    padding: 36px 0 86px;
}
.nexo-product-single__topbar {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}
.nexo-product-single__back {
    color: var(--nexo-muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.nexo-product-single__back:hover { color: var(--nexo-green-dark); }
.nexo-product-single__category {
    padding: 7px 11px;
    border-radius: 999px;
    background: #edf7ed;
    color: var(--nexo-green-dark);
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.nexo-product-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
    gap: 68px;
    align-items: center;
}
.nexo-product-single__gallery { min-width: 0; }
.nexo-product-single__gallery .woocommerce-product-gallery {
    position: relative;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}
.nexo-product-single__gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    z-index: 8;
    width: 42px;
    height: 42px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(11,53,80,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    box-shadow: 0 7px 22px rgba(6,40,62,.12);
    color: transparent !important;
    font-size: 0 !important;
    text-decoration: none;
    backdrop-filter: blur(7px);
}
.nexo-product-single__gallery .woocommerce-product-gallery__trigger::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3550' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E");
}
.nexo-product-single__gallery .woocommerce-product-gallery__trigger img,
.nexo-product-single__gallery .woocommerce-product-gallery__trigger span { display: none !important; }
.nexo-product-single__gallery .woocommerce-product-gallery__wrapper {
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid var(--nexo-border);
    border-radius: 20px;
    background: var(--nexo-surface);
}
.nexo-product-single__gallery .woocommerce-product-gallery__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.nexo-product-single__gallery .flex-control-thumbs {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 12px 0 0 !important;
    padding: 0 !important;
}
.nexo-product-single__gallery .flex-control-thumbs li {
    float: none !important;
    width: auto !important;
    overflow: hidden;
    border: 1px solid var(--nexo-border);
    border-radius: 10px;
}
.nexo-product-single__summary { max-width: 560px; }
.nexo-product-single__eyebrow { margin-bottom: 16px; color: var(--nexo-green-dark); }
.nexo-product-single__title {
    margin: 0;
    color: var(--nexo-navy);
    font-size: clamp(38px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -.045em;
}
.nexo-product-single__alt-name {
    margin: 12px 0 0;
    color: var(--nexo-green-dark);
    font-size: 18px;
    font-weight: 750;
}
.nexo-product-single__description {
    margin-top: 24px;
    color: #526571;
    font-size: 15px;
    line-height: 1.75;
}
.nexo-product-single__description p { margin: 0; }
.nexo-product-single__specs {
    margin-top: 28px;
    padding: 21px 22px;
    border-left: 4px solid var(--nexo-green);
    border-radius: 0 12px 12px 0;
    background: var(--nexo-surface);
}
.nexo-product-single__specs > span {
    display: block;
    margin-bottom: 10px;
    color: var(--nexo-navy);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nexo-product-single__specs p {
    margin: 4px 0 0;
    color: var(--nexo-muted);
    font-size: 14px;
    line-height: 1.5;
}
.nexo-product-single__specs p strong { color: var(--nexo-text); }
.nexo-product-single__quote {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    padding: 0 24px;
    border-radius: 9px;
    background: var(--nexo-green);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(67,170,70,.18);
    transition: .2s ease;
}
.nexo-product-single__quote:hover {
    background: var(--nexo-green-dark);
    color: #fff;
    transform: translateY(-1px);
}
.nexo-product-single__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--nexo-border);
}
.nexo-product-single__trust div { display: flex; align-items: center; gap: 9px; }
.nexo-product-single__trust b {
    color: var(--nexo-green);
    font-size: 14px;
    letter-spacing: .06em;
}
.nexo-product-single__trust span {
    color: var(--nexo-muted);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.nexo-related-products {
    margin-top: 82px;
    padding-top: 52px;
    border-top: 1px solid var(--nexo-border);
}
.nexo-related-products__head { margin-bottom: 28px; }
.nexo-related-products__head > span { color: var(--nexo-green-dark); margin-bottom: 8px; }
.nexo-related-products__head h2 {
    margin: 0;
    color: var(--nexo-navy);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -.025em;
}

/* Remove legacy Woo title/spacing if a plugin still injects it. */
.nexo-catalog-mode .woocommerce-products-header,
.nexo-catalog-mode .woocommerce-breadcrumb,
.nexo-catalog-mode .woocommerce-tabs,
.nexo-catalog-mode .product_meta,
.nexo-catalog-mode .related.products:not(.nexo-related-products) { display: none !important; }

@media (max-width: 1020px) {
    .nexo-catalog-shell ul.products,
    .nexo-related-products ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .nexo-product-single__grid { gap: 42px; grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); }
}

@media (max-width: 760px) {
    .nexo-catalog-hero__inner,
    .nexo-catalog-shell,
    .nexo-product-single { width: min(100% - 32px, var(--nexo-container)); }
    .nexo-catalog-hero__inner { min-height: 260px; padding: 48px 0 42px; }
    .nexo-catalog-hero__mark { display: none; }
    .nexo-catalog-hero h1 { font-size: clamp(36px, 12vw, 52px); }
    .nexo-catalog-hero__text { font-size: 14px; }
    .nexo-catalog-shell { padding: 30px 0 58px; }
    .nexo-catalog-toolbar { display: block; }
    .nexo-catalog-toolbar .nexo-catalog-cats { margin-bottom: 12px; }
    .nexo-catalog-count { padding-left: 2px; }
    .nexo-catalog-shell ul.products,
    .nexo-related-products ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
    .nexo-product-card__body { padding: 14px 13px 14px; }
    .nexo-product-card__title { min-height: 45px; }
    .nexo-product-card__title strong { font-size: 14px; }
    .nexo-product-card__title span { font-size: 14px; }
    .nexo-product-card__cta { margin-top: 13px; font-size: 14px; }
    .nexo-product-card__category { left: 9px; bottom: 9px; font-size: 14px; }

    .nexo-product-single { padding: 24px 0 58px; }
    .nexo-product-single__topbar { margin-bottom: 20px; }
    .nexo-product-single__grid { grid-template-columns: 1fr; gap: 30px; }
    .nexo-product-single__summary { max-width: none; }
    .nexo-product-single__title { font-size: clamp(38px, 12vw, 50px); }
    .nexo-product-single__alt-name { font-size: 16px; }
    .nexo-product-single__quote { width: 100%; }
    .nexo-related-products { margin-top: 56px; padding-top: 40px; }
}

@media (max-width: 420px) {
    .nexo-catalog-shell ul.products,
    .nexo-related-products ul.products { gap: 13px 9px; }
    .nexo-product-card__body { padding: 12px 11px 13px; }
    .nexo-product-card__title strong { font-size: 14px; }
    .nexo-product-card__title span { font-size: 14px; }
    .nexo-product-single__trust { gap: 6px; }
    .nexo-product-single__trust div { gap: 5px; }
    .nexo-product-single__trust span { font-size: 14px; }
}

/* SVG UI icons v0.4.1 */
.nexo-inline-icon { width: 16px; height: 16px; flex: 0 0 16px; display: inline-block; }
.nexo-product-single__back .nexo-inline-icon { width: 14px; height: 14px; flex-basis: 14px; }
.nexo-product-single__back { display: inline-flex; align-items: center; gap: 7px; }
.nexo-product-card__cta .nexo-inline-icon,
.nexo-product-single__quote .nexo-inline-icon,
.nexo-mobile-cta .nexo-inline-icon { transition: transform .2s ease; }
.nexo-product-card__cta:hover .nexo-inline-icon,
.nexo-product-single__quote:hover .nexo-inline-icon,
.nexo-mobile-cta:hover .nexo-inline-icon { transform: translateX(3px); }

/* ==========================================================
   Navegación activa + Cotización v0.5.1
   ========================================================== */
.nexo-mobile-menu-list > li.current-menu-item > a,
.nexo-mobile-menu-list > li.current_page_item > a,
.nexo-mobile-menu-list > li.nexo-is-active > a,
.nexo-mobile-menu-list > li.nexo-section-active > a {
    position: relative;
    color: var(--nexo-green-dark);
    background: #f2f9f2;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 10px;
}
.nexo-mobile-menu-list > li.current-menu-item > a::before,
.nexo-mobile-menu-list > li.current_page_item > a::before,
.nexo-mobile-menu-list > li.nexo-is-active > a::before,
.nexo-mobile-menu-list > li.nexo-section-active > a::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 4px;
    height: 22px;
    border-radius: 999px;
    background: var(--nexo-green);
    transform: translateY(-50%);
}
.nexo-header-cta.is-active,
.nexo-mobile-cta.is-active {
    background: var(--nexo-green-dark);
    box-shadow: 0 0 0 3px rgba(67,170,70,.16), 0 12px 24px rgba(67,170,70,.2);
}

.nexo-quote-hero {
    position: relative;
    overflow: hidden;
    background: var(--nexo-navy-dark);
    color: #fff;
}
.nexo-quote-hero::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    right: -125px;
    top: -190px;
    border: 74px solid rgba(67,170,70,.13);
    border-radius: 50%;
}
.nexo-quote-hero__inner {
    position: relative;
    z-index: 1;
    width: min(var(--nexo-container), calc(100% - 48px));
    min-height: 330px;
    margin: 0 auto;
    padding: 74px 0 62px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 64px;
}
.nexo-quote-hero__inner > div:first-child { max-width: 760px; }
.nexo-quote-hero__kicker,
.nexo-quote-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #78d276;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.nexo-quote-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 68px);
    line-height: .98;
    letter-spacing: -.045em;
}
.nexo-quote-hero p {
    max-width: 690px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.7;
}
.nexo-quote-hero__steps {
    min-width: 210px;
    display: grid;
    gap: 12px;
}
.nexo-quote-hero__steps span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0 9px 15px;
    border-left: 3px solid var(--nexo-green);
    color: rgba(255,255,255,.83);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.nexo-quote-hero__steps strong { color: #78d276; }

.nexo-quote-section { background: #fff; }
.nexo-quote-layout {
    width: min(var(--nexo-container), calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0 90px;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
    gap: 72px;
    align-items: start;
}
.nexo-quote-intro { padding-top: 12px; }
.nexo-quote-eyebrow { color: var(--nexo-green-dark); }
.nexo-quote-intro h2 {
    max-width: 430px;
    margin: 0;
    color: var(--nexo-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -.04em;
}
.nexo-quote-intro > p {
    max-width: 500px;
    margin: 22px 0 0;
    color: var(--nexo-muted);
    font-size: 15px;
    line-height: 1.75;
}
.nexo-quote-note {
    margin-top: 32px;
    padding: 22px 24px;
    border-left: 4px solid var(--nexo-green);
    border-radius: 0 12px 12px 0;
    background: var(--nexo-surface);
}
.nexo-quote-note strong {
    display: block;
    margin-bottom: 9px;
    color: var(--nexo-navy);
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.nexo-quote-note p { margin: 5px 0 0; color: var(--nexo-muted); font-size: 14px; line-height: 1.55; }
.nexo-quote-card {
    padding: 34px;
    border: 1px solid var(--nexo-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(6,40,62,.07);
}
.nexo-form-alert {
    margin-bottom: 24px;
    padding: 15px 17px;
    border-radius: 10px;
    display: grid;
    gap: 3px;
    font-size: 14px;
}
.nexo-form-alert.is-success { background: #eef8ef; color: #286f30; border: 1px solid #cee8d0; }
.nexo-form-alert.is-error { background: #fff4f2; color: #8a3328; border: 1px solid #f1d4cf; }
.nexo-form-alert strong { font-size: 14px; }
.nexo-form-alert span { opacity: .86; }
.nexo-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px 18px;
}
.nexo-field { display: grid; gap: 7px; }
.nexo-field--full { grid-column: 1 / -1; }
.nexo-field > span {
    color: var(--nexo-navy);
    font-size: 14px;
    font-weight: 750;
}
.nexo-field input,
.nexo-field select,
.nexo-field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dce5e8;
    border-radius: 9px;
    background: #fff;
    color: var(--nexo-text);
    padding: 11px 13px;
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.nexo-field textarea { min-height: 128px; resize: vertical; }
.nexo-field input:focus,
.nexo-field select:focus,
.nexo-field textarea:focus {
    border-color: var(--nexo-green);
    box-shadow: 0 0 0 3px rgba(67,170,70,.12);
}

.nexo-product-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
.nexo-product-fieldset legend {
    margin: 0;
    padding: 0;
    color: var(--nexo-navy);
    font-size: 14px;
    font-weight: 750;
}
.nexo-product-fieldset__hint {
    margin: 1px 0 3px;
    color: var(--nexo-muted);
    font-size: 14px;
    line-height: 1.45;
}
.nexo-product-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.nexo-product-option {
    position: relative;
    min-height: 48px;
    padding: 11px 12px;
    border: 1px solid #dce5e8;
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--nexo-text);
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.nexo-product-option:hover {
    border-color: #b9d6bc;
    background: #fbfefb;
}
.nexo-product-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}
.nexo-product-option__check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 1.5px solid #b9c8ce;
    border-radius: 5px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #fff;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.nexo-product-option__check svg { width: 13px; height: 13px; opacity: 0; transform: scale(.75); transition: opacity .18s ease, transform .18s ease; }
.nexo-product-option__name { min-width: 0; font-size: 14px; font-weight: 680; line-height: 1.35; }
.nexo-product-option:has(input:checked) {
    border-color: var(--nexo-green);
    background: #f4fbf4;
    box-shadow: 0 0 0 2px rgba(67,170,70,.08);
}
.nexo-product-option input:checked + .nexo-product-option__check {
    border-color: var(--nexo-green);
    background: var(--nexo-green);
}
.nexo-product-option input:checked + .nexo-product-option__check svg { opacity: 1; transform: scale(1); }
.nexo-product-option:focus-within {
    border-color: var(--nexo-green);
    box-shadow: 0 0 0 3px rgba(67,170,70,.12);
}
.nexo-quote-submit {
    min-height: 52px;
    margin-top: 24px;
    padding: 0 23px;
    border: 0;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--nexo-green);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(67,170,70,.2);
}
.nexo-quote-submit:hover { background: var(--nexo-green-dark); }
.nexo-quote-submit .nexo-inline-icon { width: 17px; height: 17px; }
.nexo-form-privacy { margin: 13px 0 0; color: #84939c; font-size: 14px; line-height: 1.5; }
.nexo-hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 980px) {
    .nexo-quote-layout { grid-template-columns: 1fr; gap: 38px; }
    .nexo-quote-intro { max-width: 650px; }
}
@media (max-width: 720px) {
    .nexo-quote-hero__inner,
    .nexo-quote-layout { width: min(100% - 32px, var(--nexo-container)); }
    .nexo-quote-hero__inner { min-height: 300px; padding: 58px 0 48px; }
    .nexo-quote-hero__steps { display: none; }
    .nexo-quote-hero h1 { font-size: clamp(38px, 12vw, 54px); }
    .nexo-quote-layout { padding: 50px 0 66px; }
    .nexo-quote-card { padding: 24px 18px; border-radius: 14px; }
    .nexo-form-grid { grid-template-columns: 1fr; gap: 16px; }
    .nexo-field--full { grid-column: auto; }
    .nexo-product-options { grid-template-columns: 1fr; gap: 9px; }
    .nexo-product-option { min-height: 46px; padding: 10px 11px; }
    .nexo-quote-submit { width: 100%; }
}

/* ==========================================================
   Home nativo — v0.7.0
   Portada editorial conectada directamente a WooCommerce.
   ========================================================== */
.nexo-native-container {
    width: min(var(--nexo-container), calc(100% - 48px));
    margin-inline: auto;
}
.nexo-native-eyebrow {
    display: block;
    margin: 0 0 14px;
    color: var(--nexo-green-dark);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: .105em;
    text-transform: uppercase;
}
.nexo-native-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
}
.nexo-native-button {
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.nexo-native-button:hover { transform: translateY(-1px); }
.nexo-native-button .nexo-inline-icon { width: 17px; height: 17px; }
.nexo-native-button--green { background: var(--nexo-green); color: #fff; }
.nexo-native-button--green:hover { background: var(--nexo-green-dark); }
.nexo-native-button--line {
    border-color: rgba(255,255,255,.31);
    background: transparent;
    color: #fff;
}
.nexo-native-button--line:hover { border-color: rgba(255,255,255,.68); background: rgba(255,255,255,.06); }
.nexo-native-button--light-line {
    border-color: rgba(255,255,255,.48);
    background: rgba(255,255,255,.05);
    color: #fff;
}
.nexo-native-button--light-line:hover { background: #fff; color: var(--nexo-navy); border-color: #fff; }
.nexo-native-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nexo-green-dark);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}
.nexo-native-text-link .nexo-inline-icon { width: 17px; height: 17px; transition: transform .2s ease; }
.nexo-native-text-link:hover .nexo-inline-icon { transform: translateX(3px); }

/* Hero: composición editorial, sin mosaicos ni tarjetas flotantes. */
.nexo-native-hero {
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
    background: var(--nexo-navy-dark);
    color: #fff;
}
.nexo-native-hero__copy {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 78px clamp(34px, 5vw, 82px) 76px max(24px, calc((100vw - var(--nexo-container)) / 2));
}
.nexo-native-hero__copy-inner { width: min(100%, 575px); }
.nexo-native-hero .nexo-native-eyebrow { color: #82d77e; }
.nexo-native-hero h1 {
    max-width: 610px;
    margin: 0;
    font-size: clamp(58px, 6.3vw, 92px);
    line-height: .92;
    letter-spacing: -.058em;
    font-weight: 820;
}
.nexo-native-hero h1 span { color: #8bdc86; }
.nexo-native-hero__lead {
    max-width: 560px;
    margin: 30px 0 30px;
    color: rgba(255,255,255,.77);
    font-size: 17px;
    line-height: 1.72;
}
.nexo-native-hero__markets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 19px;
    margin-top: 38px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .095em;
    text-transform: uppercase;
}
.nexo-native-hero__media {
    position: relative;
    min-width: 0;
    min-height: 680px;
    overflow: hidden;
    background: #dfe8e2;
}
.nexo-native-hero__image-link { position: absolute; inset: 0; display: block; }
.nexo-native-hero__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.nexo-native-hero__image-link:hover .nexo-native-hero__image { transform: scale(1.018); }
.nexo-native-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(6,40,62,.15), transparent 22%, transparent 80%, rgba(6,40,62,.06));
}
.nexo-native-photo-note {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 24px;
    max-width: 250px;
    padding: 13px 15px;
    background: rgba(255,255,255,.94);
    color: var(--nexo-navy);
    box-shadow: 0 12px 34px rgba(4,32,48,.14);
}
.nexo-native-photo-note span {
    display: block;
    margin-bottom: 4px;
    color: var(--nexo-green-dark);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nexo-native-photo-note strong { display: block; font-size: 14px; line-height: 1.35; }
.nexo-native-hero__fallback { position: absolute; inset: 0; background: #dfe8e2; }

/* Intro con fotografía editorial real. */
.nexo-native-intro { padding: 116px 0 122px; }
.nexo-native-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(58px, 8vw, 118px);
    align-items: center;
}
.nexo-native-intro__visual {
    position: relative;
    min-height: 560px;
    padding-right: 82px;
}
.nexo-native-intro__photo { overflow: hidden; background: var(--nexo-surface); }
.nexo-native-intro__photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.nexo-native-intro__photo--main { height: 540px; }
.nexo-native-intro__photo--small {
    position: absolute;
    width: 235px;
    height: 260px;
    right: 0;
    bottom: -34px;
    border: 10px solid #fff;
    box-shadow: 0 22px 50px rgba(10,43,61,.12);
}
.nexo-native-intro__content { max-width: 570px; }
.nexo-native-intro h2,
.nexo-native-values h2,
.nexo-native-products h2,
.nexo-native-portfolio h2,
.nexo-native-coverage h2,
.nexo-native-quote h2 {
    margin: 0;
    color: var(--nexo-navy);
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: 1.01;
    letter-spacing: -.045em;
}
.nexo-native-intro__content > p {
    margin: 24px 0 0;
    color: #5d6f79;
    font-size: 16px;
    line-height: 1.78;
}
.nexo-native-intro__content .nexo-native-text-link { margin-top: 28px; }

/* Valores: líneas editoriales, no cards. */
.nexo-native-values { padding: 92px 0 96px; background: #f4f7f6; }
.nexo-native-values__head { max-width: 780px; margin-bottom: 54px; }
.nexo-native-values__list { border-top: 1px solid #cad6d5; }
.nexo-native-values__list article {
    min-height: 118px;
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #cad6d5;
}
.nexo-native-values__list article > span {
    color: var(--nexo-green-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .09em;
}
.nexo-native-values__list article > div {
    display: grid;
    grid-template-columns: minmax(170px, .45fr) 1fr;
    align-items: baseline;
    gap: 30px;
}
.nexo-native-values__list h3 { margin: 0; color: var(--nexo-navy); font-size: 24px; }
.nexo-native-values__list p { margin: 0; color: var(--nexo-muted); font-size: 14px; line-height: 1.6; }

/* Productos: fotografía primero, texto mínimo. */
.nexo-native-products { padding: 112px 0 120px; }
.nexo-native-products__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}
.nexo-native-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 42px;
}
.nexo-native-product { min-width: 0; }
.nexo-native-product__image {
    aspect-ratio: 1 / 1.08;
    display: block;
    overflow: hidden;
    background: #eef3f0;
}
.nexo-native-product__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}
.nexo-native-product:hover .nexo-native-product__image img { transform: scale(1.025); }
.nexo-native-product__meta {
    min-height: 67px;
    padding: 15px 2px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    border-top: 0;
}
.nexo-native-product__meta > a { min-width: 0; display: block; color: var(--nexo-navy); text-decoration: none; }
.nexo-native-product__meta strong { display: block; font-size: 16px; line-height: 1.28; }
.nexo-native-product__meta span { display: block; margin-top: 3px; color: var(--nexo-green-dark); font-size: 14px; font-weight: 700; }
.nexo-native-product__meta > .nexo-inline-icon { width: 17px; height: 17px; margin-top: 4px; color: var(--nexo-green-dark); flex: 0 0 auto; }

/* Portafolio: un solo bloque oscuro, líneas separadas. */
.nexo-native-portfolio { padding: 106px 0; background: var(--nexo-navy-dark); color: #fff; }
.nexo-native-portfolio .nexo-native-eyebrow { color: #80d77c; }
.nexo-native-portfolio__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr);
    gap: clamp(64px, 9vw, 130px);
    align-items: start;
}
.nexo-native-portfolio h2 { color: #fff; font-size: clamp(38px, 4.4vw, 58px); }
.nexo-native-portfolio__copy p { max-width: 570px; margin: 25px 0 0; color: rgba(255,255,255,.67); font-size: 15px; line-height: 1.75; }
.nexo-native-portfolio__lines { border-top: 1px solid rgba(255,255,255,.18); }
.nexo-native-portfolio__lines > * {
    min-height: 116px;
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    color: #fff;
    text-decoration: none;
}
.nexo-native-portfolio__lines > a { transition: background .2s ease, padding .2s ease; }
.nexo-native-portfolio__lines > a:hover { padding-inline: 12px; background: rgba(255,255,255,.035); }
.nexo-native-portfolio__lines span { color: #7bd477; font-size: 14px; font-weight: 900; letter-spacing: .1em; }
.nexo-native-portfolio__lines strong { font-size: 23px; }
.nexo-native-portfolio__lines small { color: rgba(255,255,255,.53); font-size: 14px; }


/* CTA final con fotografía, no caja verde genérica. */
.nexo-native-quote {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--nexo-navy-dark);
    color: #fff;
}
.nexo-native-quote__media,
.nexo-native-quote__overlay { position: absolute; inset: 0; }
.nexo-native-quote__image { width: 100%; height: 100%; display: block; object-fit: cover; }
.nexo-native-quote__overlay {
    background: linear-gradient(90deg, rgba(5,35,53,.95) 0%, rgba(5,35,53,.88) 43%, rgba(5,35,53,.47) 72%, rgba(5,35,53,.20) 100%);
}
.nexo-native-quote__content { position: relative; z-index: 2; padding-block: 88px; }
.nexo-native-quote .nexo-native-eyebrow { color: #8bdf87; }
.nexo-native-quote h2 { max-width: 770px; color: #fff; font-size: clamp(42px, 5.3vw, 68px); }
.nexo-native-quote p { max-width: 600px; margin: 23px 0 30px; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.7; }

@media (max-width: 1080px) {
    .nexo-native-hero { grid-template-columns: .95fr 1.05fr; min-height: 610px; }
    .nexo-native-hero__media { min-height: 610px; }
    .nexo-native-hero h1 { font-size: clamp(54px, 6.5vw, 76px); }
    .nexo-native-intro__grid { gap: 58px; }
    .nexo-native-intro__visual { min-height: 500px; padding-right: 64px; }
    .nexo-native-intro__photo--main { height: 490px; }
    .nexo-native-intro__photo--small { width: 205px; height: 225px; }
    .nexo-native-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .nexo-native-portfolio__grid { grid-template-columns: 1fr 1fr; gap: 58px; }
}

@media (max-width: 820px) {
    .nexo-native-container { width: min(100% - 36px, var(--nexo-container)); }
    .nexo-native-hero { grid-template-columns: 1fr; }
    .nexo-native-hero__copy {
        order: 2;
        padding: 58px 18px 62px;
        justify-content: center;
    }
    .nexo-native-hero__copy-inner { width: min(100%, 720px); }
    .nexo-native-hero__media { order: 1; min-height: 470px; }
    .nexo-native-photo-note { left: 18px; bottom: 18px; }
    .nexo-native-intro { padding: 84px 0 90px; }
    .nexo-native-intro__grid { grid-template-columns: 1fr; gap: 64px; }
    .nexo-native-intro__visual { min-height: 470px; max-width: 650px; padding-right: 72px; }
    .nexo-native-intro__photo--main { height: 460px; }
    .nexo-native-values { padding: 72px 0 76px; }
    .nexo-native-values__list article > div { grid-template-columns: 180px 1fr; }
    .nexo-native-products { padding: 82px 0 90px; }
    .nexo-native-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 14px; }
    .nexo-native-portfolio { padding: 80px 0; }
    .nexo-native-portfolio__grid { grid-template-columns: 1fr; gap: 46px; }
    .nexo-native-coverage { padding: 68px 0; }
    .nexo-native-coverage__inner { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .nexo-native-quote { min-height: 470px; }
}

@media (max-width: 560px) {
    .nexo-native-container { width: calc(100% - 30px); }
    .nexo-native-eyebrow { margin-bottom: 11px; font-size: 14px; }
    .nexo-native-hero__media { min-height: 360px; }
    .nexo-native-hero__copy { padding: 42px 15px 48px; }
    .nexo-native-hero h1 { font-size: clamp(44px, 13.6vw, 62px); }
    .nexo-native-hero__lead { margin: 22px 0 25px; font-size: 15px; }
    .nexo-native-actions { display: grid; grid-template-columns: 1fr; }
    .nexo-native-button { width: 100%; }
    .nexo-native-hero__markets { margin-top: 28px; gap: 7px 12px; font-size: 14px; }
    .nexo-native-photo-note { max-width: 210px; left: 14px; bottom: 14px; padding: 10px 12px; }
    .nexo-native-intro { padding: 66px 0 72px; }
    .nexo-native-intro__grid { gap: 46px; }
    .nexo-native-intro__visual { min-height: 360px; padding-right: 44px; }
    .nexo-native-intro__photo--main { height: 350px; }
    .nexo-native-intro__photo--small { width: 145px; height: 168px; right: 0; bottom: -20px; border-width: 7px; }
    .nexo-native-intro h2,
    .nexo-native-values h2,
    .nexo-native-products h2,
    .nexo-native-portfolio h2,
    .nexo-native-coverage h2 { font-size: 35px; }
    .nexo-native-intro__content > p { margin-top: 18px; font-size: 15px; }
    .nexo-native-values { padding: 60px 0 62px; }
    .nexo-native-values__head { margin-bottom: 34px; }
    .nexo-native-values__list article { min-height: 105px; grid-template-columns: 40px 1fr; gap: 10px; }
    .nexo-native-values__list article > div { display: block; }
    .nexo-native-values__list h3 { font-size: 19px; }
    .nexo-native-values__list p { margin-top: 5px; font-size: 14px; }
    .nexo-native-products { padding: 66px 0 72px; }
    .nexo-native-products__head { align-items: flex-start; flex-direction: column; gap: 15px; margin-bottom: 30px; }
    .nexo-native-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 10px; }
    .nexo-native-product__image { aspect-ratio: 1 / 1.06; }
    .nexo-native-product__meta { min-height: 58px; padding-top: 10px; gap: 7px; }
    .nexo-native-product__meta strong { font-size: 14px; }
    .nexo-native-product__meta span { font-size: 14px; }
    .nexo-native-product__meta > .nexo-inline-icon { width: 14px; height: 14px; }
    .nexo-native-portfolio { padding: 64px 0 68px; }
    .nexo-native-portfolio__grid { gap: 34px; }
    .nexo-native-portfolio__copy p { font-size: 14px; }
    .nexo-native-portfolio__lines > * { min-height: 90px; grid-template-columns: 38px 1fr; gap: 10px; }
    .nexo-native-portfolio__lines strong { font-size: 18px; }
    .nexo-native-portfolio__lines small { display: none; }
    .nexo-native-coverage { padding: 56px 0; }
    .nexo-native-coverage p { font-size: 14px; }
    .nexo-native-quote { min-height: 490px; }
    .nexo-native-quote__overlay { background: rgba(5,35,53,.79); }
    .nexo-native-quote__content { padding-block: 65px; }
    .nexo-native-quote h2 { font-size: 39px; }
    .nexo-native-quote p { font-size: 14px; }
}


/* =========================================================
   v0.8.0 — Portada rotativa, español y mínimo tipográfico
   ========================================================= */
body.nexo-foods-theme { font-size: 14px; }
.nexo-logo-image { display: block; width: auto; height: auto; max-width: 100%; }
.nexo-brand .nexo-logo-image { width: 112px; }
.nexo-footer-logo .nexo-logo-image { width: 118px; }

.nexo-native-hero--slider {
    position: relative;
    display: block;
    min-height: 680px;
    overflow: hidden;
    background: var(--nexo-navy-dark);
}
.nexo-native-hero-track { position: relative; min-height: 680px; }
.nexo-native-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
    min-height: 680px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .65s ease, visibility .65s ease;
}
.nexo-native-hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}
.nexo-native-hero__title {
    max-width: 610px;
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 6.3vw, 92px);
    line-height: .92;
    letter-spacing: -.058em;
    font-weight: 820;
}
.nexo-native-hero-controls {
    position: absolute;
    z-index: 6;
    left: max(24px, calc((100vw - var(--nexo-container)) / 2));
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 13px;
}
.nexo-native-hero-arrow {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 50%;
    background: rgba(5,35,53,.28);
    color: #fff;
    cursor: pointer;
}
.nexo-native-hero-arrow:hover,
.nexo-native-hero-arrow:focus-visible { background: #fff; color: var(--nexo-navy); }
.nexo-native-hero-arrow .nexo-inline-icon { width: 18px; height: 18px; }
.nexo-native-hero-dots { display: flex; align-items: center; gap: 8px; }
.nexo-native-hero-dot {
    width: 28px;
    height: 4px;
    min-width: 28px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.34);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}
.nexo-native-hero-dot.is-active { width: 44px; background: #83dc80; }

/* Portafolio comercial se retira de la portada en v0.8.0. */
.nexo-native-portfolio { display: none !important; }

/* No se permiten textos de interfaz menores a 14 px. */
.nexo-foods-theme .nexo-native-eyebrow,
.nexo-foods-theme .nexo-native-hero__markets,
.nexo-foods-theme .nexo-native-photo-note span,
.nexo-foods-theme .nexo-native-photo-note strong,
.nexo-foods-theme .nexo-native-values__list article > span,
.nexo-foods-theme .nexo-native-product__meta span,
.nexo-foods-theme .nexo-product-card__category,
.nexo-foods-theme .nexo-product-card__title span,
.nexo-foods-theme .nexo-product-card__cta,
.nexo-foods-theme .nexo-product-single__trust span,
.nexo-foods-theme .nexo-footer-menu a,
.nexo-foods-theme .nexo-form-privacy,
.nexo-foods-theme .nexo-product-option__name,
.nexo-foods-theme .nexo-catalog-hero__kicker,
.nexo-foods-theme .nexo-catalog-count,
.nexo-foods-theme .nexo-field > span,
.nexo-foods-theme .nexo-product-fieldset legend,
.nexo-foods-theme .nexo-product-fieldset__hint { font-size: 14px; }

@media (max-width: 1080px) {
    .nexo-native-hero--slider,
    .nexo-native-hero-track,
    .nexo-native-hero-slide { min-height: 610px; }
    .nexo-native-hero__title { font-size: clamp(54px, 6.5vw, 76px); }
}

@media (max-width: 820px) {
    .nexo-native-hero--slider,
    .nexo-native-hero-track { min-height: 0; }
    .nexo-native-hero-slide {
        min-height: 0;
        grid-template-columns: 1fr;
    }
    .nexo-native-hero-slide.is-active { display: grid; }
    .nexo-native-hero__media { order: 1; min-height: 430px; }
    .nexo-native-hero__copy { order: 2; padding-bottom: 92px; }
    .nexo-native-hero-controls { left: 18px; bottom: 24px; }
}

@media (max-width: 560px) {
    .nexo-brand .nexo-logo-image { width: 96px; }
    .nexo-footer-logo .nexo-logo-image { width: 108px; }
    .nexo-native-hero__media { min-height: 340px; }
    .nexo-native-hero__copy { padding: 40px 15px 88px; }
    .nexo-native-hero h1,
    .nexo-native-hero__title { font-size: clamp(42px, 12.8vw, 58px); }
    .nexo-native-hero-controls { left: 15px; right: 15px; bottom: 22px; justify-content: space-between; }
    .nexo-native-hero-dots { flex: 1; justify-content: center; }
    .nexo-native-hero-dot { width: 22px; min-width: 22px; }
    .nexo-native-hero-dot.is-active { width: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    .nexo-native-hero-slide { transition: none; }
}

/* =========================================================
   v0.8.1 — Hero más compacto + ritmo vertical del Home
   ========================================================= */
@media (min-width: 821px) {
    .nexo-native-hero--slider,
    .nexo-native-hero-track,
    .nexo-native-hero-slide {
        min-height: 560px;
    }

    .nexo-native-hero-slide {
        grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    }

    .nexo-native-hero__copy {
        padding-top: 58px;
        padding-bottom: 72px;
        padding-right: clamp(34px, 4vw, 64px);
    }

    .nexo-native-hero__copy-inner {
        width: min(100%, 610px);
    }

    .nexo-native-hero h1,
    .nexo-native-hero__title {
        max-width: 600px;
        font-size: clamp(48px, 4.35vw, 68px);
        line-height: .98;
        letter-spacing: -.047em;
    }

    .nexo-native-hero__lead {
        max-width: 590px;
        margin: 22px 0 25px;
        font-size: 16px;
        line-height: 1.62;
    }

    .nexo-native-hero__media {
        min-height: 560px;
    }

    .nexo-native-hero-controls {
        bottom: 22px;
    }
}

/* Espaciado compacto después del catálogo destacado. */
.nexo-native-products {
    padding-top: 88px;
    padding-bottom: 52px;
}
.nexo-native-products__head {
    margin-bottom: 34px;
}

@media (max-width: 1080px) and (min-width: 821px) {
    .nexo-native-hero--slider,
    .nexo-native-hero-track,
    .nexo-native-hero-slide,
    .nexo-native-hero__media {
        min-height: 530px;
    }

    .nexo-native-hero h1,
    .nexo-native-hero__title {
        font-size: clamp(46px, 5vw, 60px);
    }
}

@media (max-width: 820px) {
    .nexo-native-hero__media { min-height: 390px; }
    .nexo-native-hero__copy { padding-top: 44px; padding-bottom: 86px; }
    .nexo-native-hero h1,
    .nexo-native-hero__title {
        font-size: clamp(40px, 10.5vw, 56px);
        line-height: 1;
    }
    .nexo-native-hero__lead { margin: 18px 0 22px; }
    .nexo-native-products { padding-top: 68px; padding-bottom: 40px; }
    .nexo-native-coverage { padding-top: 48px; padding-bottom: 54px; }
}

@media (max-width: 560px) {
    .nexo-native-hero__media { min-height: 300px; }
    .nexo-native-hero__copy { padding: 34px 15px 82px; }
    .nexo-native-hero h1,
    .nexo-native-hero__title { font-size: clamp(38px, 11vw, 50px); }
    .nexo-native-products { padding-top: 56px; padding-bottom: 32px; }
    .nexo-native-coverage { padding-top: 42px; padding-bottom: 48px; }
}


/* ==========================================================
   v0.8.2 — Hero sin flechas + iconografía SVG en Cómo trabajamos
   ========================================================== */
.nexo-native-hero-controls {
    gap: 0;
}
.nexo-native-hero-arrow {
    display: none !important;
}
.nexo-native-hero-dots {
    gap: 9px;
}
.nexo-native-values__list article {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 28px;
}
.nexo-native-values__icon {
    width: 52px;
    height: 52px;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(52, 140, 58, .22);
    border-radius: 12px;
    background: #fff;
    color: var(--nexo-green-dark);
}
.nexo-native-values__icon .nexo-value-svg {
    width: 27px;
    height: 27px;
    display: block;
}
.nexo-native-values__content {
    display: grid !important;
    grid-template-columns: minmax(220px, .45fr) 1fr !important;
    align-items: center !important;
    gap: 34px !important;
}
.nexo-native-values__title {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 12px;
}
.nexo-native-values__title > span {
    color: var(--nexo-green-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
}
.nexo-native-values__content > p {
    margin: 0;
}

@media (max-width: 980px) {
    .nexo-native-values__list article {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 20px;
    }
    .nexo-native-values__icon {
        width: 46px;
        height: 46px;
    }
    .nexo-native-values__content {
        grid-template-columns: minmax(180px, .52fr) 1fr !important;
        gap: 22px !important;
    }
}

@media (max-width: 720px) {
    .nexo-native-hero-controls {
        justify-content: flex-start;
    }
    .nexo-native-hero-dots {
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    .nexo-native-values__list article {
        min-height: 118px;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0;
    }
    .nexo-native-values__icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    .nexo-native-values__icon .nexo-value-svg {
        width: 24px;
        height: 24px;
    }
    .nexo-native-values__content {
        display: block !important;
    }
    .nexo-native-values__title {
        grid-template-columns: 36px 1fr;
        gap: 8px;
    }
    .nexo-native-values__content > p {
        margin-top: 7px;
    }
}

/* ==========================================================
   v0.8.3 — Corrección iconos de Cómo trabajamos + aire del hero
   ========================================================== */

/*
 * La regla histórica `.nexo-native-values__list article > div` también
 * alcanzaba al contenedor del icono y le imponía una grilla interna de dos
 * columnas. Eso hacía que el SVG se desbordara y quedara fuera del recuadro.
 */
.nexo-native-values__icon {
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 0 !important;
    min-width: 52px;
    overflow: hidden;
}
.nexo-native-values__icon .nexo-value-svg {
    position: static !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    transform: none !important;
    flex: 0 0 auto;
}

/* Más respiración alrededor del contenido del hero en desktop. */
@media (min-width: 821px) {
    .nexo-native-hero-slide {
        grid-template-columns: minmax(0, .90fr) minmax(0, 1.10fr);
    }

    .nexo-native-hero__copy {
        justify-content: flex-start;
        padding-top: 72px;
        padding-right: clamp(58px, 5vw, 86px);
        padding-bottom: 74px;
        padding-left: max(44px, calc((100vw - var(--nexo-container)) / 2 + 24px));
    }

    .nexo-native-hero__copy-inner {
        width: min(100%, 535px);
    }

    .nexo-native-hero h1,
    .nexo-native-hero__title {
        max-width: 520px;
        font-size: clamp(47px, 4.05vw, 62px);
        line-height: 1.01;
    }

    .nexo-native-hero__lead {
        max-width: 520px;
    }

    .nexo-native-hero-controls {
        left: max(44px, calc((100vw - var(--nexo-container)) / 2 + 24px));
    }
}

@media (max-width: 820px) {
    .nexo-native-hero__copy {
        padding-left: 28px;
        padding-right: 28px;
    }
    .nexo-native-hero-controls {
        left: 28px;
    }
}

@media (max-width: 560px) {
    .nexo-native-hero__copy {
        padding-left: 22px;
        padding-right: 22px;
    }
    .nexo-native-hero-controls {
        left: 22px;
    }
    .nexo-native-values__icon {
        min-width: 44px;
    }
}

/* ==========================================================
   v0.8.5 — Sin zonas de cobertura
   ========================================================== */
.nexo-contact-hero {
    position: relative;
    overflow: hidden;
    background: var(--nexo-navy-dark);
    color: #fff;
}
.nexo-contact-hero::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -145px;
    bottom: -295px;
    border: 78px solid rgba(67,170,70,.12);
    border-radius: 50%;
    pointer-events: none;
}
.nexo-contact-hero__inner {
    position: relative;
    z-index: 1;
    width: min(var(--nexo-container), calc(100% - 48px));
    min-height: 360px;
    margin: 0 auto;
    padding: 72px 0 66px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: 80px;
    align-items: end;
}
.nexo-contact-hero__copy { max-width: 720px; }
.nexo-contact-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--nexo-green-dark);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.nexo-contact-hero .nexo-contact-eyebrow { color: #78d276; }
.nexo-contact-hero h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 74px);
    line-height: .98;
    letter-spacing: -.045em;
}
.nexo-contact-hero__copy > p {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.7;
}
.nexo-contact-hero__details {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.18);
}
.nexo-contact-detail {
    min-width: 0;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
a.nexo-contact-detail:hover strong { color: #78d276; }
.nexo-contact-detail__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(120,210,118,.38);
    border-radius: 50%;
    color: #78d276;
}
.nexo-contact-detail__icon svg { width: 21px; height: 21px; display: block; }
.nexo-contact-detail small,
.nexo-contact-detail strong { display: block; }
.nexo-contact-detail small {
    margin-bottom: 4px;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    font-weight: 700;
}
.nexo-contact-detail strong {
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 1.45;
    transition: color .18s ease;
}

.nexo-contact-main { background: #fff; }
.nexo-contact-layout {
    width: min(var(--nexo-container), calc(100% - 48px));
    margin: 0 auto;
    padding: 78px 0 92px;
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr);
    gap: 76px;
    align-items: start;
}
.nexo-contact-sidebar { padding-top: 10px; }
.nexo-contact-sidebar h2 {
    max-width: 470px;
    margin: 0;
    color: var(--nexo-navy);
    font-size: clamp(36px, 4.2vw, 54px);
    line-height: 1.02;
    letter-spacing: -.042em;
}
.nexo-contact-sidebar > p {
    max-width: 500px;
    margin: 22px 0 0;
    color: var(--nexo-muted);
    font-size: 15px;
    line-height: 1.75;
}
.nexo-contact-quote-link {
    max-width: 500px;
    margin-top: 34px;
    padding: 20px 22px;
    border: 1px solid rgba(52,140,58,.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: #f5faf5;
    color: var(--nexo-navy);
    text-decoration: none;
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.nexo-contact-quote-link:hover {
    border-color: rgba(52,140,58,.45);
    background: #eff8ef;
    transform: translateY(-2px);
}
.nexo-contact-quote-link small,
.nexo-contact-quote-link strong { display: block; }
.nexo-contact-quote-link small {
    margin-bottom: 4px;
    color: var(--nexo-muted);
    font-size: 14px;
}
.nexo-contact-quote-link strong { font-size: 16px; }
.nexo-contact-quote-link .nexo-inline-icon { color: var(--nexo-green-dark); }

.nexo-contact-form-card {
    padding: 34px;
    border: 1px solid var(--nexo-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(6,40,62,.07);
}
.nexo-contact-submit {
    min-height: 50px;
    margin-top: 24px;
    padding: 13px 22px;
    border: 0;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--nexo-green);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nexo-contact-submit:hover {
    background: var(--nexo-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(52,140,58,.18);
}
.nexo-contact-submit .nexo-inline-icon { width: 17px; height: 17px; }

@media (max-width: 980px) {
    .nexo-contact-hero__inner {
        grid-template-columns: 1fr;
        gap: 42px;
        align-items: start;
    }
    .nexo-contact-hero__details { max-width: 640px; }
    .nexo-contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .nexo-contact-sidebar { max-width: 680px; }
}

@media (max-width: 620px) {
    .nexo-contact-hero__inner,
    .nexo-contact-layout {
        width: min(100% - 32px, var(--nexo-container));
    }
    .nexo-contact-hero__inner {
        min-height: 0;
        padding: 54px 0 48px;
        gap: 34px;
    }
    .nexo-contact-hero h1 { font-size: clamp(42px, 13vw, 58px); }
    .nexo-contact-hero__copy > p { font-size: 15px; }
    .nexo-contact-detail { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
    .nexo-contact-detail__icon { width: 38px; height: 38px; }
    .nexo-contact-layout { padding: 54px 0 68px; }
    .nexo-contact-form-card { padding: 24px 18px; border-radius: 14px; }
    .nexo-contact-submit { width: 100%; }
}
