/* === base/tokens.css === */
:root {
    --cwd-color-bg-dark: #1b1c23;
    --cwd-color-bg-dark-2: #17181f;
    --cwd-color-accent-green: #16c05f;
    --cwd-color-accent-green-2: #12a551;
    --cwd-color-accent-blue: #264470;
    --cwd-color-text: #11131a;
    --cwd-color-soft: #6a7185;
    --cwd-color-border: #e8ecf3;
    --cwd-color-card: #ffffff;
    --cwd-color-card-alt: #f6f8fc;
    --cwd-color-text-on-dark: #d7d8df;
    --cwd-shadow-soft: 0 20px 50px rgba(12, 19, 35, 0.10);
    --cwd-radius-xl: 28px;
    --cwd-radius-lg: 20px;
    --cwd-radius-md: 14px;
    --cwd-radius-sm: 10px;
    --cwd-container: 1240px;
    --cwd-transition: 180ms ease;
}

/* === base/mobile-overflow-guard.css === */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

body.cwd-hf-runtime {
    width: 100%;
    max-width: 100%;
}

body.cwd-hf-runtime .cwd-frame-slot {
    max-width: 100%;
}

@media (max-width: 680px) {
    .cwd-header__mobile-bar {
        min-width: 0;
        gap: 10px;
    }

    .cwd-header__logo,
    .cwd-header__brand {
        min-width: 0;
        max-width: calc(100vw - 132px);
    }

    .cwd-header__mobile-actions {
        flex-shrink: 0;
        gap: 8px;
    }

    .cwd-header .cwd-header__logo-image {
        max-width: min(var(--cwd-header-logo-mobile-width, var(--cwd-header-logo-width, 190px)), calc(100vw - 132px)) !important;
        max-height: min(var(--cwd-header-logo-mobile-height, var(--cwd-header-logo-height, 42px)), 72px) !important;
        object-fit: contain;
    }

    .cwd-footer__logo-image {
        width: var(--cwd-footer-logo-mobile-width, var(--cwd-footer-logo-width, 170px)) !important;
        max-height: var(--cwd-footer-logo-mobile-height, var(--cwd-footer-logo-height, 90px)) !important;
        object-fit: contain;
    }
}


/* === base/full-width-templates.css === */
body.cwd-hf-runtime #main-content.clienty-home-main,
body.cwd-hf-runtime #main-content.clienty-about-main,
body.cwd-hf-runtime .clienty-home-main,
body.cwd-hf-runtime .clienty-about-main,
body.cwd-hf-runtime main.eag-page {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
}

body.cwd-hf-runtime .clienty-home-html,
body.cwd-hf-runtime .clienty-about-html,
body.cwd-hf-runtime .clienty-home-html > .eag-home,
body.cwd-hf-runtime .clienty-home-html > .eag-page,
body.cwd-hf-runtime .clienty-about-html > .eag-page,
body.cwd-hf-runtime .clienty-about-html > .eag-home,
body.cwd-hf-runtime .eag-home,
body.cwd-hf-runtime .eag-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

body.cwd-hf-runtime .clienty-home-html > .eag-home,
body.cwd-hf-runtime .clienty-about-html > .eag-page {
    overflow: hidden;
}

body.cwd-hf-runtime .eag-hero,
body.cwd-hf-runtime .eag-final-cta,
body.cwd-hf-runtime .eag-contact-hero {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* === base/frame.css === */
body.cwd-hf-runtime {
    margin: 0;
}

.cwd-frame-slot {
    position: relative;
    z-index: 30;
}

.cwd-header,
.cwd-footer,
.cwd-header *,
.cwd-footer * {
    box-sizing: border-box;
}

.cwd-header a,
.cwd-footer a {
    color: inherit;
    text-decoration: none;
}

.cwd-header img,
.cwd-footer img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cwd-container {
    width: min(calc(100% - 32px), var(--cwd-container));
    margin: 0 auto;
}

.cwd-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    transition: transform var(--cwd-transition), background var(--cwd-transition), color var(--cwd-transition), border-color var(--cwd-transition), box-shadow var(--cwd-transition);
}

.cwd-pill svg,
.cwd-icon-link svg,
.cwd-menu-toggle svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.cwd-pill:hover,
.cwd-icon-link:hover,
.cwd-menu-toggle:hover {
    transform: translateY(-1px);
}

.cwd-pill--green {
    color: #fff;
    background: linear-gradient(180deg, var(--cwd-color-accent-green) 0%, var(--cwd-color-accent-green-2) 100%);
}

.cwd-pill--dark {
    color: #fff;
    background: linear-gradient(180deg, var(--cwd-color-bg-dark) 0%, var(--cwd-color-bg-dark-2) 100%);
}

.cwd-pill--outline {
    color: var(--cwd-color-text);
    background: #fff;
    border: 1px solid var(--cwd-color-border);
}

.cwd-pill--full {
    width: 100%;
}

/* === base/transition.css === */
body.cwd-hf-only .cwd-frame-slot--header,
body.cwd-hf-only .cwd-frame-slot--footer {
    display: block;
}

body.cwd-hf-only .site-main,
body.cwd-hf-only main,
body.cwd-hf-only #content {
    min-height: 0;
}

body.cwd-hf-only .cwd-frame-slot--header {
    position: relative;
    z-index: 40;
}

body.cwd-hf-only .cwd-frame-slot--footer {
    position: relative;
    z-index: 30;
}

/* === components/header.css === */
.cwd-header {
    position: relative;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid rgba(37, 48, 80, 0.08);
}

.cwd-header .cwd-container {
    width: min(calc(100% - 36px), 1840px);
    max-width: 1840px;
    margin: 0 auto;
}

.cwd-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 70px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.cwd-header__mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 66px;
}

.cwd-header__brand {
    min-width: 0;
}

.cwd-header__logo {
    display: inline-flex;
    align-items: center;
}

.cwd-header__logo-image {
    display: block;
    width: auto;
    max-width: 112px;
    max-height: 42px;
    height: auto;
    object-fit: contain;
}

.cwd-brand-text {
    font-weight: 800;
    font-size: 22px;
}

.cwd-header__nav-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: visible;
}

.cwd-nav,
.cwd-mobile-nav {
    display: block;
    width: 100%;
}

.cwd-nav__list,
.cwd-mobile-nav__list,
.cwd-footer-links,
.cwd-footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cwd-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px 3px;
    min-width: 0;
    max-width: 100%;
}

.cwd-nav__list > li {
    position: relative;
    flex: 0 0 auto;
}

.cwd-nav__list a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    color: #253050;
    font-size: clamp(16px, 0.88vw, 17px);
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    border-radius: 14px;
    letter-spacing: -0.01em;
}

.cwd-nav__list a:hover,
.cwd-nav__list .current-menu-item > a,
.cwd-nav__list .current-menu-ancestor > a {
    background: #f1f4f8;
}

.cwd-nav .menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    opacity: 0.75;
}

.cwd-nav .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    z-index: 60;
    min-width: 236px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.cwd-nav .sub-menu li {
    display: block;
}

.cwd-nav .sub-menu a {
    display: flex;
    min-height: 0;
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 12px;
}

.cwd-nav .menu-item-has-children:hover > .sub-menu,
.cwd-nav .menu-item-has-children:focus-within > .sub-menu {
    display: block;
}

.cwd-header__actions,
.cwd-header__mobile-actions,
.cwd-mobile-quick-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cwd-header__actions {
    flex-wrap: nowrap;
    margin-left: auto;
}

.cwd-header__actions > *,
.cwd-header__mobile-actions > * {
    flex-shrink: 0;
}

.cwd-icon-link,
.cwd-menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(37, 48, 80, 0.14);
    background: #ffffff;
    color: #253050;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.cwd-icon-link svg,
.cwd-menu-toggle svg {
    width: 18px;
    height: 18px;
}

.cwd-icon-link:hover,
.cwd-menu-toggle:hover {
    background: #f6f8fb;
}

.cwd-icon-link__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #16a34a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.cwd-icon-link--bag {
    border-color: rgba(37, 48, 80, 0.10);
}

.cwd-cart-total {
    display: inline-flex;
    align-items: center;
    color: #253050;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.cwd-pill--whatsapp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 18px;
    border: 1.5px solid #22c55e;
    border-radius: 999px;
    background: #ffffff;
    color: #16a34a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.cwd-pill--whatsapp-outline:hover {
    background: #f3fff7;
}

.cwd-pill--whatsapp-outline svg {
    width: 18px;
    height: 18px;
}

.cwd-mobile-menu {
    border-top: 1px solid rgba(16, 24, 40, 0.08);
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.cwd-mobile-nav__list {
    display: grid;
    gap: 10px;
    padding: 12px 0 0;
}

.cwd-mobile-nav__list a {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f7f8fb;
    color: #253050;
    font-weight: 600;
}

.cwd-mobile-nav__list .menu-item-has-children {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 8px;
}

.cwd-mobile-nav__list .menu-item-has-children > a {
    grid-column: 1;
}

.cwd-mobile-submenu-toggle {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(37, 48, 80, 0.14);
    border-radius: 12px;
    background: #f7f8fb;
    color: #253050;
    cursor: pointer;
}

.cwd-mobile-submenu-toggle::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.18s ease;
}

.cwd-mobile-nav__list .menu-item-has-children.is-open > .cwd-mobile-submenu-toggle::before {
    transform: rotate(180deg);
}

.cwd-mobile-nav__list .sub-menu {
    grid-column: 1 / -1;
    display: none;
    gap: 10px;
    padding: 4px 0 0 18px;
}

.cwd-mobile-nav__list .menu-item-has-children.is-open > .sub-menu {
    display: grid;
}

.cwd-mobile-quick-links {
    display: grid;
    gap: 12px;
    padding: 18px 0 8px;
}

.cwd-cart-total--mobile {
    font-size: 14px;
}

@media (max-width: 1760px) {
    .cwd-header .cwd-container {
        width: min(calc(100% - 28px), 1760px);
    }

    .cwd-header__inner {
        gap: 15px;
    }

    .cwd-header__logo-image {
        max-width: 108px;
        max-height: 40px;
    }

    .cwd-nav__list a {
        padding: 8px 9px;
        font-size: 16px;
    }
}

@media (max-width: 1600px) {
    .cwd-header__logo-image {
        max-width: 106px;
        max-height: 40px;
    }

    .cwd-nav__list {
        gap: 4px 2px;
    }

    .cwd-nav__list a {
        padding: 8px 8px;
        font-size: 15.5px;
    }

    .cwd-pill--whatsapp-outline {
        padding: 10px 16px;
        font-size: 14px;
    }

    .cwd-cart-total {
        font-size: 15px;
    }
}

@media (max-width: 1420px) {
    .cwd-header__logo-image {
        max-width: 96px;
        max-height: 38px;
    }

    .cwd-nav__list a {
        padding: 7px 6px;
        font-size: 14.5px;
    }

    .cwd-pill--whatsapp-outline span {
        display: none;
    }

    .cwd-pill--whatsapp-outline {
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%;
    }
}

@media (max-width: 1260px) {
    .cwd-cart-total {
        display: none;
    }
}

@media (max-width: 1120px) {
    .cwd-header__inner {
        gap: 12px;
    }

    .cwd-nav__list a {
        padding: 7px 6px;
        font-size: 13px;
    }
}

@media (max-width: 980px) {
    .cwd-header--desktop {
        display: none;
    }
}

@media (min-width: 981px) {
    .cwd-header--mobile {
        display: none;
    }
}

@media (max-width: 680px) {
    .cwd-header .cwd-container {
        width: min(calc(100% - 24px), 100%);
    }

    .cwd-header__mobile-bar {
        min-height: 66px;
        gap: 12px;
    }

    .cwd-header__logo-image {
        max-width: 96px;
        max-height: 38px;
    }

    .cwd-cart-total--mobile {
        display: none;
    }
}

/* === components/footer.css === */
.cwd-footer {
    margin-top: 72px;
    background: linear-gradient(180deg, var(--cwd-color-bg-dark) 0%, var(--cwd-color-bg-dark-2) 100%);
    color: var(--cwd-color-text-on-dark);
}

.cwd-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

.cwd-footer__logo {
    display: inline-flex;
    align-items: center;
}

.cwd-footer__logo-image {
    width: 170px;
    max-width: 100%;
    height: auto;
    display: block;
}

.cwd-footer__cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cwd-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    padding: 30px 0 34px;
}

.cwd-footer__col h3 {
    margin: 0 0 18px;
    color: #8f92a3;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cwd-footer-links {
    display: grid;
    gap: 12px;
}

.cwd-footer-links__link,
.cwd-footer-links__text {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.45;
}

.cwd-footer-links__link:hover {
    color: #fff;
}

.cwd-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.cwd-footer-social__link,
.cwd-footer-social a {
    color: #8f92a3;
    font-size: 15px;
}

.cwd-footer-social__link:hover,
.cwd-footer-social a:hover {
    color: #fff;
}

.cwd-footer__bottom {
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.09);
}

.cwd-footer__copy {
    color: #8f92a3;
    font-size: 14px;
    line-height: 1.5;
}

.cwd-footer--mobile {
    padding: 28px 0 24px;
}

.cwd-footer__mobile-top {
    padding-bottom: 14px;
}

.cwd-footer__cta-group--mobile {
    margin-top: 18px;
}

.cwd-footer__accordion {
    border-top: 1px solid rgba(255,255,255,0.09);
}

.cwd-footer-accordion {
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

.cwd-footer-accordion summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cwd-footer-accordion summary::-webkit-details-marker {
    display: none;
}

.cwd-footer-accordion summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #8f92a3;
    font-size: 22px;
    font-weight: 400;
}

.cwd-footer-accordion[open] summary::after {
    content: '−';
}

.cwd-footer-accordion__body {
    padding: 0 0 18px;
}

.cwd-footer__bottom--mobile {
    padding-bottom: 0;
    border-top: 0;
}

@media (max-width: 980px) {
    .cwd-footer--desktop {
        display: none;
    }

    .cwd-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 981px) {
    .cwd-footer--mobile {
        display: none;
    }
}

@media (max-width: 680px) {
    .cwd-footer__columns {
        grid-template-columns: 1fr;
    }

    .cwd-footer__cta-group {
        width: 100%;
    }

    .cwd-footer__top {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* === ClientyWeb 1.1 classic footer and configurable design === */
.cwd-logo-text {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-weight: 800;
    font-size: clamp(20px, 1.4vw, 28px);
    letter-spacing: -0.03em;
}

.cwd-footer-reviews {
    padding: 28px 0 18px;
    background: #fff;
    color: #111827;
}

.cwd-footer--classic {
    margin-top: 56px;
    padding: 30px 0 34px;
    background: var(--cwd-footer-bg, #1b1c23);
    color: var(--cwd-footer-text, #fff);
}

.cwd-footer--classic .cwd-container {
    width: min(calc(100% - 32px), 1240px);
}

.cwd-footer__classic-inner {
    display: grid;
    justify-items: center;
    gap: 20px;
    text-align: center;
}

.cwd-footer__classic-brand {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.cwd-footer__classic-brand p {
    margin: 0;
    opacity: .88;
}

.cwd-footer__grant-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0 0;
}

.cwd-footer__grant-logos img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

.cwd-footer-legal,
.cwd-footer__classic-contact,
.cwd-footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cwd-footer-legal__link,
.cwd-footer__classic-contact a,
.cwd-footer-social__link,
.cwd-footer-social a {
    color: var(--cwd-footer-text, #fff);
    opacity: .9;
    font-weight: 600;
    text-decoration: none;
}

.cwd-footer-legal__link:hover,
.cwd-footer__classic-contact a:hover,
.cwd-footer-social__link:hover,
.cwd-footer-social a:hover {
    opacity: 1;
    text-decoration: underline;
}

.cwd-footer__copy {
    color: var(--cwd-footer-text, #fff);
    opacity: .78;
    font-size: .95em;
}

.cwd-footer__copy a {
    color: inherit;
    font-weight: 700;
}

.cwd-floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 18px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    box-shadow: 0 18px 40px rgba(22, 163, 74, .28);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.cwd-floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 48px rgba(22, 163, 74, .34);
}

.cwd-floating-whatsapp svg {
    width: 30px;
    height: 30px;
}

.cwd-legal-company-data,
.cwd-legal-contact-data {
    border: 1px solid rgba(17, 24, 39, .16);
    border-radius: 12px;
    padding: 18px 20px;
    margin: 18px 0;
    background: #fff;
}

.cwd-legal-company-data h3,
.cwd-legal-contact-data h3 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .cwd-footer--classic {
        padding: 28px 0 32px;
    }

    .cwd-footer-legal,
    .cwd-footer__classic-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 12px;
    }

    .cwd-footer-legal__item,
    .cwd-footer__classic-contact a {
        min-width: 0;
        text-align: center;
    }

    .cwd-footer__grant-logos img {
        max-height: 42px;
    }

    .cwd-floating-whatsapp {
        right: 16px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }
}

/* ============================================================
   ClientyWeb · rescate visual de templates heredadas
   Da formato profesional a páginas antiguas que aún imprimen .home-welcome,
   .sections-container, tablas o formularios sin usar las nuevas clases .eag-*.
============================================================ */

body.clientyweb-legacy-page,
body.clientyweb-legacy-page #page,
body.clientyweb-legacy-page .site,
body.clientyweb-legacy-page .site-content,
body.clientyweb-legacy-page #content,
body.clientyweb-legacy-page .content-area,
body.clientyweb-legacy-page #primary,
body.clientyweb-legacy-page #main,
body.clientyweb-legacy-page #main-content.site-main {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: clip;
}

body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) {
    background:
        radial-gradient(circle at top left, rgba(var(--cw-color-primary-rgb,214,168,79),0.16), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
    color: var(--cw-color-text, #182033);
}

body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) > .home-welcome,
body.clientyweb-legacy-page .home-welcome {
    width: 100% !important;
    margin: 0 !important;
    padding: 70px 0 86px !important;
    background:
        radial-gradient(circle at 8% 0%, rgba(var(--cw-color-primary-rgb,214,168,79),0.18), transparent 30%),
        #faf7f1;
}

body.clientyweb-legacy-page .home-welcome > .container,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) > .container,
body.clientyweb-legacy-page .clienty-legacy-container {
    width: min(var(--cw-section-max-width, 1120px), calc(100% - 32px)) !important;
    max-width: 980px !important;
    margin: 0 auto !important;
    padding: 46px !important;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.22) !important;
    border-radius: 32px !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 24px 70px rgba(17,17,17,.08) !important;
}

body.clientyweb-legacy-page .home-welcome > .container:before,
body.clientyweb-legacy-page .clienty-legacy-container:before {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 0 0 24px;
    border-radius: 999px;
    background: var(--cw-color-primary, #d6a84f);
}

body.clientyweb-legacy-page .home-welcome h1,
body.clientyweb-legacy-page .home-welcome h2,
body.clientyweb-legacy-page .home-welcome h3,
body.clientyweb-legacy-page .home-welcome h4,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h1,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h2,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h3,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h4 {
    color: var(--cw-color-dark, #111111);
    letter-spacing: -.035em;
    line-height: 1.08;
}

body.clientyweb-legacy-page .home-welcome h1,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h1 {
    margin: 0 0 24px !important;
    font-size: clamp(38px, 6vw, 68px) !important;
}

body.clientyweb-legacy-page .home-welcome h2,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h2 {
    margin: 42px 0 14px !important;
    padding-top: 28px !important;
    border-top: 1px solid rgba(17,17,17,.08) !important;
    font-size: clamp(28px, 4vw, 44px) !important;
}

body.clientyweb-legacy-page .home-welcome h3,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h3 {
    margin: 32px 0 12px !important;
    font-size: clamp(22px, 3vw, 30px) !important;
}

body.clientyweb-legacy-page .home-welcome p,
body.clientyweb-legacy-page .home-welcome li,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) p,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) li {
    color: var(--cw-color-muted, #667085);
    font-size: 17px;
    line-height: 1.78;
}

body.clientyweb-legacy-page .home-welcome hr,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) hr {
    margin: 36px 0;
    border: 0;
    border-top: 1px solid rgba(17,17,17,.08);
}

body.clientyweb-legacy-page .home-welcome a,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) a {
    color: var(--cw-color-dark, #111111);
    text-decoration-color: rgba(var(--cw-color-primary-rgb,214,168,79),0.75);
    text-underline-offset: 4px;
}

body.clientyweb-legacy-page .home-welcome form,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

body.clientyweb-legacy-page .home-welcome input[type="text"],
body.clientyweb-legacy-page .home-welcome input[type="email"],
body.clientyweb-legacy-page .home-welcome input[type="tel"],
body.clientyweb-legacy-page .home-welcome input[type="number"],
body.clientyweb-legacy-page .home-welcome textarea,
body.clientyweb-legacy-page .home-welcome select,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) input[type="text"],
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) input[type="email"],
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) input[type="tel"],
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) input[type="number"],
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) textarea,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) select {
    width: 100%;
    min-height: 48px;
    padding: 13px 15px;
    border: 1px solid rgba(17,17,17,.12);
    border-radius: 16px;
    background: #ffffff;
    color: var(--cw-color-text, #182033);
    box-shadow: none;
}

body.clientyweb-legacy-page .home-welcome input[type="submit"],
body.clientyweb-legacy-page .home-welcome button,
body.clientyweb-legacy-page .home-welcome .button,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) input[type="submit"],
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) button,
body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) .button {
    min-height: 50px;
    padding: 14px 26px;
    border: 0;
    border-radius: var(--cw-button-radius, 999px);
    background: var(--cw-color-dark, #111111);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(17,17,17,.18);
}

body.clientyweb-legacy-page .sections-container {
    width: min(var(--cw-section-max-width, 1120px), calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

body.clientyweb-legacy-page .sections-container .section {
    margin: 0 !important;
    padding: 30px !important;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.22) !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    color: var(--cw-color-text, #182033) !important;
    box-shadow: 0 18px 45px rgba(17,17,17,.07) !important;
}

body.clientyweb-legacy-page table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 18px;
    background: #ffffff;
}

body.clientyweb-legacy-page th,
body.clientyweb-legacy-page td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(17,17,17,.08);
    text-align: left;
}

body.clientyweb-legacy-page th {
    color: var(--cw-color-dark, #111111);
    background: rgba(var(--cw-color-primary-rgb,214,168,79),0.13);
}

@media (max-width: 980px) {
    body.clientyweb-legacy-page .sections-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    body.clientyweb-legacy-page .home-welcome,
    body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) > .home-welcome {
        padding: 42px 0 56px !important;
    }

    body.clientyweb-legacy-page .home-welcome > .container,
    body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) > .container,
    body.clientyweb-legacy-page .clienty-legacy-container {
        width: min(100% - 24px, var(--cw-section-max-width, 1120px)) !important;
        padding: 26px !important;
        border-radius: 24px !important;
    }

    body.clientyweb-legacy-page .home-welcome h1,
    body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h1 {
        font-size: clamp(34px, 10vw, 46px) !important;
    }

    body.clientyweb-legacy-page .home-welcome h2,
    body.clientyweb-legacy-page #main-content.site-main:not(.eag-page) h2 {
        font-size: clamp(26px, 8vw, 34px) !important;
    }

    body.clientyweb-legacy-page .sections-container {
        width: min(100% - 24px, var(--cw-section-max-width, 1120px));
        padding: 42px 0;
    }
}

/* ============================================================
   ClientyWeb · páginas interiores pro
   Estética reusable para FAQ, Historia, legales y páginas de texto.
============================================================ */

.eag-inner-page,
.eag-faq,
.eag-story,
.eag-legal-page {
    width: 100%;
    color: var(--cw-color-text, #182033);
    background: #faf7f1;
}

.eag-inner-hero {
    padding: 78px 0 48px;
    background:
        radial-gradient(circle at top left, rgba(var(--cw-color-primary-rgb,214,168,79),0.20), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #faf7f1 100%);
}

.eag-inner-hero__content { max-width: 860px; }

.eag-inner-title {
    margin: 12px 0 18px;
    color: var(--cw-color-dark, #111111);
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.eag-inner-lead {
    max-width: 760px;
    margin: 0;
    color: var(--cw-color-muted, #667085);
    font-size: 19px;
    line-height: 1.75;
}

.eag-inner-section { padding: var(--cw-section-padding-desktop, 64px) 0; }

.eag-inner-card {
    background: #ffffff;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.20);
    border-radius: 30px;
    box-shadow: 0 22px 55px rgba(17,17,17,0.07);
}

.eag-inner-rich {
    max-width: 940px;
    margin-inline: auto;
    padding: 46px;
}

.eag-inner-rich h1,
.eag-inner-rich h2,
.eag-inner-rich h3,
.eag-inner-rich h4 {
    color: var(--cw-color-dark, #111111);
    letter-spacing: -0.025em;
}

.eag-inner-rich h1 {
    margin-top: 0;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
}

.eag-inner-rich h2 {
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid rgba(17,17,17,0.08);
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.12;
}

.eag-inner-rich h3,
.eag-inner-rich h4 {
    margin-top: 28px;
    font-size: 22px;
    line-height: 1.25;
}

.eag-inner-rich p,
.eag-inner-rich li {
    color: var(--cw-color-muted, #667085);
    font-size: 17px;
    line-height: 1.78;
}

.eag-inner-rich a {
    color: var(--cw-color-dark, #111111);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.eag-inner-rich .legal-container,
.cwd-legal-company-data,
.cwd-legal-contact-data {
    margin: 24px 0;
    padding: 22px 24px;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.26);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(246,239,224,0.64) 100%);
    box-shadow: 0 14px 34px rgba(17,17,17,0.05);
}

.eag-inner-rich .legal-container h3,
.cwd-legal-company-data h3,
.cwd-legal-contact-data h3 {
    margin-top: 0;
    color: var(--cw-color-dark, #111111);
}

.eag-inner-rich .legal-container p,
.cwd-legal-company-data p,
.cwd-legal-contact-data p { margin: 8px 0; }

body.page-template-template-aviso-legal #main-content,
body.page-template-template-privacidad #main-content,
body.page-template-template-cookies #main-content {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

body.page-template-template-aviso-legal .home-welcome,
body.page-template-template-privacidad .home-welcome,
body.page-template-template-cookies .home-welcome {
    padding: 54px 0 72px;
    background:
        radial-gradient(circle at top left, rgba(var(--cw-color-primary-rgb,214,168,79),0.16), transparent 34%),
        #faf7f1;
}

body.page-template-template-aviso-legal .home-welcome > .container,
body.page-template-template-privacidad .home-welcome > .container,
body.page-template-template-cookies .home-welcome > .container {
    width: min(var(--cw-section-max-width, 1120px), calc(100% - 32px));
    max-width: 940px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.20);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(17,17,17,0.07);
}

body.page-template-template-aviso-legal .home-welcome h1,
body.page-template-template-privacidad .home-welcome h1,
body.page-template-template-cookies .home-welcome h1 {
    margin-top: 0;
    color: var(--cw-color-dark, #111111);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

body.page-template-template-aviso-legal .home-welcome h2,
body.page-template-template-privacidad .home-welcome h2,
body.page-template-template-cookies .home-welcome h2 {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(17,17,17,0.08);
    color: var(--cw-color-dark, #111111);
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

body.page-template-template-aviso-legal .home-welcome h3,
body.page-template-template-aviso-legal .home-welcome h4,
body.page-template-template-privacidad .home-welcome h3,
body.page-template-template-privacidad .home-welcome h4,
body.page-template-template-cookies .home-welcome h3,
body.page-template-template-cookies .home-welcome h4 { color: var(--cw-color-dark, #111111); }

body.page-template-template-aviso-legal .home-welcome p,
body.page-template-template-aviso-legal .home-welcome li,
body.page-template-template-privacidad .home-welcome p,
body.page-template-template-privacidad .home-welcome li,
body.page-template-template-cookies .home-welcome p,
body.page-template-template-cookies .home-welcome li {
    color: var(--cw-color-muted, #667085);
    font-size: 16.5px;
    line-height: 1.78;
}

.eag-faq-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 24px;
    align-items: stretch;
}

.eag-faq-featured__main,
.eag-faq-aside,
.eag-faq-item {
    background: #ffffff;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.20);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(17,17,17,0.06);
}

.eag-faq-featured__main { padding: 34px; }
.eag-faq-featured__main h2 {
    margin: 10px 0 16px;
    color: var(--cw-color-dark, #111111);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}
.eag-faq-featured__main p {
    margin: 0;
    color: var(--cw-color-muted, #667085);
    font-size: 18px;
    line-height: 1.72;
}
.eag-faq-aside {
    padding: 28px;
    background: linear-gradient(145deg, #111111 0%, #26211b 100%);
    color: #ffffff;
}
.eag-faq-aside strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.1;
}
.eag-faq-aside p {
    margin: 0;
    color: rgba(255,255,255,0.76);
    line-height: 1.7;
}
.eag-faq-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}
.eag-faq-item { overflow: hidden; }
.eag-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    color: var(--cw-color-dark, #111111);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}
.eag-faq-item summary::-webkit-details-marker { display: none; }
.eag-faq-item summary::after {
    content: "+";
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(var(--cw-color-primary-rgb,214,168,79),0.16);
    color: var(--cw-color-dark, #111111);
    font-size: 20px;
}
.eag-faq-item[open] summary::after {
    content: "−";
    background: var(--cw-color-dark, #111111);
    color: #ffffff;
}
.eag-faq-answer {
    padding: 0 24px 24px;
    color: var(--cw-color-muted, #667085);
    font-size: 17px;
    line-height: 1.72;
}
.eag-faq-answer p { margin: 0; }
.eag-faq-contact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.20);
    box-shadow: 0 18px 45px rgba(17,17,17,0.06);
}
.eag-faq-contact-strip h2 {
    margin: 0 0 6px;
    color: var(--cw-color-dark, #111111);
    font-size: 28px;
    letter-spacing: -0.035em;
}
.eag-faq-contact-strip p { margin: 0; color: var(--cw-color-muted, #667085); }

.eag-story-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: center;
}
.eag-story-image {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(17,17,17,0.12);
}
.eag-story-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}
.eag-story-card {
    padding: 36px;
    background: #ffffff;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.20);
    border-radius: 30px;
    box-shadow: 0 22px 55px rgba(17,17,17,0.07);
}
.eag-story-card h2 {
    margin: 10px 0 16px;
    color: var(--cw-color-dark, #111111);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}
.eag-story-card p {
    color: var(--cw-color-muted, #667085);
    font-size: 17px;
    line-height: 1.76;
}
.eag-story-timeline {
    display: grid;
    gap: 18px;
    margin-top: 36px;
}
.eag-story-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.20);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(17,17,17,0.05);
}
.eag-story-step__num {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--cw-color-dark, #111111);
    color: var(--cw-color-primary, #d6a84f);
    font-weight: 900;
}
.eag-story-step h3 {
    margin: 0 0 8px;
    color: var(--cw-color-dark, #111111);
    font-size: 22px;
}
.eag-story-step p { margin: 0; color: var(--cw-color-muted, #667085); line-height: 1.7; }
.eag-story-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}
.eag-story-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 16px 38px rgba(17,17,17,0.08);
}

@media (max-width: 980px) {
    .eag-faq-featured,
    .eag-story-grid { grid-template-columns: 1fr; }
    .eag-story-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
    .eag-inner-hero { padding: 52px 0 36px; }
    .eag-inner-section { padding: var(--cw-section-padding-mobile, 36px) 0; }
    .eag-inner-rich,
    body.page-template-template-aviso-legal .home-welcome > .container,
    body.page-template-template-privacidad .home-welcome > .container,
    body.page-template-template-cookies .home-welcome > .container,
    .eag-faq-featured__main,
    .eag-faq-aside,
    .eag-story-card {
        padding: 24px;
        border-radius: 24px;
    }
    .eag-faq-contact-strip { flex-direction: column; align-items: stretch; }
    .eag-faq-contact-strip .eag-btn { width: 100%; }
    .eag-story-image,
    .eag-story-image img { min-height: 300px; }
    .eag-story-gallery { grid-template-columns: 1fr; }
    .eag-story-gallery img { height: 260px; }
}

/* ============================================================
   ClientyWeb · páginas interiores mejoradas
   Estética común para Aviso Legal, Privacidad, Cookies y FAQs.
============================================================ */

.eag-simple-hero {
    padding: 78px 0 54px;
    background:
        radial-gradient(circle at top left, rgba(var(--cw-color-primary-rgb,214,168,79),0.18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #faf7f1 100%);
}

.eag-simple-title {
    max-width: 900px;
    margin: 12px 0 16px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
    color: var(--cw-color-dark, #111111);
}

.eag-simple-lead {
    max-width: 760px;
    margin: 0;
    color: var(--cw-color-muted, #667085);
    font-size: 19px;
    line-height: 1.75;
}

.eag-legal-layout,
.eag-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 26px;
    align-items: start;
}

.eag-legal-content {
    padding: 46px;
}

.eag-legal-content h2 {
    margin: 34px 0 12px;
    padding-top: 4px;
    color: var(--cw-color-dark, #111111);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.eag-legal-content h2:first-child {
    margin-top: 0;
}

.eag-legal-content p,
.eag-legal-content li {
    color: var(--cw-color-muted, #667085);
    font-size: 17px;
    line-height: 1.78;
}

.eag-legal-content ul {
    margin: 16px 0 0;
    padding-left: 22px;
}

.eag-legal-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 34px;
}

.eag-legal-data-row {
    padding: 16px 18px;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.20);
    border-radius: 18px;
    background: #fbfaf7;
}

.eag-legal-data-row strong {
    display: block;
    margin-bottom: 5px;
    color: var(--cw-color-dark, #111111);
    font-size: 14px;
}

.eag-legal-data-row span,
.eag-legal-data-row a {
    color: var(--cw-color-muted, #667085);
    overflow-wrap: anywhere;
}

.eag-legal-sidebar,
.eag-faq-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 92px;
}

.eag-legal-side-card {
    padding: 28px;
}

.eag-legal-side-card h2 {
    margin: 10px 0 12px;
    color: var(--cw-color-dark, #111111);
    font-size: 24px;
    line-height: 1.15;
}

.eag-legal-side-card p {
    color: var(--cw-color-muted, #667085);
    line-height: 1.7;
}

.eag-legal-links {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.eag-legal-links li,
.eag-legal-links a {
    color: var(--cw-color-muted, #667085);
    overflow-wrap: anywhere;
}

.eag-legal-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
}

.eag-legal-links a::before {
    content: "→";
    color: var(--cw-color-primary, #d6a84f);
}

.eag-legal-links a:hover {
    color: var(--cw-color-dark, #111111);
}

.eag-cookie-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 34px;
}

.eag-cookie-types article {
    padding: 20px;
    border-radius: 22px;
    background: #fbfaf7;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),0.20);
}

.eag-cookie-types strong {
    display: block;
    margin-bottom: 8px;
    color: var(--cw-color-dark, #111111);
    font-size: 18px;
}

.eag-cookie-types p {
    margin: 0;
    font-size: 15px;
}

.eag-faq-hero {
    background:
        linear-gradient(90deg, rgba(17,17,17,.76), rgba(17,17,17,.42)),
        var(--eag-faq-hero-image, none) center / cover no-repeat,
        linear-gradient(135deg, #111111, #2a241d);
    color: #ffffff;
}

.eag-faq-hero .eag-simple-title,
.eag-faq-hero .eag-simple-lead {
    color: #ffffff;
}

.eag-faq-hero .eag-simple-lead {
    color: rgba(255,255,255,.82);
}

.eag-faq-list {
    padding: 24px;
}

.eag-faq-item {
    border: 1px solid rgba(17,17,17,.08);
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
}

.eag-faq-item + .eag-faq-item {
    margin-top: 14px;
}

.eag-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
    color: var(--cw-color-dark, #111111);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
}

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

.eag-faq-item summary i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--cw-color-dark, #111111);
    background: rgba(var(--cw-color-primary-rgb,214,168,79),0.18);
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    transition: transform .18s ease;
}

.eag-faq-item[open] summary i {
    transform: rotate(45deg);
}

.eag-faq-answer {
    padding: 0 24px 24px;
    color: var(--cw-color-muted, #667085);
}

.eag-faq-answer p {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.75;
}

.eag-faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .eag-legal-layout,
    .eag-faq-layout {
        grid-template-columns: 1fr;
    }

    .eag-legal-sidebar,
    .eag-faq-sidebar {
        position: static;
    }
}

@media (max-width: 700px) {
    .eag-simple-hero {
        padding: 54px 0 38px;
    }

    .eag-legal-content,
    .eag-faq-list {
        padding: 24px;
    }

    .eag-legal-data-grid,
    .eag-cookie-types {
        grid-template-columns: 1fr;
    }

    .eag-faq-item summary {
        padding: 18px;
        font-size: 16px;
    }

    .eag-faq-answer {
        padding: 0 18px 20px;
    }
}



/* ============================================================
   ClientyWeb · legibilidad automática de hero
   También se incluye en CSS Global, pero aquí queda como base del tema.
============================================================ */
.clienty-hero-readability--panel-dark :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content){max-width:min(760px,calc(100% - 24px));padding:clamp(22px,4vw,42px);border-radius:clamp(20px,3vw,34px);background:rgba(8,10,15,.62);border:1px solid rgba(255,255,255,.18);box-shadow:0 28px 80px rgba(0,0,0,.35);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
.clienty-hero-readability--panel-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero)::before,.clienty-hero-readability--overlay-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero)::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.54),rgba(0,0,0,.20))}
.clienty-hero-readability--panel-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero)::before,.clienty-hero-readability--overlay-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero)::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;background:linear-gradient(90deg,rgba(255,255,255,.82),rgba(255,255,255,.56),rgba(255,255,255,.20))}
.clienty-hero-readability--panel-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero)>*,.clienty-hero-readability--overlay-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero)>*,.clienty-hero-readability--panel-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero)>*,.clienty-hero-readability--overlay-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero)>*{position:relative;z-index:1}
.clienty-hero-readability--panel-dark :where(.eag-hero .eag-title,.eag-hero .eag-text,.eag-hero h1,.eag-hero h2,.eag-hero h3,.eag-hero p,.clienty-home-hero h1,.clienty-home-hero h2,.clienty-home-hero p,.clienty-about-visual-hero h1,.clienty-about-visual-hero h2,.clienty-about-visual-hero p),.clienty-hero-readability--overlay-dark :where(.eag-hero .eag-title,.eag-hero .eag-text,.eag-hero h1,.eag-hero h2,.eag-hero h3,.eag-hero p,.clienty-home-hero h1,.clienty-home-hero h2,.clienty-home-hero p,.clienty-about-visual-hero h1,.clienty-about-visual-hero h2,.clienty-about-visual-hero p){color:#fff!important;text-shadow:0 2px 18px rgba(0,0,0,.45)}
.clienty-hero-readability--panel-dark :where(.eag-hero .eag-text,.eag-hero p,.clienty-home-hero p,.clienty-about-visual-hero p),.clienty-hero-readability--overlay-dark :where(.eag-hero .eag-text,.eag-hero p,.clienty-home-hero p,.clienty-about-visual-hero p){color:rgba(255,255,255,.88)!important}
.clienty-hero-readability--panel-dark :where(.eag-hero .eag-eyebrow,.clienty-about-visual-hero .eag-eyebrow),.clienty-hero-readability--overlay-dark :where(.eag-hero .eag-eyebrow,.clienty-about-visual-hero .eag-eyebrow){color:var(--cw-color-primary,#d6a84f)!important}
.clienty-hero-readability--panel-dark :where(.eag-hero .eag-btn-primary,.clienty-home-hero .clienty-home-cta,.clienty-about-visual-hero .eag-btn-primary),.clienty-hero-readability--overlay-dark :where(.eag-hero .eag-btn-primary,.clienty-home-hero .clienty-home-cta,.clienty-about-visual-hero .eag-btn-primary){background:var(--cw-color-primary,#d6a84f)!important;color:var(--cw-color-dark,#111)!important;border-color:var(--cw-color-primary,#d6a84f)!important}
.clienty-hero-readability--panel-dark :where(.eag-hero .eag-btn-secondary,.clienty-about-visual-hero .eag-btn-secondary),.clienty-hero-readability--overlay-dark :where(.eag-hero .eag-btn-secondary,.clienty-about-visual-hero .eag-btn-secondary){background:rgba(255,255,255,.96)!important;color:var(--cw-color-dark,#111)!important;border-color:rgba(var(--cw-color-primary-rgb,214,168,79),.55)!important}
.clienty-hero-readability--panel-light :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content){max-width:min(760px,calc(100% - 24px));padding:clamp(22px,4vw,42px);border-radius:clamp(20px,3vw,34px);background:rgba(255,255,255,.86);border:1px solid rgba(var(--cw-color-primary-rgb,214,168,79),.28);box-shadow:0 28px 80px rgba(0,0,0,.16);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
.clienty-hero-readability--panel-light :where(.eag-hero .eag-title,.eag-hero .eag-text,.eag-hero h1,.eag-hero h2,.eag-hero h3,.eag-hero p,.clienty-home-hero h1,.clienty-home-hero h2,.clienty-home-hero p,.clienty-about-visual-hero h1,.clienty-about-visual-hero h2,.clienty-about-visual-hero p),.clienty-hero-readability--overlay-light :where(.eag-hero .eag-title,.eag-hero .eag-text,.eag-hero h1,.eag-hero h2,.eag-hero h3,.eag-hero p,.clienty-home-hero h1,.clienty-home-hero h2,.clienty-home-hero p,.clienty-about-visual-hero h1,.clienty-about-visual-hero h2,.clienty-about-visual-hero p){color:var(--cw-color-dark,#111)!important;text-shadow:none!important}
.clienty-hero-readability--panel-light :where(.eag-hero .eag-text,.eag-hero p,.clienty-home-hero p,.clienty-about-visual-hero p),.clienty-hero-readability--overlay-light :where(.eag-hero .eag-text,.eag-hero p,.clienty-home-hero p,.clienty-about-visual-hero p){color:var(--cw-color-text,#182033)!important}
.clienty-hero-readability--panel-light :where(.eag-hero .eag-btn-primary,.clienty-home-hero .clienty-home-cta,.clienty-about-visual-hero .eag-btn-primary),.clienty-hero-readability--overlay-light :where(.eag-hero .eag-btn-primary,.clienty-home-hero .clienty-home-cta,.clienty-about-visual-hero .eag-btn-primary){background:var(--cw-color-dark,#111)!important;color:#fff!important;border-color:var(--cw-color-dark,#111)!important}
.clienty-hero-readability--plain :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content){background:transparent;border:0;box-shadow:none;backdrop-filter:none}
@media(max-width:768px){.clienty-hero-readability--panel-dark :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content),.clienty-hero-readability--panel-light :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content){max-width:calc(100% - 24px);padding:22px 18px;border-radius:24px}}

/* ============================================================
   ClientyWeb · legibilidad avanzada de imágenes
   v2.2.0: protege el texto con una tarjeta de lectura y una
   viñeta suave, sin tapar la fotografía completa.
============================================================ */

/* Base para secciones con imagen: el fondo se conserva y la capa negra baja mucho. */
.clienty-hero-readability--panel-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta),
.clienty-hero-readability--panel-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta),
.clienty-hero-readability--overlay-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta),
.clienty-hero-readability--overlay-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta){
    position:relative!important;
    isolation:isolate!important;
    overflow:hidden!important;
}

.clienty-hero-readability--panel-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)::before{
    content:""!important;
    position:absolute!important;
    inset:0!important;
    z-index:0!important;
    pointer-events:none!important;
    background:
        radial-gradient(circle at 30% 50%, rgba(0,0,0,.34), transparent 48%),
        linear-gradient(90deg, rgba(0,0,0,.34), rgba(0,0,0,.12) 52%, rgba(0,0,0,.04))!important;
}

.clienty-hero-readability--overlay-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)::before{
    content:""!important;
    position:absolute!important;
    inset:0!important;
    z-index:0!important;
    pointer-events:none!important;
    background:linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.26) 54%, rgba(0,0,0,.08))!important;
}

.clienty-hero-readability--panel-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)::before{
    content:""!important;
    position:absolute!important;
    inset:0!important;
    z-index:0!important;
    pointer-events:none!important;
    background:
        radial-gradient(circle at 30% 50%, rgba(255,255,255,.46), transparent 48%),
        linear-gradient(90deg, rgba(255,255,255,.45), rgba(255,255,255,.18) 52%, rgba(255,255,255,.04))!important;
}

.clienty-hero-readability--overlay-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)::before{
    content:""!important;
    position:absolute!important;
    inset:0!important;
    z-index:0!important;
    pointer-events:none!important;
    background:linear-gradient(90deg, rgba(255,255,255,.58), rgba(255,255,255,.30) 54%, rgba(255,255,255,.08))!important;
}

.clienty-hero-readability--panel-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)>*,
.clienty-hero-readability--panel-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)>*,
.clienty-hero-readability--overlay-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)>*,
.clienty-hero-readability--overlay-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)>*{
    position:relative!important;
    z-index:1!important;
}

/* El modo recomendado ya no oscurece toda la foto: crea una tarjeta editorial solo detrás del texto. */
.clienty-hero-readability--panel-dark :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content,.eag-final-cta>.eag-container){
    max-width:min(760px,calc(100% - 28px))!important;
    padding:clamp(24px,4vw,44px)!important;
    border-radius:clamp(22px,3vw,36px)!important;
    background:linear-gradient(135deg, rgba(10,12,18,.54), rgba(10,12,18,.36))!important;
    border:1px solid rgba(255,255,255,.20)!important;
    box-shadow:0 24px 70px rgba(0,0,0,.26)!important;
    backdrop-filter:blur(12px) saturate(1.08)!important;
    -webkit-backdrop-filter:blur(12px) saturate(1.08)!important;
}

.clienty-hero-readability--panel-light :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content,.eag-final-cta>.eag-container){
    max-width:min(760px,calc(100% - 28px))!important;
    padding:clamp(24px,4vw,44px)!important;
    border-radius:clamp(22px,3vw,36px)!important;
    background:linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.64))!important;
    border:1px solid rgba(var(--cw-color-primary-rgb,214,168,79),.26)!important;
    box-shadow:0 24px 70px rgba(0,0,0,.16)!important;
    backdrop-filter:blur(12px) saturate(1.08)!important;
    -webkit-backdrop-filter:blur(12px) saturate(1.08)!important;
}

/* La CTA final suele ir centrada: la tarjeta también queda centrada, no estirada a todo el ancho. */
.clienty-hero-readability--panel-dark :where(.eag-final-cta>.eag-container),
.clienty-hero-readability--panel-light :where(.eag-final-cta>.eag-container){
    margin-left:auto!important;
    margin-right:auto!important;
    text-align:center!important;
}

/* Evita que el background original con linear-gradient negro muy fuerte tape toda la foto. */
.clienty-hero-readability--panel-dark :where(.eag-final-cta),
.clienty-hero-readability--panel-light :where(.eag-final-cta),
.clienty-hero-readability--overlay-dark :where(.eag-final-cta),
.clienty-hero-readability--overlay-light :where(.eag-final-cta){
    background:var(--eag-final-cta-bg) var(--eag-final-cta-bg-position,center) / cover no-repeat!important;
}

/* Color de texto robusto para cualquier bloque con imagen, incluida la CTA final. */
.clienty-hero-readability--panel-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta) :where(.eag-title,.eag-text,h1,h2,h3,p),
.clienty-hero-readability--overlay-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta) :where(.eag-title,.eag-text,h1,h2,h3,p){
    color:#fff!important;
    text-shadow:0 2px 14px rgba(0,0,0,.38)!important;
}

.clienty-hero-readability--panel-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta) :where(.eag-text,p),
.clienty-hero-readability--overlay-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta) :where(.eag-text,p){
    color:rgba(255,255,255,.90)!important;
}

.clienty-hero-readability--panel-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta) :where(.eag-title,.eag-text,h1,h2,h3,p),
.clienty-hero-readability--overlay-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta) :where(.eag-title,.eag-text,h1,h2,h3,p){
    color:var(--cw-color-dark,#111)!important;
    text-shadow:none!important;
}

.clienty-hero-readability--panel-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta) :where(.eag-text,p),
.clienty-hero-readability--overlay-light :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta) :where(.eag-text,p){
    color:var(--cw-color-text,#182033)!important;
}

.clienty-hero-readability--panel-dark :where(.eag-eyebrow),
.clienty-hero-readability--overlay-dark :where(.eag-eyebrow){
    color:var(--cw-color-primary,#d6a84f)!important;
    text-shadow:0 2px 12px rgba(0,0,0,.35)!important;
}

.clienty-hero-readability--panel-light :where(.eag-eyebrow),
.clienty-hero-readability--overlay-light :where(.eag-eyebrow){
    color:var(--cw-color-primary,#d6a84f)!important;
    text-shadow:none!important;
}

.clienty-hero-readability--panel-dark :where(.eag-btn-primary,.clienty-home-cta),
.clienty-hero-readability--overlay-dark :where(.eag-btn-primary,.clienty-home-cta){
    background:var(--cw-color-primary,#d6a84f)!important;
    color:var(--cw-color-dark,#111)!important;
    border-color:var(--cw-color-primary,#d6a84f)!important;
    text-shadow:none!important;
}

.clienty-hero-readability--panel-dark :where(.eag-btn-secondary),
.clienty-hero-readability--overlay-dark :where(.eag-btn-secondary){
    background:rgba(255,255,255,.96)!important;
    color:var(--cw-color-dark,#111)!important;
    border-color:rgba(var(--cw-color-primary-rgb,214,168,79),.55)!important;
    text-shadow:none!important;
}

.clienty-hero-readability--panel-light :where(.eag-btn-primary,.clienty-home-cta),
.clienty-hero-readability--overlay-light :where(.eag-btn-primary,.clienty-home-cta){
    background:var(--cw-color-dark,#111)!important;
    color:#fff!important;
    border-color:var(--cw-color-dark,#111)!important;
    text-shadow:none!important;
}

/* Cuando el usuario selecciona "sin protección", no fuerza paneles ni capas. */
.clienty-hero-readability--plain :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)::before{
    display:none!important;
}

.clienty-hero-readability--plain :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content,.eag-final-cta>.eag-container){
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    backdrop-filter:none!important;
    -webkit-backdrop-filter:none!important;
}

@media(max-width:768px){
    .clienty-hero-readability--panel-dark :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content,.eag-final-cta>.eag-container),
    .clienty-hero-readability--panel-light :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content,.eag-final-cta>.eag-container){
        max-width:calc(100% - 24px)!important;
        padding:22px 18px!important;
        border-radius:24px!important;
    }

    .clienty-hero-readability--panel-dark :where(.eag-hero,.clienty-home-hero,.clienty-about-visual-hero,.eag-final-cta)::before{
        background:linear-gradient(180deg, rgba(0,0,0,.26), rgba(0,0,0,.14))!important;
    }
}

/* ============================================================
   ClientyWeb · contraste nítido en páginas interiores
   v2.3.0: corrige títulos sobre fondos oscuros, mejora FAQ y
   deja las páginas interiores más limpias, luminosas y legibles.
============================================================ */
:root{
    --cw-page-bg:#faf7f1;
    --cw-card-bg:#ffffff;
    --cw-card-border:rgba(var(--cw-color-primary-rgb,214,168,79),.20);
    --cw-card-shadow:0 24px 70px rgba(15,23,42,.08);
    --cw-soft-shadow:0 16px 46px rgba(15,23,42,.07);
    --cw-text-strong:#0f172a;
    --cw-text-body:#475467;
    --cw-on-dark:#ffffff;
    --cw-on-dark-muted:rgba(255,255,255,.84);
}

.eag-inner-page,
.eag-faq,
.eag-story,
.eag-legal-page,
.eag-contact-page{
    background:var(--cw-page-bg)!important;
    color:var(--cw-text-body)!important;
}

.eag-container,
.cwd-page-container{
    width:min(var(--cw-section-max-width,1120px),calc(100% - 32px))!important;
    margin-left:auto!important;
    margin-right:auto!important;
}

.eag-inner-hero,
.eag-simple-hero{
    background:
        radial-gradient(circle at 12% 0%, rgba(var(--cw-color-primary-rgb,214,168,79),.16), transparent 34%),
        linear-gradient(135deg,#ffffff 0%,#fbfaf7 58%,#f6efe0 100%)!important;
    color:var(--cw-text-strong)!important;
    border-bottom:1px solid rgba(15,23,42,.05)!important;
}

.eag-inner-title,
.eag-simple-title{
    color:var(--cw-text-strong)!important;
    text-shadow:none!important;
}

.eag-inner-lead,
.eag-simple-lead{
    color:var(--cw-text-body)!important;
    text-shadow:none!important;
}

/* FAQ sin imagen: fondo claro tipo Apple, no bloque negro. */
.eag-faq-hero:not(.eag-faq-hero--has-image),
.eag-faq-hero--no-image{
    background:
        radial-gradient(circle at 12% 0%, rgba(var(--cw-color-primary-rgb,214,168,79),.18), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(15,23,42,.06), transparent 28%),
        linear-gradient(135deg,#ffffff 0%,#fbfaf7 60%,#f6efe0 100%)!important;
    color:var(--cw-text-strong)!important;
}

.eag-faq-hero:not(.eag-faq-hero--has-image) .eag-inner-title,
.eag-faq-hero--no-image .eag-inner-title,
.eag-faq-hero:not(.eag-faq-hero--has-image) .eag-simple-title,
.eag-faq-hero--no-image .eag-simple-title{
    color:var(--cw-text-strong)!important;
    text-shadow:none!important;
}

.eag-faq-hero:not(.eag-faq-hero--has-image) .eag-inner-lead,
.eag-faq-hero--no-image .eag-inner-lead,
.eag-faq-hero:not(.eag-faq-hero--has-image) .eag-simple-lead,
.eag-faq-hero--no-image .eag-simple-lead{
    color:var(--cw-text-body)!important;
    text-shadow:none!important;
}

/* FAQ con imagen: solo entonces se aplica overlay oscuro y texto blanco. */
.eag-faq-hero--has-image{
    background:
        linear-gradient(90deg, rgba(10,12,18,.74) 0%, rgba(10,12,18,.48) 48%, rgba(10,12,18,.20) 100%),
        var(--eag-faq-hero-image, none) center / cover no-repeat!important;
    color:var(--cw-on-dark)!important;
}

.eag-faq-hero--has-image .eag-inner-title,
.eag-faq-hero--has-image .eag-simple-title{
    color:var(--cw-on-dark)!important;
    text-shadow:0 3px 18px rgba(0,0,0,.36)!important;
}

.eag-faq-hero--has-image .eag-inner-lead,
.eag-faq-hero--has-image .eag-simple-lead{
    color:var(--cw-on-dark-muted)!important;
    text-shadow:0 2px 12px rgba(0,0,0,.30)!important;
}

.eag-faq-hero .eag-inner-hero__content,
.eag-simple-hero .eag-container{
    max-width:980px!important;
}

.eag-eyebrow{
    color:var(--cw-color-primary,#d6a84f)!important;
    text-shadow:none!important;
}

.eag-faq-hero--has-image .eag-eyebrow{
    color:var(--cw-color-primary,#d6a84f)!important;
    text-shadow:0 2px 12px rgba(0,0,0,.34)!important;
}

.eag-inner-section{
    padding:clamp(42px,6vw,var(--cw-section-padding-desktop,64px)) 0!important;
}

.eag-inner-card,
.eag-faq-featured__main,
.eag-faq-item,
.eag-faq-contact-strip,
.eag-story-card,
.eag-legal-content,
.eag-legal-side-card,
.eag-contact-card,
.eag-contact-form-card{
    background:var(--cw-card-bg)!important;
    border:1px solid var(--cw-card-border)!important;
    box-shadow:var(--cw-card-shadow)!important;
    color:var(--cw-text-body)!important;
}

.eag-faq-featured{
    gap:28px!important;
}

.eag-faq-featured__main,
.eag-faq-aside{
    border-radius:30px!important;
}

.eag-faq-featured__main h2,
.eag-faq-contact-strip h2,
.eag-story-card h2,
.eag-legal-content h1,
.eag-legal-content h2,
.eag-legal-side-card h2,
.eag-contact-card h2,
.eag-contact-form-card h2,
.eag-inner-rich h1,
.eag-inner-rich h2,
.eag-inner-rich h3{
    color:var(--cw-text-strong)!important;
    text-shadow:none!important;
}

.eag-faq-featured__main p,
.eag-faq-answer,
.eag-faq-answer p,
.eag-faq-contact-strip p,
.eag-story-card p,
.eag-legal-content p,
.eag-legal-content li,
.eag-legal-side-card p,
.eag-contact-card p,
.eag-inner-rich p,
.eag-inner-rich li{
    color:var(--cw-text-body)!important;
}

.eag-faq-aside{
    background:
        radial-gradient(circle at top right, rgba(var(--cw-color-primary-rgb,214,168,79),.24), transparent 34%),
        linear-gradient(145deg,#111827 0%,#151515 100%)!important;
    color:var(--cw-on-dark)!important;
    border-color:rgba(255,255,255,.10)!important;
    box-shadow:0 26px 70px rgba(15,23,42,.22)!important;
}

.eag-faq-aside strong,
.eag-faq-aside h2,
.eag-faq-aside h3{
    color:var(--cw-on-dark)!important;
}

.eag-faq-aside p{
    color:var(--cw-on-dark-muted)!important;
}

.eag-faq-list{
    padding:0!important;
    background:transparent!important;
}

.eag-faq-item{
    border-radius:24px!important;
    overflow:hidden!important;
}

.eag-faq-item summary{
    color:var(--cw-text-strong)!important;
    background:#ffffff!important;
}

.eag-faq-item summary::after,
.eag-faq-item summary i{
    background:rgba(var(--cw-color-primary-rgb,214,168,79),.16)!important;
    color:var(--cw-text-strong)!important;
}

.eag-faq-item[open] summary{
    border-bottom:1px solid rgba(15,23,42,.06)!important;
}

.eag-faq-item[open] summary::after,
.eag-faq-item[open] summary i{
    background:var(--cw-color-primary,#d6a84f)!important;
    color:var(--cw-color-primary-contrast,#111111)!important;
}

.eag-faq-answer{
    background:#ffffff!important;
}

.eag-faq-contact-strip{
    background:linear-gradient(135deg,#ffffff 0%,#fbfaf7 100%)!important;
}

.eag-btn,
.clienty-home-cta,
.cw-btn{
    text-decoration:none!important;
}

.eag-btn-primary,
.clienty-home-cta,
.cw-btn-primary{
    background:var(--cw-color-primary,#d6a84f)!important;
    color:var(--cw-color-primary-contrast,#111111)!important;
    border-color:var(--cw-color-primary,#d6a84f)!important;
    text-shadow:none!important;
}

.eag-btn-primary:hover,
.clienty-home-cta:hover,
.cw-btn-primary:hover{
    filter:brightness(.97)!important;
}

.eag-btn-secondary,
.cw-btn-secondary{
    background:#ffffff!important;
    color:var(--cw-text-strong)!important;
    border:1px solid rgba(var(--cw-color-primary-rgb,214,168,79),.38)!important;
    text-shadow:none!important;
}

.eag-final-cta,
.eag-experience,
.eag-dark-section{
    color:var(--cw-on-dark)!important;
}

.eag-final-cta :where(.eag-title,.eag-text,h1,h2,h3,p),
.eag-experience :where(.eag-title,.eag-text,h1,h2,h3,p),
.eag-dark-section :where(.eag-title,.eag-text,h1,h2,h3,p){
    color:var(--cw-on-dark)!important;
}

.eag-final-cta :where(.eag-text,p),
.eag-experience :where(.eag-text,p),
.eag-dark-section :where(.eag-text,p){
    color:var(--cw-on-dark-muted)!important;
}

@media(max-width:768px){
    .eag-container,
    .cwd-page-container{
        width:min(100% - 24px,var(--cw-section-max-width,1120px))!important;
    }

    .eag-inner-hero,
    .eag-simple-hero{
        padding:46px 0 34px!important;
    }

    .eag-inner-title,
    .eag-simple-title{
        font-size:clamp(34px,11vw,52px)!important;
        letter-spacing:-.045em!important;
    }

    .eag-faq-featured__main,
    .eag-faq-aside,
    .eag-faq-contact-strip{
        border-radius:24px!important;
    }
}

/* ============================================================
   ClientyWeb · hero responsive avanzado
   v2.5.0: imagen desktop/mobile, posición, overlay graduable
   y fallback claro cuando no hay imagen.
============================================================ */
.clienty-hero-has-image:where(.clienty-home-hero,.clienty-about-visual-hero),
.clienty-hero-has-image :where(.eag-hero,.eag-final-cta){position:relative!important;isolation:isolate!important;overflow:hidden!important}
.clienty-hero-has-image :where(.clienty-home-hero__bg,.clienty-about-visual-hero__bg){object-fit:cover!important;object-position:var(--clienty-hero-position-desktop,center center)!important}
@media(max-width:768px){.clienty-hero-has-image :where(.clienty-home-hero__bg,.clienty-about-visual-hero__bg){object-position:var(--clienty-hero-position-mobile,var(--clienty-hero-position-desktop,center center))!important}}
.clienty-hero-no-image:where(.clienty-home-hero,.clienty-about-visual-hero),.clienty-hero-no-image :where(.eag-hero,.eag-final-cta),.eag-faq-hero--no-image,.eag-simple-hero{background:radial-gradient(circle at 14% 4%,rgba(var(--cw-color-primary-rgb,214,168,79),.18),transparent 34%),radial-gradient(circle at 86% 12%,rgba(15,23,42,.06),transparent 30%),linear-gradient(135deg,#fff 0%,#fbfaf7 62%,#f6efe0 100%)!important;color:var(--cw-text-strong,#0f172a)!important}
.clienty-hero-no-image:where(.clienty-home-hero,.clienty-about-visual-hero)::before,.clienty-hero-no-image :where(.eag-hero,.eag-final-cta)::before,.clienty-hero-no-image :where(.clienty-home-hero__overlay),.clienty-hero-no-image :where(.clienty-about-visual-hero__bg),.clienty-hero-no-image :where(.clienty-home-hero__bg){display:none!important}
.clienty-hero-no-image :where(.eag-title,.eag-text,h1,h2,h3,p),.clienty-hero-no-image:where(.clienty-home-hero,.clienty-about-visual-hero) :where(.eag-title,.eag-text,h1,h2,h3,p),.eag-faq-hero--no-image :where(.eag-inner-title,.eag-inner-lead,.eag-simple-title,.eag-simple-lead){color:var(--cw-text-strong,#0f172a)!important;text-shadow:none!important}.clienty-hero-no-image :where(p,.eag-text),.eag-faq-hero--no-image :where(.eag-inner-lead,.eag-simple-lead){color:var(--cw-text-body,#475467)!important}
.clienty-hero-overlay--low.clienty-hero-readability--panel-dark :where(.clienty-home-hero__overlay){background:rgba(0,0,0,.06)!important}.clienty-hero-overlay--medium.clienty-hero-readability--panel-dark :where(.clienty-home-hero__overlay){background:rgba(0,0,0,.12)!important}.clienty-hero-overlay--high.clienty-hero-readability--panel-dark :where(.clienty-home-hero__overlay){background:rgba(0,0,0,.22)!important}
.clienty-hero-overlay--low.clienty-hero-readability--overlay-dark :where(.clienty-home-hero__overlay){background:rgba(0,0,0,.28)!important}.clienty-hero-overlay--medium.clienty-hero-readability--overlay-dark :where(.clienty-home-hero__overlay){background:rgba(0,0,0,.42)!important}.clienty-hero-overlay--high.clienty-hero-readability--overlay-dark :where(.clienty-home-hero__overlay){background:rgba(0,0,0,.58)!important}
.clienty-hero-overlay--low.clienty-hero-readability--panel-light :where(.clienty-home-hero__overlay){background:rgba(255,255,255,.06)!important}.clienty-hero-overlay--medium.clienty-hero-readability--panel-light :where(.clienty-home-hero__overlay){background:rgba(255,255,255,.14)!important}.clienty-hero-overlay--high.clienty-hero-readability--panel-light :where(.clienty-home-hero__overlay){background:rgba(255,255,255,.25)!important}
.clienty-hero-overlay--low.clienty-hero-readability--overlay-light :where(.clienty-home-hero__overlay){background:rgba(255,255,255,.30)!important}.clienty-hero-overlay--medium.clienty-hero-readability--overlay-light :where(.clienty-home-hero__overlay){background:rgba(255,255,255,.46)!important}.clienty-hero-overlay--high.clienty-hero-readability--overlay-light :where(.clienty-home-hero__overlay){background:rgba(255,255,255,.62)!important}
.clienty-hero-overlay--low.clienty-hero-readability--panel-dark :where(.clienty-about-visual-hero,.eag-hero,.eag-final-cta)::before{background:radial-gradient(circle at 30% 50%,rgba(0,0,0,.18),transparent 46%),linear-gradient(90deg,rgba(0,0,0,.18),rgba(0,0,0,.06) 58%,rgba(0,0,0,.02))!important}.clienty-hero-overlay--medium.clienty-hero-readability--panel-dark :where(.clienty-about-visual-hero,.eag-hero,.eag-final-cta)::before{background:radial-gradient(circle at 30% 50%,rgba(0,0,0,.28),transparent 48%),linear-gradient(90deg,rgba(0,0,0,.28),rgba(0,0,0,.10) 58%,rgba(0,0,0,.03))!important}.clienty-hero-overlay--high.clienty-hero-readability--panel-dark :where(.clienty-about-visual-hero,.eag-hero,.eag-final-cta)::before{background:radial-gradient(circle at 30% 50%,rgba(0,0,0,.38),transparent 50%),linear-gradient(90deg,rgba(0,0,0,.40),rgba(0,0,0,.18) 58%,rgba(0,0,0,.06))!important}
.clienty-hero-overlay--low.clienty-hero-readability--overlay-dark :where(.clienty-about-visual-hero,.eag-hero,.eag-final-cta)::before{background:linear-gradient(90deg,rgba(0,0,0,.34),rgba(0,0,0,.16) 58%,rgba(0,0,0,.04))!important}.clienty-hero-overlay--medium.clienty-hero-readability--overlay-dark :where(.clienty-about-visual-hero,.eag-hero,.eag-final-cta)::before{background:linear-gradient(90deg,rgba(0,0,0,.50),rgba(0,0,0,.28) 58%,rgba(0,0,0,.08))!important}.clienty-hero-overlay--high.clienty-hero-readability--overlay-dark :where(.clienty-about-visual-hero,.eag-hero,.eag-final-cta)::before{background:linear-gradient(90deg,rgba(0,0,0,.68),rgba(0,0,0,.42) 58%,rgba(0,0,0,.12))!important}
.clienty-hero-readability--panel-dark :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content,.eag-final-cta>.eag-container){background:linear-gradient(135deg,rgba(10,12,18,.50),rgba(10,12,18,.30))!important;box-shadow:0 22px 60px rgba(0,0,0,.22)!important}.clienty-hero-readability--panel-light :where(.eag-hero-content,.clienty-home-hero__content,.clienty-about-hero-content,.eag-final-cta>.eag-container){background:linear-gradient(135deg,rgba(255,255,255,.84),rgba(255,255,255,.62))!important}

/* ============================================================
   ClientyWeb · menú mobile profesional
   v2.6.0: off-canvas accesible, jerarquía visual y protección contra overflow.
============================================================ */
body.cwd-mobile-menu-open {
    overflow: hidden !important;
    touch-action: none;
}

.cwd-header--mobile {
    position: relative;
    z-index: 80;
}

.cwd-header--mobile .cwd-header__mobile-bar {
    min-width: 0;
}

.cwd-header--mobile .cwd-header__logo--mobile {
    min-width: 0;
    max-width: calc(100vw - 136px);
    overflow: hidden;
}

.cwd-header--mobile .cwd-logo-text {
    display: inline-block;
    max-width: calc(100vw - 146px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cwd-mobile-menu[hidden] {
    display: none !important;
}

.cwd-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.cwd-mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .46);
    opacity: 0;
    transition: opacity .22s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: auto;
}

.cwd-mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(430px, 92vw);
    max-width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--cwd-header-text, #253050);
    background:
        radial-gradient(circle at 0% 0%, rgba(var(--cw-color-primary-rgb, 214,168,79), .16), transparent 36%),
        linear-gradient(180deg, color-mix(in srgb, var(--cwd-header-bg, #ffffff) 94%, #ffffff), var(--cwd-header-bg, #ffffff));
    border-left: 1px solid color-mix(in srgb, var(--cwd-header-text, #253050) 10%, transparent);
    box-shadow: -28px 0 70px rgba(15, 23, 42, .22);
    transform: translate3d(104%, 0, 0);
    transition: transform .25s cubic-bezier(.2, .8, .2, 1);
    pointer-events: auto;
    outline: none;
    overflow: hidden;
}

.cwd-mobile-menu.is-open .cwd-mobile-menu__backdrop {
    opacity: 1;
}

.cwd-mobile-menu.is-open .cwd-mobile-drawer {
    transform: translate3d(0, 0, 0);
}

.cwd-mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: max(18px, env(safe-area-inset-top)) 18px 16px;
    border-bottom: 1px solid color-mix(in srgb, var(--cwd-header-text, #253050) 9%, transparent);
}

.cwd-mobile-drawer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--cwd-header-text, #253050);
    text-decoration: none !important;
}

.cwd-mobile-drawer__logo {
    display: block;
    width: auto;
    max-width: min(var(--cwd-header-logo-mobile-width, 190px), 220px);
    max-height: min(var(--cwd-header-logo-mobile-height, 58px), 72px);
    object-fit: contain;
    flex: 0 0 auto;
}

.cwd-mobile-drawer__brand .cwd-logo-text,
.cwd-mobile-drawer__title {
    min-width: 0;
    max-width: 180px;
    overflow: hidden;
    color: var(--cwd-header-text, #253050);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.12;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cwd-mobile-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid color-mix(in srgb, var(--cwd-header-text, #253050) 12%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--cwd-header-bg, #ffffff) 88%, #ffffff);
    color: var(--cwd-header-text, #253050);
    cursor: pointer;
    flex: 0 0 auto;
}

.cwd-mobile-drawer__close svg {
    width: 20px;
    height: 20px;
}

.cwd-mobile-drawer__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 14px 18px;
    -webkit-overflow-scrolling: touch;
}

.cwd-mobile-drawer__footer {
    display: grid;
    gap: 10px;
    padding: 14px 18px max(18px, env(safe-area-inset-bottom));
    border-top: 1px solid color-mix(in srgb, var(--cwd-header-text, #253050) 9%, transparent);
    background: color-mix(in srgb, var(--cwd-header-bg, #ffffff) 94%, #ffffff);
}

.cwd-mobile-drawer .cwd-mobile-nav__list {
    display: grid;
    gap: 8px;
    padding: 0 !important;
}

.cwd-mobile-drawer .cwd-mobile-nav__list li {
    min-width: 0;
}

.cwd-mobile-drawer .cwd-mobile-nav__list a {
    min-height: 48px;
    padding: 13px 14px;
    border: 1px solid color-mix(in srgb, var(--cwd-header-text, #253050) 8%, transparent);
    border-radius: 16px;
    color: var(--cwd-header-text, #253050) !important;
    background: color-mix(in srgb, var(--cwd-header-bg, #ffffff) 82%, #ffffff);
    font-size: 16px;
    font-weight: 760;
    line-height: 1.15;
    text-decoration: none !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.72) inset;
}

.cwd-mobile-drawer .cwd-mobile-nav__list a:hover,
.cwd-mobile-drawer .cwd-mobile-nav__list a:focus,
.cwd-mobile-drawer .cwd-mobile-nav__list .current-menu-item > a,
.cwd-mobile-drawer .cwd-mobile-nav__list .current-menu-ancestor > a {
    border-color: rgba(var(--cw-color-primary-rgb, 214,168,79), .42);
    background: rgba(var(--cw-color-primary-rgb, 214,168,79), .14);
    outline: none;
}

.cwd-mobile-drawer .cwd-mobile-nav__list .menu-item-has-children {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 8px;
}

.cwd-mobile-drawer .cwd-mobile-submenu-toggle {
    width: 46px;
    height: 48px;
    border-radius: 16px;
    color: var(--cwd-header-text, #253050);
    background: color-mix(in srgb, var(--cwd-header-bg, #ffffff) 82%, #ffffff);
}

.cwd-mobile-drawer .cwd-mobile-nav__list .sub-menu {
    gap: 8px;
    padding: 4px 0 0 12px;
}

.cwd-mobile-drawer .cwd-mobile-nav__list .sub-menu a {
    min-height: 44px;
    font-size: 15px;
    font-weight: 680;
    opacity: .92;
}

.cwd-mobile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 820;
    line-height: 1;
    text-decoration: none !important;
}

.cwd-mobile-action svg {
    width: 18px;
    height: 18px;
}

.cwd-mobile-action--primary {
    background: var(--cwd-header-button-bg, var(--cw-color-primary, #d6a84f));
    color: var(--cwd-header-button-text, var(--cw-color-primary-contrast, #111111)) !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .14);
}

.cwd-mobile-action--whatsapp,
.cwd-mobile-action--ghost {
    border: 1px solid color-mix(in srgb, var(--cwd-header-text, #253050) 12%, transparent);
    background: color-mix(in srgb, var(--cwd-header-bg, #ffffff) 82%, #ffffff);
    color: var(--cwd-header-text, #253050) !important;
}

.cwd-mobile-action--whatsapp {
    color: var(--cwd-header-button-bg, #16a34a) !important;
}

@media (max-width: 380px) {
    .cwd-header--mobile .cwd-header__logo--mobile {
        max-width: calc(100vw - 122px);
    }

    .cwd-header__mobile-actions {
        gap: 7px !important;
    }

    .cwd-icon-link,
    .cwd-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .cwd-mobile-drawer {
        width: min(440px, 94vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cwd-mobile-menu__backdrop,
    .cwd-mobile-drawer {
        transition: none !important;
    }
}

/* ============================================================
   ClientyWeb · sistema de componentes reutilizables
   v2.8.0: kit visual base para nuevas templates.
============================================================ */
.cw-page {
    width: 100%;
    overflow-x: clip;
    background: var(--cw-page-bg, #faf7f1);
    color: var(--cw-color-text, #182033);
}

.cw-container {
    width: min(var(--cw-section-max-width, 1120px), calc(100% - 32px));
    margin-inline: auto;
}

.cw-section {
    padding: clamp(42px, 6vw, var(--cw-section-padding-desktop, 64px)) 0;
}

.cw-section-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.cw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cw-color-primary, #d6a84f);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.15;
    text-transform: uppercase;
}

.cw-title,
.cw-section-title {
    margin: 12px 0 14px;
    color: var(--cw-text-strong, #0f172a);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.03;
    letter-spacing: -.035em;
}

.cw-text,
.cw-section-text {
    margin: 0;
    color: var(--cw-text-body, var(--cw-color-muted, #667085));
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.75;
}

.cw-card {
    border-radius: var(--cw-radius, 18px);
    background: var(--cw-card-bg, #ffffff);
    border: 1px solid var(--cw-card-border, rgba(var(--cw-color-primary-rgb,214,168,79), .20));
    box-shadow: var(--cw-card-shadow, 0 24px 70px rgba(15,23,42,.08));
    color: var(--cw-text-body, var(--cw-color-muted, #667085));
}

.cw-card__title,
.cw-feature-card h3,
.cw-contact-card strong,
.cw-related-links strong {
    color: var(--cw-text-strong, #0f172a);
}

.cw-card__content,
.cw-card__content p,
.cw-feature-card__text,
.cw-feature-card__text p {
    color: var(--cw-text-body, var(--cw-color-muted, #667085));
}

.cw-grid,
.cw-feature-grid {
    display: grid;
    gap: clamp(16px, 2vw, 24px);
}

.cw-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cw-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cw-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.cw-split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    gap: clamp(22px, 4vw, 46px);
    align-items: start;
}

.cw-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.cw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: var(--cw-button-radius, 999px);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.cw-btn:hover,
.cw-btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.cw-btn--primary,
.eag-btn-primary.cw-btn {
    color: var(--cw-color-primary-contrast, #111111) !important;
    background: var(--cw-color-primary, #d6a84f);
    border: 1px solid color-mix(in srgb, var(--cw-color-primary, #d6a84f) 82%, #000);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .12);
}

.cw-btn--secondary,
.eag-btn-secondary.cw-btn {
    color: var(--cw-text-strong, #0f172a) !important;
    background: #ffffff;
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79), .34);
}

.cw-glass {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.44);
    box-shadow: 0 24px 70px rgba(15,23,42,.11);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.cw-feature-card {
    padding: clamp(22px, 2.4vw, 30px);
}

.cw-feature-card__icon,
.cw-contact-card__icon {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 999px;
    color: var(--cw-color-primary, #d6a84f);
    background: rgba(var(--cw-color-primary-rgb,214,168,79), .14);
    font-size: 20px;
    font-weight: 900;
}

.cw-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.cw-contact-card {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 22px;
    text-decoration: none !important;
}

.cw-contact-card span:last-child {
    color: var(--cw-text-body, var(--cw-color-muted, #667085));
    overflow-wrap: anywhere;
}

.cw-related-links {
    padding: 20px;
}

.cw-related-links ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.cw-related-links a {
    color: var(--cw-color-text, #182033);
    text-decoration: none !important;
}

.cw-related-links a:hover {
    color: var(--cw-color-primary, #d6a84f);
}

@media (max-width: 980px) {
    .cw-grid--3,
    .cw-grid--4,
    .cw-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cw-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cw-container {
        width: min(100% - 24px, var(--cw-section-max-width, 1120px));
    }

    .cw-section {
        padding: var(--cw-section-padding-mobile, 36px) 0;
    }

    .cw-grid--2,
    .cw-grid--3,
    .cw-grid--4,
    .cw-contact-grid {
        grid-template-columns: 1fr;
    }

    .cw-section-head {
        text-align: left;
        margin-bottom: 24px;
    }

    .cw-title,
    .cw-section-title {
        font-size: clamp(28px, 8.5vw, 40px);
    }

    .cw-btns,
    .cw-btn {
        width: 100%;
    }
}

/* ============================================================
   ClientyWeb · WooCommerce premium
   Acabado visual seguro para tienda, categorías, fichas,
   carrito y checkout sin sustituir templates críticas.
============================================================ */

body.clientyweb-woo-premium.woocommerce,
body.clientyweb-woo-premium.woocommerce-page {
    background:
        radial-gradient(circle at 7% 0%, rgba(var(--cw-color-primary-rgb, 214,168,79), .12), transparent 34%),
        #faf7f1;
}

body.clientyweb-woo-premium .woocommerce .woocommerce-notices-wrapper,
body.clientyweb-woo-premium.woocommerce .woocommerce-notices-wrapper {
    width: min(var(--cw-section-max-width, 1120px), calc(100% - 32px));
    margin: 24px auto 0;
}

body.clientyweb-woo-premium .woocommerce-message,
body.clientyweb-woo-premium .woocommerce-info,
body.clientyweb-woo-premium .woocommerce-error {
    border: 1px solid rgba(var(--cw-color-primary-rgb, 214,168,79), .22);
    border-top: 0;
    border-radius: 18px;
    background: #ffffff;
    color: var(--cw-color-text, #182033);
    box-shadow: 0 16px 36px rgba(17,17,17,.06);
}

body.clientyweb-woo-premium .woocommerce-message::before,
body.clientyweb-woo-premium .woocommerce-info::before {
    color: var(--cw-color-primary, #d6a84f);
}

body.clientyweb-woo-premium .woocommerce .products,
body.clientyweb-woo-premium.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

body.clientyweb-woo-premium .woocommerce ul.products li.product,
body.clientyweb-woo-premium.woocommerce ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 0 18px;
    border: 1px solid rgba(var(--cw-color-primary-rgb, 214,168,79), .18);
    border-radius: 28px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(17,17,17,.07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.clientyweb-woo-premium .woocommerce ul.products li.product:hover,
body.clientyweb-woo-premium.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--cw-color-primary-rgb, 214,168,79), .44);
    box-shadow: 0 24px 60px rgba(17,17,17,.10);
}

body.clientyweb-woo-premium .woocommerce ul.products li.product a img,
body.clientyweb-woo-premium.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 0 16px;
    background: #f8fafc;
}

body.clientyweb-woo-premium .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.clientyweb-woo-premium.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 2.4em;
    margin: 0;
    padding: 0 18px;
    color: var(--cw-color-dark, #111111);
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

body.clientyweb-woo-premium .woocommerce ul.products li.product .price,
body.clientyweb-woo-premium.woocommerce ul.products li.product .price {
    display: block;
    padding: 8px 18px 0;
    color: var(--cw-color-dark, #111111);
    font-size: 18px;
    font-weight: 900;
}

body.clientyweb-woo-premium .woocommerce ul.products li.product .price del {
    color: var(--cw-color-muted, #667085);
    font-size: .8em;
    font-weight: 600;
}

body.clientyweb-woo-premium .woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

body.clientyweb-woo-premium .woocommerce span.onsale,
body.clientyweb-woo-premium.woocommerce span.onsale {
    min-width: 0;
    min-height: 0;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--cw-color-dark, #111111);
    color: var(--cw-color-dark-contrast, #ffffff);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

body.clientyweb-woo-premium .woocommerce a.button,
body.clientyweb-woo-premium .woocommerce button.button,
body.clientyweb-woo-premium .woocommerce input.button,
body.clientyweb-woo-premium.woocommerce a.button,
body.clientyweb-woo-premium.woocommerce button.button,
body.clientyweb-woo-premium.woocommerce input.button {
    border-radius: var(--cw-button-radius, 999px);
    background: var(--cw-color-dark, #111111);
    color: var(--cw-color-dark-contrast, #ffffff);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(17,17,17,.15);
}

body.clientyweb-woo-premium .woocommerce ul.products li.product .button,
body.clientyweb-woo-premium.woocommerce ul.products li.product .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 16px 18px 0;
    padding: 10px 18px;
}

body.clientyweb-woo-premium .woocommerce-result-count,
body.clientyweb-woo-premium .woocommerce-ordering,
body.clientyweb-woo-premium.woocommerce .woocommerce-result-count,
body.clientyweb-woo-premium.woocommerce .woocommerce-ordering {
    margin-bottom: 22px;
}

body.clientyweb-woo-premium .woocommerce-ordering select,
body.clientyweb-woo-premium.woocommerce .woocommerce-ordering select {
    min-height: 44px;
    padding: 8px 34px 8px 14px;
    border: 1px solid rgba(17,17,17,.12);
    border-radius: 999px;
    background: #fff;
    color: var(--cw-color-text, #182033);
}

body.clientyweb-woo-premium .woocommerce table.shop_table,
body.clientyweb-woo-premium.woocommerce table.shop_table {
    border: 1px solid rgba(var(--cw-color-primary-rgb, 214,168,79), .20);
    border-radius: 24px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(17,17,17,.06);
}

body.clientyweb-woo-premium .woocommerce table.shop_table th,
body.clientyweb-woo-premium.woocommerce table.shop_table th {
    color: var(--cw-color-dark, #111111);
    font-weight: 900;
}

body.clientyweb-woo-premium .woocommerce-cart .cart-collaterals .cart_totals,
body.clientyweb-woo-premium .woocommerce-checkout-review-order,
body.clientyweb-woo-premium .woocommerce-checkout #customer_details,
body.clientyweb-woo-premium.woocommerce-cart .cart-collaterals .cart_totals,
body.clientyweb-woo-premium.woocommerce-checkout .woocommerce-checkout-review-order,
body.clientyweb-woo-premium.woocommerce-checkout #customer_details {
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(var(--cw-color-primary-rgb, 214,168,79), .20);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(17,17,17,.06);
}

body.clientyweb-woo-premium .woocommerce form .form-row input.input-text,
body.clientyweb-woo-premium .woocommerce form .form-row textarea,
body.clientyweb-woo-premium .woocommerce form .form-row select,
body.clientyweb-woo-premium.woocommerce form .form-row input.input-text,
body.clientyweb-woo-premium.woocommerce form .form-row textarea,
body.clientyweb-woo-premium.woocommerce form .form-row select {
    min-height: 48px;
    border: 1px solid rgba(17,17,17,.12);
    border-radius: 16px;
    background: #ffffff;
    color: var(--cw-color-text, #182033);
}

body.clientyweb-woo-premium .woocommerce form .form-row textarea,
body.clientyweb-woo-premium.woocommerce form .form-row textarea {
    min-height: 130px;
}

.clientyweb-woo-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(var(--cw-section-max-width, 1120px), calc(100% - 32px));
    margin: 20px auto;
}

.clientyweb-woo-trust--single {
    width: 100%;
    margin: 18px 0;
}

.clientyweb-woo-trust__item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(var(--cw-color-primary-rgb, 214,168,79), .18);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17,17,17,.045);
}

.clientyweb-woo-trust__item > span {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(var(--cw-color-primary-rgb, 214,168,79), .14);
    color: var(--cw-color-dark, #111111);
    font-weight: 900;
}

.clientyweb-woo-trust__item strong {
    color: var(--cw-color-dark, #111111);
    font-size: 13px;
}

.clientyweb-woo-trust__item small {
    color: var(--cw-color-muted, #667085);
    line-height: 1.35;
}

.cwd-product-grid,
.cwd-term-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.cwd-product-card,
.cwd-term-card {
    border: 1px solid rgba(var(--cw-color-primary-rgb, 214,168,79), .18);
    border-radius: 28px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(17,17,17,.07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cwd-product-card:hover,
.cwd-term-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--cw-color-primary-rgb, 214,168,79), .44);
    box-shadow: 0 24px 60px rgba(17,17,17,.10);
}

.cwd-product-card__media {
    display: block;
    background: #f8fafc;
}

.cwd-product-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cwd-product-card__body {
    padding: 18px;
}

.cwd-product-card h3 {
    min-height: 2.4em;
    margin: 0 0 10px;
    color: var(--cw-color-dark, #111111);
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.cwd-product-card h3 a,
.cwd-term-card {
    color: inherit;
    text-decoration: none;
}

.cwd-product-card__price {
    margin-bottom: 14px;
    color: var(--cw-color-dark, #111111);
    font-size: 18px;
    font-weight: 900;
}

.cwd-term-card {
    display: grid;
    gap: 8px;
    min-height: 140px;
    padding: 24px;
}

.cwd-term-card strong {
    color: var(--cw-color-dark, #111111);
    font-size: 20px;
    letter-spacing: -.03em;
}

.cwd-term-card span {
    color: var(--cw-color-muted, #667085);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    body.clientyweb-woo-premium .woocommerce .products,
    body.clientyweb-woo-premium.woocommerce ul.products,
    .cwd-product-grid,
    .cwd-term-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    body.clientyweb-woo-premium .woocommerce .products,
    body.clientyweb-woo-premium.woocommerce ul.products,
    .cwd-product-grid,
    .cwd-term-grid,
    .clientyweb-woo-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.clientyweb-woo-premium .woocommerce .products,
    body.clientyweb-woo-premium.woocommerce ul.products,
    .cwd-product-grid,
    .cwd-term-grid,
    .clientyweb-woo-trust {
        grid-template-columns: 1fr;
    }
}



/* ============================================================
   ClientyWeb · legales inteligentes por actividad
   Bloques condicionales para Aviso Legal, Privacidad y Cookies.
============================================================ */
.eag-legal-smart-block{
    margin:34px 0 18px;
    padding:24px;
    border:1px solid rgba(var(--cw-color-primary-rgb,214,168,79),.26);
    border-radius:26px;
    background:linear-gradient(135deg,#fffdf8 0%,#ffffff 68%);
    box-shadow:0 16px 42px rgba(15,23,42,.055);
}
.eag-legal-feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:12px;
    margin:20px 0 0;
}
.eag-legal-feature-grid article{
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:14px 16px;
    border:1px solid rgba(15,23,42,.07);
    border-radius:18px;
    background:#fff;
    color:var(--cw-text-strong,#0f172a);
}
.eag-legal-feature-grid span{
    display:grid;
    place-items:center;
    flex:0 0 24px;
    width:24px;
    height:24px;
    border-radius:999px;
    background:rgba(var(--cw-color-primary-rgb,214,168,79),.18);
    color:var(--cw-color-dark,#111);
    font-weight:900;
}
.eag-legal-feature-grid strong{
    color:var(--cw-text-strong,#0f172a);
    font-size:15px;
    line-height:1.35;
}
.eag-legal-smart-summary > strong{
    display:block;
    margin-bottom:8px;
    color:var(--cw-text-strong,#0f172a);
    font-size:18px;
    line-height:1.2;
}
.eag-legal-smart-summary p{
    margin:0 0 12px!important;
}
.eag-legal-smart-summary small{
    display:block;
    margin-top:12px;
    color:var(--cw-color-muted,#667085);
    line-height:1.5;
}
.eag-legal-pills{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.eag-legal-pills span{
    display:inline-flex;
    align-items:center;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(var(--cw-color-primary-rgb,214,168,79),.14);
    border:1px solid rgba(var(--cw-color-primary-rgb,214,168,79),.22);
    color:var(--cw-text-strong,#0f172a);
    font-size:12px;
    font-weight:800;
}
.eag-legal-table-wrap{
    width:100%;
    overflow-x:auto;
    margin:20px 0 30px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:22px;
    background:#fff;
    box-shadow:0 12px 32px rgba(15,23,42,.045);
}
.eag-legal-table{
    width:100%;
    border-collapse:collapse;
    min-width:760px;
}
.eag-legal-table th,
.eag-legal-table td{
    padding:15px 16px;
    border-bottom:1px solid rgba(15,23,42,.07);
    text-align:left;
    vertical-align:top;
    color:var(--cw-text-body,#475467);
    font-size:15px;
    line-height:1.55;
}
.eag-legal-table thead th{
    background:#fbfaf7;
    color:var(--cw-text-strong,#0f172a);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.06em;
}
.eag-legal-table tbody th{
    color:var(--cw-text-strong,#0f172a);
    font-weight:800;
}
.eag-legal-table tr:last-child th,
.eag-legal-table tr:last-child td{
    border-bottom:0;
}
@media(max-width:640px){
    .eag-legal-smart-block{padding:18px;border-radius:22px;}
    .eag-legal-feature-grid{grid-template-columns:1fr;}
    .eag-legal-table{min-width:640px;}
}


/* ============================================================
   ClientyWeb · shortcodes y tokens dinámicos
   Salidas reutilizables de contacto, datos legales y botones.
============================================================ */
.clientyweb-contact-list,
.clientyweb-legal-data{
    display:grid;
    gap:12px;
    width:100%;
}
.clientyweb-contact-list{
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.clientyweb-contact-list__item,
.clientyweb-legal-data dd,
.clientyweb-legal-data dt{
    min-width:0;
}
.clientyweb-contact-list__item a,
.clientyweb-contact-list__item span,
.clientyweb-contact-link{
    display:flex;
    align-items:center;
    gap:8px;
    min-height:46px;
    padding:12px 14px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:16px;
    background:#fff;
    color:var(--cw-text-strong,#0f172a);
    text-decoration:none;
    box-shadow:0 10px 26px rgba(15,23,42,.05);
    overflow-wrap:anywhere;
}
.clientyweb-contact-list__item a:hover,
.clientyweb-contact-link:hover{
    border-color:rgba(var(--cw-color-primary-rgb,214,168,79),.36);
    background:#fffdf8;
    color:var(--cw-color-dark,#111);
}
.clientyweb-contact-list__item strong{
    color:var(--cw-color-dark,#111);
    font-weight:900;
}
.clientyweb-legal-data{
    grid-template-columns:minmax(160px,.35fr) minmax(0,1fr);
    padding:18px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:20px;
    background:#fff;
    box-shadow:0 12px 32px rgba(15,23,42,.045);
}
.clientyweb-legal-data dt{
    color:var(--cw-text-strong,#0f172a);
    font-weight:900;
}
.clientyweb-legal-data dd{
    margin:0;
    color:var(--cw-text-body,#475467);
    overflow-wrap:anywhere;
}
.clientyweb-shortcode-button{
    width:max-content;
    max-width:100%;
}
@media(max-width:640px){
    .clientyweb-contact-list{grid-template-columns:1fr;}
    .clientyweb-legal-data{grid-template-columns:1fr;}
    .clientyweb-legal-data dt{margin-top:4px;}
}

/* ============================================================
   ClientyWeb · franjas automáticas Home modelo
============================================================ */
.clientyweb-auto-home{width:100%;padding:clamp(46px,6vw,86px) 0;background:linear-gradient(180deg,var(--cw-color-light,#fff),color-mix(in srgb,var(--cw-color-primary,#d6a84f) 8%,#fff));color:var(--cw-color-text,#182033)}
.clientyweb-auto-section{width:min(var(--cw-section-max-width,1120px),calc(100% - 32px));margin:0 auto clamp(38px,5vw,66px)}
.clientyweb-auto-section:last-child{margin-bottom:0}
.clientyweb-auto-head{display:flex;align-items:end;justify-content:space-between;gap:18px;margin:0 0 22px}
.clientyweb-auto-head span{display:inline-flex;margin-bottom:8px;color:var(--cw-color-primary,#d6a84f);font-weight:900;font-size:12px;letter-spacing:.16em;text-transform:uppercase}
.clientyweb-auto-head h2{margin:0;color:var(--cw-color-text,#182033);font-size:clamp(1.85rem,3.2vw,3rem);line-height:1.04;letter-spacing:-.04em;text-wrap:balance}
.clientyweb-auto-head a{white-space:nowrap;color:var(--cw-color-text,#182033);font-weight:900;text-decoration:none;border-bottom:2px solid var(--cw-color-primary,#d6a84f);padding-bottom:4px}
.clientyweb-auto-grid{display:grid;gap:18px}
.clientyweb-auto-grid--categories{grid-template-columns:repeat(3,minmax(0,1fr))}
.clientyweb-auto-grid--products{grid-template-columns:repeat(4,minmax(0,1fr))}
.clientyweb-auto-grid--posts{grid-template-columns:repeat(3,minmax(0,1fr))}
.clientyweb-auto-card{position:relative;overflow:hidden;display:block;border-radius:calc(var(--cw-radius,18px) + 8px);background:#fff;border:1px solid color-mix(in srgb,var(--cw-color-primary,#d6a84f) 22%,#e8edf3);box-shadow:0 20px 60px rgba(16,24,40,.08);text-decoration:none;color:var(--cw-color-text,#182033)}
.clientyweb-auto-card img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.clientyweb-auto-card:hover img{transform:scale(1.035)}
.clientyweb-auto-card--category{min-height:260px;color:#fff}
.clientyweb-auto-card--category:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.68));z-index:1}
.clientyweb-auto-card--category img{position:absolute;inset:0}
.clientyweb-auto-card--category div{position:absolute;left:18px;right:18px;bottom:18px;z-index:2;padding:16px;border-radius:20px;background:rgba(0,0,0,.28);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.18)}
.clientyweb-auto-card--category strong{display:block;color:#fff;font-size:1.35rem;line-height:1.1;letter-spacing:-.025em}
.clientyweb-auto-card--category span{display:block;margin-top:6px;color:rgba(255,255,255,.78);font-size:.92rem;font-weight:700}
.clientyweb-auto-card--product,.clientyweb-auto-card--post{display:flex;flex-direction:column;min-height:100%}
.clientyweb-auto-card__image{display:block;aspect-ratio:1/1;background:#f7f7f7;overflow:hidden;text-decoration:none}
.clientyweb-auto-card--post .clientyweb-auto-card__image{aspect-ratio:16/10}
.clientyweb-auto-card__body{padding:18px;display:flex;flex-direction:column;gap:10px;flex:1}
.clientyweb-auto-card__body h3{margin:0;color:var(--cw-color-text,#182033);font-size:1.08rem;line-height:1.2;letter-spacing:-.02em}
.clientyweb-auto-card__body h3 a{color:inherit;text-decoration:none}
.clientyweb-auto-card__body p{margin:0;color:var(--cw-color-muted,#667085);line-height:1.55}
.clientyweb-auto-price{color:var(--cw-color-text,#182033);font-weight:900;font-size:1rem}.clientyweb-auto-price del{opacity:.5}.clientyweb-auto-price ins{text-decoration:none;color:var(--cw-color-primary,#d6a84f)}
.clientyweb-auto-button{margin-top:auto;display:inline-flex;justify-content:center;align-items:center;min-height:42px;border-radius:var(--cw-button-radius,999px);background:var(--cw-color-text,#182033);color:#fff!important;text-decoration:none!important;font-weight:900;padding:10px 16px}
.clientyweb-auto-date{color:var(--cw-color-primary,#d6a84f);font-size:.78rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
@media(max-width:980px){.clientyweb-auto-grid--products{grid-template-columns:repeat(2,minmax(0,1fr))}.clientyweb-auto-grid--categories,.clientyweb-auto-grid--posts{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.clientyweb-auto-home{padding:42px 0}.clientyweb-auto-section{width:min(100% - 24px,var(--cw-section-max-width,1120px));margin-bottom:42px}.clientyweb-auto-head{display:block}.clientyweb-auto-head a{display:inline-flex;margin-top:12px}.clientyweb-auto-grid--products,.clientyweb-auto-grid--categories,.clientyweb-auto-grid--posts{grid-template-columns:1fr}.clientyweb-auto-card--category{min-height:230px}.clientyweb-auto-card__body{padding:16px}}

/* ClientyWeb · shortcode pantalla publicitaria */
.clientyweb-screen-promo-shortcode{
    width:100%;
    padding:clamp(36px,5vw,72px) 16px;
    background:linear-gradient(135deg,var(--cw-color-dark,#111827),color-mix(in srgb,var(--cw-color-primary,#d6a84f) 30%,#111827));
    color:#fff;
}
.clientyweb-screen-promo-shortcode__inner{
    width:min(var(--cw-section-max-width,1120px),calc(100% - 24px));
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:clamp(24px,4vw,42px);
    border:1px solid rgba(255,255,255,.14);
    border-radius:clamp(24px,3vw,38px);
    background:rgba(255,255,255,.08);
    box-shadow:0 28px 70px rgba(0,0,0,.22);
    backdrop-filter:blur(14px);
}
.clientyweb-screen-promo-shortcode__kicker{
    display:inline-flex;
    margin-bottom:10px;
    color:var(--cw-color-primary,#d6a84f);
    font-size:12px;
    font-weight:950;
    letter-spacing:.16em;
    text-transform:uppercase;
}
.clientyweb-screen-promo-shortcode h2{
    margin:0 0 10px;
    color:#fff;
    font-size:clamp(30px,4vw,56px);
    line-height:1;
    letter-spacing:-.055em;
}
.clientyweb-screen-promo-shortcode p{
    max-width:780px;
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:17px;
    line-height:1.65;
}
.clientyweb-screen-promo-shortcode small{
    display:block;
    margin-top:12px;
    color:rgba(255,255,255,.64);
    font-weight:800;
}
.clientyweb-screen-promo-shortcode__button{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:14px 22px;
    border-radius:999px;
    background:var(--cw-color-primary,#d6a84f);
    color:var(--cw-color-primary-contrast,#111827)!important;
    text-decoration:none!important;
    font-weight:950;
    box-shadow:0 18px 42px rgba(0,0,0,.25);
}
@media(max-width:780px){
    .clientyweb-screen-promo-shortcode__inner{display:grid;text-align:left}.clientyweb-screen-promo-shortcode__button{width:100%}
}

/* ============================================================
   ClientyWeb · catálogo WooCommerce Pro + barra inferior carrito
============================================================ */
body.clientyweb-has-cart-bar {
    padding-bottom: 92px;
}

.cwd-product-grid--commerce {
    align-items: stretch;
}

.cwd-product-card--pro {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background: #ffffff;
}

.cwd-product-card--pro .cwd-product-card__media {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 0%, rgba(var(--cw-color-primary-rgb,214,168,79),.18), transparent 44%),
        #f8fafc;
}

.cwd-product-card--pro .cwd-product-card__image {
    aspect-ratio: 4 / 3;
    transition: transform .22s ease;
}

.cwd-product-card--pro:hover .cwd-product-card__image {
    transform: scale(1.035);
}

.cwd-product-card__image--placeholder {
    display: grid;
    place-items: center;
    min-height: 220px;
    background:
        radial-gradient(circle at 30% 0%, rgba(var(--cw-color-primary-rgb,214,168,79),.22), transparent 44%),
        linear-gradient(145deg, #fff, #f6efe0);
}

.cwd-product-card__image--placeholder span {
    color: var(--cw-color-muted,#667085);
    font-size: 13px;
    font-weight: 800;
}

.cwd-product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--cw-color-dark,#111111);
    background: var(--cw-color-primary,#d6a84f);
    font-size: 12px;
    font-weight: 950;
    box-shadow: 0 10px 24px rgba(17,17,17,.18);
}

.cwd-product-card--pro .cwd-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.cwd-product-card__excerpt {
    min-height: 3.1em;
    margin: 0 0 14px;
    color: var(--cw-color-muted,#667085);
    font-size: 14px;
    line-height: 1.55;
}

.cwd-product-card--pro .cwd-product-card__price {
    margin-top: auto;
    margin-bottom: 14px;
    font-size: 20px;
}

.cwd-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.cwd-product-card__add,
.cwd-product-card__detail {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cwd-product-card__add {
    color: #ffffff !important;
    background: var(--cw-color-dark,#111111);
    box-shadow: 0 12px 28px rgba(17,17,17,.14);
}

.cwd-product-card__add:hover,
.cwd-product-card__add:focus {
    color: #ffffff !important;
    transform: translateY(-1px);
    background: #2a241d;
}

.cwd-product-card__detail {
    color: var(--cw-color-dark,#111111) !important;
    background: rgba(var(--cw-color-primary-rgb,214,168,79),.14);
    border: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),.28);
}

.cwd-product-card__detail:hover,
.cwd-product-card__detail:focus {
    color: var(--cw-color-dark,#111111) !important;
    background: rgba(var(--cw-color-primary-rgb,214,168,79),.24);
}

.cwd-product-card__add--wide {
    grid-column: 1 / -1;
}

.clientyweb-cart-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
    padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
    background: rgba(255,255,255,.86);
    border-top: 1px solid rgba(var(--cw-color-primary-rgb,214,168,79),.22);
    box-shadow: 0 -18px 55px rgba(17,17,17,.12);
    backdrop-filter: blur(16px);
}

.clientyweb-cart-bar__inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px 10px 18px;
    border-radius: 999px;
    background: var(--cw-color-dark,#111111);
    color: #ffffff;
    box-shadow: 0 18px 48px rgba(17,17,17,.20);
}

.clientyweb-cart-bar__status {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.clientyweb-cart-bar__label {
    color: var(--cw-color-primary,#d6a84f);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.clientyweb-cart-bar__status strong {
    color: #ffffff;
    font-size: 16px;
    white-space: nowrap;
}

.clientyweb-cart-bar__total {
    color: rgba(255,255,255,.78);
    font-weight: 850;
    white-space: nowrap;
}

.clientyweb-cart-bar__actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.clientyweb-cart-bar__btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none !important;
    white-space: nowrap;
}

.clientyweb-cart-bar__btn--primary {
    color: var(--cw-color-dark,#111111) !important;
    background: var(--cw-color-primary,#d6a84f);
}

.clientyweb-cart-bar__btn--ghost {
    color: #ffffff !important;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
}

@media (max-width: 700px) {
    body.clientyweb-has-cart-bar {
        padding-bottom: 126px;
    }
    .clientyweb-cart-bar__inner {
        align-items: stretch;
        border-radius: 24px;
        flex-direction: column;
        padding: 14px;
    }
    .clientyweb-cart-bar__status {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .clientyweb-cart-bar__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .cwd-product-card__actions {
        grid-template-columns: 1fr;
    }
}

/* ClientyWeb v4.24.1 · logo mobile más legible por defecto. */
@media (max-width: 680px) {
    .cwd-header--mobile .cwd-header__logo-image,
    .cwd-header--mobile .cwd-header__logo img {
        width: auto;
        max-width: min(var(--cwd-header-logo-mobile-width, 190px), calc(100vw - 132px)) !important;
        max-height: min(var(--cwd-header-logo-mobile-height, 58px), 72px) !important;
        object-fit: contain;
    }
}

/* ClientyWeb v4.24.2 · legibilidad catálogo productos/categorías. */
.clientyweb-catalog-chip.has-image .clientyweb-catalog-chip__label,
.clientyweb-catalog-chip.has-image .clientyweb-catalog-chip__count{
    align-self:flex-start;
    width:fit-content;
    max-width:100%;
    color:var(--cw-color-dark,#111111)!important;
    background:rgba(255,255,255,.9);
    border:1px solid rgba(255,255,255,.72);
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    backdrop-filter:blur(10px);
}
.clientyweb-catalog-chip.has-image .clientyweb-catalog-chip__label{
    padding:8px 12px;
    border-radius:999px;
}
.clientyweb-catalog-chip.has-image .clientyweb-catalog-chip__count{
    margin-top:2px;
    padding:6px 10px;
    border-radius:999px;
    opacity:1;
    font-size:11px;
}
.cwd-product-card--pro .cwd-product-card__body{
    position:relative;
    z-index:1;
    background:rgba(255,255,255,.98);
    border-top:1px solid rgba(15,23,42,.06);
}
.cwd-product-card--pro .cwd-product-card__body h3,
.cwd-product-card--pro .cwd-product-card__body h3 a,
.cwd-product-card--pro .cwd-product-card__price{
    color:var(--cw-color-dark,#111111)!important;
}
