:root {
    --cco-red: #b01b1b;
    --cco-red-dark: #931515;
    --cco-brown: #321f16;
    --cco-cream: #fff8f4;
    --cco-soft-white: #fffbf7;
    --cco-beige: #f3ece4;
    --cco-peach: #fdd193;
    --cco-gold: #f2e2bf;
    --cco-orange: #e26a17;
    --cco-ink: #1f1a18;
    --cco-page-width: 1280px;
    --cco-radius: 14px;
    --cco-shadow: 0 18px 44px rgba(50, 31, 22, .18);
}

/* Aislamiento frente a Neve y Elementor */
.cco-page,
.cco-page *,
.cco-hero,
.cco-hero *,
.cco-calculator,
.cco-calculator *,
.cco-testimonials,
.cco-testimonials * {
    box-sizing: border-box;
}

.cco-page {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    background: #fff;
    color: var(--cco-ink);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.35;
}

.cco-hero {
    font-family: "Montserrat", Arial, sans-serif;
}

.cco-page img,
.cco-hero img,
.cco-calculator img,
.cco-testimonials img {
    display: block;
    max-width: 100%;
}

.cco-page a,
.cco-page button,
.cco-page input,
.cco-page select,
.cco-hero a,
.cco-hero button,
.cco-hero input,
.cco-hero select,
.cco-calculator button,
.cco-calculator input,
.cco-testimonials button {
    font: inherit;
}

.cco-page a {
    color: inherit;
    text-decoration: none;
}

.cco-page h1,
.cco-page h2,
.cco-page h3,
.cco-page p,
.cco-hero h2,
.cco-hero p,
.cco-calculator h2,
.cco-calculator p,
.cco-testimonials h2,
.cco-testimonials h3,
.cco-testimonials p {
    margin-top: 0;
}

/* Reset de contenedores de Neve y Elementor solo en páginas CCO. */
body.cco-fullwidth .site-content,
body.cco-fullwidth .container.single-page-container,
body.cco-fullwidth .container,
body.cco-fullwidth .container-fluid,
body.cco-fullwidth .nv-single-page-wrap,
body.cco-fullwidth .nv-content-wrap,
body.cco-fullwidth main,
body.cco-fullwidth article,
body.cco-fullwidth .elementor,
body.cco-fullwidth .elementor-section-wrap,
body.cco-fullwidth .elementor-section.elementor-section-boxed > .elementor-container,
body.cco-fullwidth .e-con.e-parent,
body.cco-fullwidth .elementor-widget,
body.cco-fullwidth .elementor-widget-container {
    width: 100%;
    max-width: none !important;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Los fondos ocupan todo el viewport; el contenido interno conserva 1280 px. */
.cco-content-shell {
    width: min(calc(100% - 48px), var(--cco-page-width));
    max-width: var(--cco-page-width);
    margin-inline: auto;
}

.cco-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.2,.75,.25,1), transform .8s cubic-bezier(.2,.75,.25,1);
}

.cco-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.cco-animate-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease var(--cco-delay, 0ms), transform .7s ease var(--cco-delay, 0ms);
}

.cco-animate-item.is-visible {
    opacity: 1;
    transform: none;
}

/* Navbar — 1280 × 100 */
.cco-navbar {
    position: relative;
    z-index: 40;
    height: 100px;
    background: #fff;
    border-bottom: 1px solid rgba(50, 31, 22, .08);
}

.cco-navbar__inner {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 300px 1fr auto;
    align-items: center;
    padding: 0 48px;
    gap: 38px;
}

.cco-navbar__logo {
    width: 276px;
    display: inline-flex;
    align-items: center;
}

.cco-navbar__logo img {
    width: 100%;
    height: auto;
}

.cco-navbar__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cco-navbar__menu a {
    position: relative;
    color: #8e1918;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.cco-navbar__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--cco-red);
    transition: right .28s ease;
}

.cco-navbar__menu a:hover::after,
.cco-navbar__menu a:focus-visible::after {
    right: 0;
}

.cco-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.cco-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--cco-brown);
    color: #fff;
    transition: transform .22s ease, background .22s ease;
}

.cco-socials a:hover,
.cco-socials a:focus-visible {
    transform: translateY(-3px);
    background: var(--cco-red);
}

.cco-socials svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.cco-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--cco-brown);
    cursor: pointer;
}

.cco-nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
}

/* Hero — 1280 × 720 */
.cco-hero {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 721px;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    font-family: "Montserrat", Arial, sans-serif;
}

.cco-hero__slides,
.cco-hero__slide,
.cco-hero__media,
.cco-hero__veil {
    position: absolute;
    inset: 0;
}

.cco-hero__slide {
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 1s ease, transform 7s linear;
    pointer-events: none;
}

.cco-hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.cco-hero__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cco-hero__media--image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cco-hero__veil {
    z-index: 2;
    background: linear-gradient(90deg, transparent 0 61%, rgba(50, 31, 22, .04) 74%, rgba(50, 31, 22, .12) 100%);
    pointer-events: none;
}

.cco-hero__inner {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--cco-page-width);
    min-height: 721px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 44px 64px 44px 760px;
}

.cco-lead-form {
    position: relative;
    width: min(403px, 100%);
    min-height: 542px;
    padding: 27px 26px 46px 33px;
    border: 1px solid #7f1e13;
    border-radius: 12px;
    background: #fbf0e1;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    color: #343333;
}

.cco-lead-form__header h2 {
    margin: 0 0 24px;
    color: #801e14;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -.025em;
}

.cco-field {
    display: block;
    margin: 0 0 23px;
}

.cco-field:last-of-type {
    margin-bottom: 32px;
}

.cco-field > span {
    display: block;
    margin: 0 0 7px;
    color: #343333;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}

.cco-field input,
.cco-field select {
    display: block;
    width: 100%;
    height: 25px;
    min-height: 25px;
    margin: 0;
    padding: 0 12px !important;
    border: 1px solid #625d54 !important;
    border-radius: 13px !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #343333;
    font-size: 11px;
    line-height: 23px;
    font-weight: 400;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.cco-field select {
    appearance: auto;
    padding-right: 30px !important;
}

.cco-field input:focus,
.cco-field input:focus-visible,
.cco-field select:focus,
.cco-field select:focus-visible {
    border-color: #801e14 !important;
    outline: 0 !important;
    box-shadow: 0 0 0 2px rgba(128, 30, 20, .10) !important;
}

.cco-btn {
    border: 1px solid var(--cco-red);
    border-radius: 999px;
    background: transparent;
    color: var(--cco-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.cco-btn:hover,
.cco-btn:focus-visible {
    background: var(--cco-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(176, 27, 27, .2);
}

.cco-btn:disabled {
    opacity: .70;
    cursor: not-allowed;
    transform: none;
}

.cco-btn--form {
    width: 100%;
    height: 41px;
    margin: 0;
    padding: 0px 0px;
    border-color: #801e14;
    background: #fffbf7;
    color: #801e14;
    font-size: 14px;
    line-height: 39px;
}

.cco-form-status {
    display: none;
    width: 100%;
    min-height: 0;
    margin: 13px 0 0;
    padding: 12px 13px;
    border: 1px solid transparent;
    border-radius: 12px;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.35;
    text-align: left;
    box-shadow: 0 8px 22px rgba(50, 31, 22, .10);
}

.cco-form-status::before {
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-top: 1px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.cco-form-status__content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 3px;
}

.cco-form-status__title {
    display: block;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.cco-form-status__detail {
    display: block;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 500;
    opacity: .78;
}

.cco-form-status.is-success,
.cco-form-status.is-error {
    display: flex;
    animation: cco-status-in .32s cubic-bezier(.2, .75, .25, 1) both;
}

.cco-form-status.is-success {
    border-color: rgba(25, 113, 62, .22);
    background: #eef9f2;
    color: #145d34;
}

.cco-form-status.is-success::before {
    content: "✓";
    background: #19713e;
    color: #fff;
}

.cco-form-status.is-error {
    border-color: rgba(176, 27, 27, .2);
    background: #fff1f0;
    color: #9f1818;
}

.cco-form-status.is-error::before {
    content: "!";
    background: var(--cco-red);
    color: #fff;
}

@keyframes cco-status-in {
    from {
        opacity: 0;
        transform: translateY(6px) scale(.985);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.cco-honeypot { position: absolute !important; left: -9999px !important; }

.cco-floating-whatsapp {
    position: absolute;
    z-index: 8;
    right: 12px;
    bottom: 12px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .22);
    transition: transform .2s ease;
}

.cco-floating-whatsapp:hover { transform: scale(1.08); }
.cco-floating-whatsapp img { width: 100%; height: 100%; object-fit: cover; }

/* Calculadora — 1280 × 530 */
.cco-calculator {
    width: 100%;
    max-width: none;
    min-height: 530px;
    margin: 0;
    background: var(--cco-red);
    color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    overflow: hidden;
}

.cco-calculator__inner {
    width: 100%;
    max-width: var(--cco-page-width);
    min-height: 530px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.cco-cup {
    position: relative;
    width: 440px;
    height: 430px;
    margin: 32px auto 0;
}

.cco-cup svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.cco-cup__liquid,
.cco-cup__surface {
    transition: y 1.05s cubic-bezier(.2,.75,.25,1), height 1.05s cubic-bezier(.2,.75,.25,1), cy 1.05s cubic-bezier(.2,.75,.25,1);
}

.cco-cup__result {
    position: absolute;
    inset: 143px 0 auto;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 5px rgba(50, 31, 22, .3);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}

.cco-cup__result span,
.cco-cup__result strong {
    display: block;
}

.cco-cup__result span {
    font-size: 18px;
    font-weight: 600;
}

.cco-cup__result strong {
    margin-top: 2px;
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
}

.cco-calculator:has(.cco-calculator__note.is-success) .cco-cup__result {
    opacity: 1;
    transform: none;
}

.cco-calculator__content {
    width: 100%;
    max-width: 500px;
    padding: 30px 68px 30px 0;
    text-align: center;
}

.cco-calculator__content h2 {
    margin-bottom: 46px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -.025em;
    text-align: left;
}

.cco-calculator__content > label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.cco-price-input {
    width: 420px;
    max-width: 100%;
    height: 60px;
    margin: 0 auto 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #fff;
}

.cco-price-input span {
    margin-right: 8px;
    font-size: 25px;
    font-weight: 400;
}

.cco-price-input,
.cco-price-input input {
    -webkit-tap-highlight-color: transparent;
}

.cco-price-input input {
    width: 175px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    background: transparent !important;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    font-weight: 400;
    text-align: left;
}

/* Anula el foco azul agregado por el navegador, Neve o Elementor. */
.cco-calculator .cco-price-input input[type="text"]:focus,
.cco-calculator .cco-price-input input[type="text"]:focus-visible,
.cco-calculator .cco-price-input input[type="text"]:active {
    border: 0 !important;
    outline: 0 !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Mantiene una señal de foco discreta y accesible en el contenedor. */
.cco-price-input:focus-within {
    border-bottom-color: #fff;
    box-shadow: 0 5px 0 -4px rgba(255, 255, 255, .55);
}

.cco-price-input input:-webkit-autofill,
.cco-price-input input:-webkit-autofill:hover,
.cco-price-input input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    transition: background-color 9999s ease-out 0s;
}

.cco-btn--calculator {
    width: 340px;
    max-width: 100%;
    height: 48px;
    border-color: #fff;
    background: #fff;
    color: var(--cco-red);
    font-size: 11px;
}

.cco-btn--calculator:hover,
.cco-btn--calculator:focus-visible {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.cco-calculator__note {
    min-height: 20px;
    margin: 17px auto 0;
    font-size: 11px;
}

.cco-calculator__note.is-error { color: #ffe5e0; }
.cco-calculator__note.is-success { color: #fff; }
.cco-calculator__note.is-neutral { color: #ffe8cc; }

/* Marquee — 1280 × 100 */
.cco-marquee {
    height: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cco-peach);
    color: var(--cco-brown);
    border-top: 1px solid rgba(50,31,22,.12);
    border-bottom: 1px solid rgba(50,31,22,.12);
}

.cco-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ccoMarquee 24s linear infinite;
}

.cco-marquee:hover .cco-marquee__track { animation-play-state: paused; }

.cco-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 24px;
    padding-right: 24px;
}

.cco-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
}

.cco-marquee__item svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

@keyframes ccoMarquee {
    to { transform: translateX(-50%); }
}

/* Bloques alternados — 4 × 530 */
.cco-feature {
    min-height: 531px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cco-cream);
    border-bottom: 1px solid var(--cco-brown);
}

.cco-feature__content,
.cco-feature__media {
    min-width: 0;
    min-height: 531px;
}

.cco-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 68px 118px;
    background: var(--cco-cream);
}

.cco-feature__content h2 {
    margin-bottom: 32px;
    color: #342b27;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.025em;
}

.cco-feature__content p {
    margin-bottom: 36px;
    color: #342b27;
    font-size: 17px;
    line-height: 1.42;
    font-weight: 400;
}

.cco-feature__content p + p {
    margin-top: -12px;
}

.cco-feature__cta {
    min-width: 342px;
    min-height: 48px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cco-red);
    border-radius: 999px;
    color: var(--cco-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color .22s ease, background .22s ease, transform .22s ease;
}

.cco-feature__cta:hover,
.cco-feature__cta:focus-visible {
    color: #fff;
    background: var(--cco-red);
    transform: translateY(-2px);
}

.cco-feature__media {
    position: relative;
    overflow: hidden;
    background: #e8ded4;
}

.cco-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.75,.25,1);
}

.cco-feature:hover .cco-feature__media img {
    transform: scale(1.035);
}

.cco-feature--reverse .cco-feature__media { order: -1; }

/* Testimonios — 1280 × 1372 */
.cco-testimonials {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 1372px;
    margin: 0;
    padding: 0;
    background: var(--cco-beige);
    color: var(--cco-ink);
    font-family: "Montserrat", Arial, sans-serif;
    text-align: center;
}

.cco-testimonials__inner {
    position: relative;
    width: 100%;
    max-width: var(--cco-page-width);
    min-height: 1372px;
    margin-inline: auto;
    padding: 140px 116px 110px;
}

.cco-testimonials__pattern {
    position: absolute;
    top: 62px;
    left: 50%;
    width: 1035px;
    max-width: calc(100% - 100px);
    display: flex;
    justify-content: space-between;
    transform: translateX(-50%);
}

.cco-testimonials__pattern span {
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    background: var(--cco-gold);
    transform: rotate(45deg);
}

.cco-testimonials__header h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.02em;
}

.cco-testimonials__header p {
    margin-bottom: 80px;
    font-size: 16px;
    line-height: 1.35;
}

.cco-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 94px;
    text-align: left;
}

.cco-testimonial-card {
    min-height: 184px;
    padding: 25px 31px 24px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(50, 31, 22, .015);
    opacity: 1;
    transform: none;
    transition: transform .28s ease, box-shadow .28s ease, opacity .55s ease var(--cco-delay, 0ms);
}

.cco-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(50, 31, 22, .12);
}

.cco-testimonial-card.is-featured {
    background: var(--cco-brown);
    color: #fff;
}

.cco-testimonial-card[hidden] { display: none; }
.cco-testimonial-card.is-extra { opacity: 0; transform: translateY(18px); }
.cco-testimonial-card.is-extra.is-visible { opacity: 1; transform: none; }

.cco-testimonial-card__eyebrow {
    display: block;
    margin-bottom: 9px;
    font-size: 9px;
    font-weight: 500;
}

.cco-testimonial-card h3 {
    margin-bottom: 7px;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.025em;
}

.cco-stars {
    margin-bottom: 13px;
    display: flex;
    gap: 6px;
    color: #d8d1ca;
    font-size: 14px;
    line-height: 1;
}

.cco-stars .is-filled { color: var(--cco-orange); }
.cco-testimonial-card.is-featured .cco-stars .is-filled { color: #fff; }

.cco-testimonial-card p {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.36;
}

.cco-btn--more {
    min-width: 310px;
    height: 48px;
    margin-top: 68px;
    font-size: 11px;
}

/* Footer — 1280 × 202 */
.cco-footer {
    min-height: 202px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    background: #fff;
}

.cco-footer .cco-socials a {
    width: 48px;
    height: 48px;
}

.cco-footer .cco-socials svg {
    width: 23px;
    height: 23px;
}

.cco-footer__copyright {
    margin: 0;
    color: var(--cco-brown);
    font-size: 9px;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 1100px) {
    .cco-navbar__inner {
        grid-template-columns: 240px 1fr auto;
        padding: 0 28px;
        gap: 20px;
    }

    .cco-navbar__logo { width: 230px; }
    .cco-navbar__menu { gap: 20px; }
    .cco-navbar__menu a { font-size: 11px; }

    .cco-hero__inner { padding-left: 54%; padding-right: 34px; }
    .cco-lead-form { width: min(403px, 100%); }

    .cco-feature__content { padding: 60px 72px; }
    .cco-feature__cta { min-width: 100%; }

    .cco-testimonials__inner { padding-left: 70px; padding-right: 70px; }
    .cco-testimonials__grid { gap: 52px; }
}

/* Mobile */
@media (max-width: 767px) {
    .cco-navbar { height: 78px; }
    .cco-navbar__inner {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }
    .cco-navbar__logo { width: 220px; }
    .cco-nav-toggle { display: block; }
    .cco-navbar__drawer {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 14px 28px rgba(50, 31, 22, .14);
        transition: max-height .35s ease;
    }
    .cco-navbar.is-open .cco-navbar__drawer { max-height: 520px; }
    .cco-navbar__menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 22px 8px;
    }
    .cco-navbar__menu a {
        display: block;
        padding: 13px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(50,31,22,.08);
    }
    .cco-navbar__drawer .cco-socials { padding: 16px 0 22px; }
    .cco-navbar__inner > .cco-socials { display: none; }

    .cco-hero {
        min-height: 1020px;
        background: #e8dac5;
    }
    .cco-hero__slide,
    .cco-hero__media,
    .cco-hero__veil { height: 405px; bottom: auto; }
    .cco-hero__media--image { background-position: 27% center; }
    .cco-hero__veil { display: none; }
    .cco-hero__inner {
        min-height: 1020px;
        align-items: flex-end;
        justify-content: center;
        padding: 430px 4px 26px;
    }
    .cco-lead-form {
        width: min(403px, 100%);
        min-height: 542px;
        padding: 27px clamp(20px, 6.3vw, 26px) 46px clamp(22px, 8vw, 33px);
    }
    .cco-field input,
    .cco-field select { height: 25px; min-height: 25px; font-size: 11px; }
    .cco-field > span { font-size: 12px; }
    .cco-btn--form { height: 41px; font-size: 14px; }

    .cco-calculator__inner { grid-template-columns: 1fr; padding: 45px 20px 54px; }
    .cco-cup { width: min(390px, 100%); height: 385px; margin: 0 auto; }
    .cco-calculator__content { max-width: 520px; padding: 0; }
    .cco-calculator__content h2 { margin-bottom: 32px; font-size: 22px; text-align: center; }
    .cco-price-input { width: min(380px, 100%); }

    .cco-marquee { height: 76px; }

    .cco-feature,
    .cco-feature__content,
    .cco-feature__media { min-height: auto; }
    .cco-feature { grid-template-columns: 1fr; }
    .cco-feature__content { padding: 58px 30px 62px; }
    .cco-feature__content h2 { font-size: 28px; }
    .cco-feature__content p { font-size: 16px; }
    .cco-feature__media,
    .cco-feature--reverse .cco-feature__media { order: -1; height: 430px; }

    .cco-testimonials {
        min-height: auto;
    }
    .cco-testimonials__inner {
        min-height: auto;
        padding: 118px 20px 82px;
    }
    .cco-testimonials__pattern { top: 48px; max-width: calc(100% - 40px); overflow: hidden; }
    .cco-testimonials__pattern span { width: 24px; height: 24px; margin-right: 15px; }
    .cco-testimonials__header p br { display: none; }
    .cco-testimonials__grid { grid-template-columns: 1fr; gap: 22px; }
    .cco-testimonial-card { min-height: 170px; }
    .cco-btn--more { min-width: min(310px, 100%); }

    .cco-footer { min-height: 180px; }
}

@media (max-width: 767px) {
    .cco-content-shell {
        width: min(calc(100% - 36px), var(--cco-page-width));
    }

    .cco-feature {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cco-reveal,
    .cco-animate-item,
    .cco-hero__slide,
    .cco-feature__media img,
    .cco-testimonial-card,
    .cco-cup__liquid,
    .cco-cup__surface {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .cco-marquee__track { animation: none; }
}

/* Cada bloque puede vivir en un widget HTML independiente de Elementor. */
.cco-navbar,
.cco-marquee,
.cco-feature,
.cco-footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-family: "Montserrat", Arial, sans-serif;
    box-sizing: border-box;
}

/* El contenido de la navbar conserva la composición de 1280 px. */
.cco-navbar__inner {
    max-width: var(--cco-page-width);
    margin-inline: auto;
}

/*
 * Los bloques alternados ocupan todo el ancho, pero sus dos columnas
 * permanecen centradas y limitadas a 640 px cada una.
 */
.cco-feature {
    grid-template-columns: repeat(2, minmax(0, calc(var(--cco-page-width) / 2)));
    justify-content: center;
}

.cco-navbar *,
.cco-marquee *,
.cco-feature *,
.cco-footer * {
    box-sizing: border-box;
}

.cco-navbar a,
.cco-feature a,
.cco-footer a {
    color: inherit;
    text-decoration: none;
}

.cco-feature h2,
.cco-feature p,
.cco-footer p {
    margin-top: 0;
}
.cco-socials--mobile { display: none; }
@media (max-width: 767px) {
    .cco-socials--mobile { display: flex; }
}
@media (min-width: 768px) {
    .cco-cup {
        width: 500px;
        height: 500px;
        margin: 0 auto;
        transform: translate(75px, -10px);
    }
}
@media (min-width: 768px) {
    .cco-calculator__content { margin-left: 60px; }
}
@media (max-width: 767px) {
    .cco-calculator__content { margin-left: auto; margin-right: auto; }
}