/* ═══════════════════════════════════════════
   LANDING PAGE — Estilos completos
   Costuras Creativas Child Theme
   Solo aplica cuando body tiene .cc-landing-page
═══════════════════════════════════════════ */

/* ── Reset para el landing: quitar márgenes de Astra ── */
.cc-landing-page #page,
.cc-landing-page #page .site,
.cc-landing-page .ast-container,
.cc-landing-page .ast-row,
.cc-landing-page .elementor-section-wrap {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cc-landing-page #content,
.cc-landing-page .site-content,
.cc-landing-page .ast-article-single,
.cc-landing-page .entry-content,
.cc-landing-page .ast-post-format-,
.cc-landing-page .hfeed {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
}

/* Romper cualquier grid/flex de Astra */
.cc-landing-page #primary,
.cc-landing-page .site-primary,
.cc-landing-page #content-area,
.cc-landing-page .ast-article-single {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    float: none !important;
}

/* El <main> del landing: bloque completo */
.cc-landing-main {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

/* El footer siempre bloque completo */
.cc-landing-footer {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    position: relative !important;
    grid-column: unset !important;
    grid-row: unset !important;
}

/* Ocultar header nativo de Astra en el landing — el header es Elementor */
.cc-landing-page #masthead,
.cc-landing-page .site-header,
.cc-landing-page .ast-above-header-section,
.cc-landing-page .ast-below-header-section {
    display: none !important;
}

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
/* Reutiliza .cc-topbar de topbar.css */

/* ══════════════════════════════════════
   HEADER DEL LANDING
══════════════════════════════════════ */
.cc-landing-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 9998;
    background: var(--cc-white);
}

.cc-landing-header {
    background: var(--cc-white);
    border-bottom: 1px solid var(--cc-cream-2);
    box-shadow: var(--cc-shadow-sm);
    transition: box-shadow var(--cc-transition);
}

.cc-landing-header.is-scrolled {
    box-shadow: var(--cc-shadow-md);
}

.cc-landing-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.cc-landing-logo {
    flex-shrink: 0;
    text-decoration: none;
}
.cc-landing-logo__img {
    height: 36px;
    width: auto;
    display: block;
}
.cc-landing-logo__text {
    font-family: var(--cc-font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--cc-ink);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Nav desktop */
.cc-landing-nav { flex: 1; }
.cc-landing-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cc-landing-nav__list li a {
    font-family: var(--cc-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cc-ink-soft);
    text-decoration: none;
    line-height: 62px;
    position: relative;
    transition: color var(--cc-transition);
    white-space: nowrap;
}
.cc-landing-nav__list li a::after {
    content: '';
    position: absolute;
    bottom: 10px; left: 0;
    width: 0; height: 2px;
    background: var(--cc-rose);
    transition: width 0.25s ease;
    border-radius: 2px;
}
.cc-landing-nav__list li a:hover,
.cc-landing-nav__list li.current-menu-item > a { color: var(--cc-rose); }
.cc-landing-nav__list li a:hover::after,
.cc-landing-nav__list li.current-menu-item > a::after { width: 100%; }

/* Búsqueda header */
.cc-landing-search { position: relative; flex-shrink: 0; }
.cc-landing-search form { display: flex; align-items: center; position: relative; }
.cc-landing-search__input {
    background: var(--cc-cream);
    border: 1px solid var(--cc-cream-2);
    border-radius: var(--cc-radius-pill);
    padding: 7px 36px 7px 16px;
    font-family: var(--cc-font-body);
    font-size: 0.78rem;
    color: var(--cc-ink);
    width: 200px;
    outline: none;
    transition: all var(--cc-transition);
}
.cc-landing-search__input::placeholder { color: var(--cc-ink-faint); }
.cc-landing-search__input:focus {
    width: 240px;
    border-color: var(--cc-rose);
    background: var(--cc-white);
    box-shadow: 0 0 0 3px var(--cc-rose-glow);
}
.cc-landing-search__btn {
    position: absolute; right: 10px;
    background: none; border: none; padding: 0;
    color: var(--cc-ink-faint);
    cursor: pointer; display: flex; align-items: center;
    transition: color var(--cc-transition);
}
.cc-landing-search__input:focus ~ .cc-landing-search__btn { color: var(--cc-rose); }

/* Acciones */
.cc-landing-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Carrito */
.cc-landing-cart {
    position: relative;
    color: var(--cc-ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color var(--cc-transition);
}
.cc-landing-cart:hover { color: var(--cc-rose); }
.cc-landing-cart__count {
    position: absolute; top: -6px; right: -8px;
    background: var(--cc-rose); color: var(--cc-white);
    font-family: var(--cc-font-display);
    font-size: 0.58rem; font-weight: 800;
    min-width: 17px; height: 17px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* CTA header */
.cc-landing-cta {
    background: var(--cc-rose);
    color: var(--cc-white);
    font-family: var(--cc-font-display);
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 22px;
    border-radius: var(--cc-radius-pill);
    text-decoration: none;
    transition: all var(--cc-transition);
    white-space: nowrap;
}
.cc-landing-cta:hover {
    background: var(--cc-rose-dark);
    color: var(--cc-white);
    box-shadow: 0 4px 16px rgba(232,98,156,0.3);
    transform: translateY(-1px);
}

/* Hamburguesa */
.cc-hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
    background: none; border: none; flex-shrink: 0;
}
.cc-hamburger__line {
    display: block; width: 22px; height: 2px;
    background: var(--cc-ink); border-radius: 2px;
    transition: all 0.3s ease;
}
.cc-hamburger.is-open .cc-hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cc-hamburger.is-open .cc-hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.cc-hamburger.is-open .cc-hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú mobile */
.cc-mobile-menu {
    display: none;
    background: var(--cc-white);
    border-top: 1px solid var(--cc-cream-2);
    border-bottom: 2px solid var(--cc-rose);
    box-shadow: 0 8px 24px rgba(36,36,36,0.08);
}
.cc-mobile-menu.is-open { display: block; }
.cc-mobile-menu__inner { max-width: 1200px; margin: 0 auto; padding: 16px 5% 24px; }
.cc-mobile-menu__list { list-style: none; padding: 0; margin: 0; }
.cc-mobile-menu__list li a {
    display: block;
    font-family: var(--cc-font-display);
    font-size: 0.92rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cc-ink-soft); text-decoration: none;
    padding: 13px 0;
    border-bottom: 1px solid var(--cc-cream-2);
    transition: color var(--cc-transition);
}
.cc-mobile-menu__list li:last-child a { border-bottom: none; }
.cc-mobile-menu__list li a:hover { color: var(--cc-rose); }
.cc-mobile-menu__link--cta { color: var(--cc-rose) !important; }

/* Búsqueda mobile */
.cc-mobile-search {
    display: flex; gap: 8px; margin-top: 16px;
}
.cc-mobile-search__input {
    flex: 1;
    background: var(--cc-cream); border: 1px solid var(--cc-cream-2);
    border-radius: var(--cc-radius-pill); padding: 10px 16px;
    font-family: var(--cc-font-body); font-size: 0.85rem;
    color: var(--cc-ink); outline: none;
    transition: border-color var(--cc-transition);
}
.cc-mobile-search__input:focus { border-color: var(--cc-rose); background: var(--cc-white); }
.cc-mobile-search__btn {
    background: var(--cc-rose); border: none;
    border-radius: var(--cc-radius-pill);
    color: var(--cc-white); padding: 0 18px;
    font-family: var(--cc-font-display);
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: background var(--cc-transition);
}
.cc-mobile-search__btn:hover { background: var(--cc-rose-dark); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.cc-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    overflow: hidden;
}

/* Panel izquierdo */
.cc-hero__left {
    background: linear-gradient(135deg, var(--cc-white) 0%, var(--cc-cream) 100%);
    display: flex; flex-direction: column; justify-content: center;
    padding: 72px 7% 72px 8%;
    position: relative; overflow: hidden;
}
.cc-hero__left::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(232,98,156,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cc-hero__left::after {
    content: '';
    position: absolute; bottom: 0; left: 8%; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--cc-rose), transparent);
}

.cc-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--cc-font-display);
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--cc-rose); font-weight: 700; margin-bottom: 20px;
    opacity: 0; animation: cc-fadeUp 0.8s ease 0.15s forwards;
    position: relative; z-index: 1;
}
.cc-hero__eyebrow-line {
    display: block; width: 24px; height: 2px; background: var(--cc-rose);
}

.cc-hero__title {
    font-family: var(--cc-font-display);
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    line-height: 0.96; color: var(--cc-ink);
    font-weight: 900; text-transform: uppercase;
    letter-spacing: -0.01em; margin-bottom: 24px;
    opacity: 0; animation: cc-fadeUp 0.8s ease 0.3s forwards;
    position: relative; z-index: 1;
}
.cc-hero__title em { font-style: normal; color: var(--cc-rose); display: block; }

.cc-hero__desc {
    font-size: 0.92rem; color: var(--cc-ink-muted);
    line-height: 1.75; max-width: 360px;
    margin-bottom: 40px; font-weight: 400;
    opacity: 0; animation: cc-fadeUp 0.8s ease 0.45s forwards;
    position: relative; z-index: 1;
}

.cc-hero__ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
    opacity: 0; animation: cc-fadeUp 0.8s ease 0.6s forwards;
    position: relative; z-index: 1;
}

.cc-hero__stats {
    display: flex; gap: 28px;
    margin-top: 48px; padding-top: 28px;
    border-top: 1px solid var(--cc-cream-2);
    opacity: 0; animation: cc-fadeUp 0.8s ease 0.75s forwards;
    position: relative; z-index: 1;
}
.cc-hero__stat-num {
    font-family: var(--cc-font-display);
    font-size: 1.8rem; font-weight: 800;
    color: var(--cc-ink); line-height: 1; display: block;
}
.cc-hero__stat-num span { color: var(--cc-rose); }
.cc-hero__stat-lbl {
    font-size: 0.68rem; color: var(--cc-ink-faint);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-top: 3px; display: block;
}

/* Panel derecho */
.cc-hero__right {
    background: var(--cc-cream);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.cc-hero__right-bg {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(36,36,36,0.035) 0, rgba(36,36,36,0.035) 1px, transparent 0, transparent 44px),
        repeating-linear-gradient(90deg, rgba(36,36,36,0.035) 0, rgba(36,36,36,0.035) 1px, transparent 0, transparent 44px);
}
.cc-hero__right::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0; width: 60px;
    background: linear-gradient(to right, var(--cc-cream), transparent);
    z-index: 2;
}

/* ══════════════════════════════════════
   CARRUSEL DE PROMOS
══════════════════════════════════════ */
.cc-promo-carousel {
    position: relative; z-index: 3;
    width: min(420px, 88%);
    user-select: none;
}

.cc-pc__track-wrap {
    overflow: hidden;
    border-radius: var(--cc-radius-lg);
    box-shadow: var(--cc-shadow-lg);
}

.cc-pc__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.cc-pc__slide {
    min-width: 100%;
    background: var(--cc-white);
    border-radius: var(--cc-radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
}

.cc-pc__img-wrap {
    position: relative; width: 100%;
    aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0;
}
.cc-pc__img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease; display: block;
}
.cc-pc__slide:hover .cc-pc__img-wrap img { transform: scale(1.04); }

.cc-pc__img-veil {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(36,36,36,0.5) 100%);
}

.cc-pc__discount {
    position: absolute; top: 14px; left: 14px;
    background: var(--cc-rose); color: var(--cc-white);
    font-family: var(--cc-font-display);
    font-size: 1.1rem; font-weight: 900; letter-spacing: 0.04em;
    padding: 5px 14px; border-radius: var(--cc-radius-pill);
    box-shadow: 0 4px 14px rgba(232,98,156,0.4);
    z-index: 2;
}

.cc-pc__label {
    position: absolute; top: 14px; right: 14px;
    background: var(--cc-ink); color: var(--cc-white);
    font-family: var(--cc-font-display);
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; padding: 4px 10px;
    border-radius: var(--cc-radius-pill); z-index: 2;
}

.cc-pc__info {
    padding: 18px 20px 20px;
    display: flex; flex-direction: column; gap: 10px;
}

.cc-pc__title {
    font-family: var(--cc-font-display);
    font-size: 1.25rem; font-weight: 800; text-transform: uppercase;
    color: var(--cc-ink); line-height: 1.1; letter-spacing: 0.01em;
    margin: 0;
}

.cc-pc__pricing {
    display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.cc-pc__price-new {
    font-family: var(--cc-font-display);
    font-size: 1.9rem; font-weight: 900; color: var(--cc-rose); line-height: 1;
}
.cc-pc__price-old {
    font-size: 0.9rem; color: var(--cc-ink-faint);
    text-decoration: line-through; font-weight: 400;
}
.cc-pc__save {
    font-family: var(--cc-font-display);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
    color: var(--cc-rose); background: var(--cc-rose-light);
    padding: 3px 9px; border-radius: var(--cc-radius-sm);
}

.cc-pc__cta {
    display: block; width: 100%;
    background: var(--cc-rose); color: var(--cc-white);
    border: none; border-radius: var(--cc-radius-md);
    font-family: var(--cc-font-display);
    font-size: 0.9rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 13px; text-align: center; text-decoration: none;
    cursor: pointer; transition: all var(--cc-transition);
}
.cc-pc__cta:hover {
    background: var(--cc-rose-dark);
    color: var(--cc-white);
    box-shadow: 0 4px 16px rgba(232,98,156,0.3);
}

/* Navegación del carrusel */
.cc-pc__nav {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-top: 16px;
}

.cc-pc__arrow {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--cc-white); border: 1.5px solid var(--cc-cream-2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--cc-ink); flex-shrink: 0;
    transition: all var(--cc-transition); box-shadow: var(--cc-shadow-sm);
}
.cc-pc__arrow:hover {
    border-color: var(--cc-rose); color: var(--cc-rose);
    box-shadow: 0 4px 14px rgba(232,98,156,0.2);
}

.cc-pc__dots { display: flex; gap: 7px; align-items: center; }
.cc-pc__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--cc-cream-2);
    border: none; cursor: pointer;
    transition: all 0.3s ease; padding: 0;
}
.cc-pc__dot.is-active {
    background: var(--cc-rose); width: 22px; border-radius: 4px;
}

.cc-pc__counter {
    font-family: var(--cc-font-display);
    font-size: 0.72rem; font-weight: 700; color: var(--cc-ink-faint);
    letter-spacing: 0.1em; min-width: 32px; text-align: center;
}

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.cc-trust-bar {
    background: var(--cc-cream);
    border-top: 1px solid var(--cc-cream-2);
    border-bottom: 1px solid var(--cc-cream-2);
    padding: 16px 5%;
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.cc-trust-item { display: flex; align-items: center; gap: 9px; color: var(--cc-ink-muted); font-size: 0.75rem; }
.cc-trust-item__icon { color: var(--cc-rose); font-size: 1rem; }
.cc-trust-item__text strong, .cc-trust-item__text b { color: var(--cc-ink); font-weight: 600; }

/* ══════════════════════════════════════
   ZONA ELEMENTOR — estilos base
   (Las secciones las diseñás en Elementor,
   pero heredan variables de marca)
══════════════════════════════════════ */
.cc-elementor-zone {
    background: var(--cc-white);
}

/* Títulos de sección dentro de Elementor */
.cc-elementor-zone .elementor-heading-title {
    font-family: var(--cc-font-display) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.01em !important;
    line-height: 1.05 !important;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cc-cta-banner {
    background: var(--cc-ink);
    padding: 64px 5%; text-align: center;
    position: relative; overflow: hidden;
}
.cc-cta-banner__bg {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--cc-font-display);
    font-size: 18vw; font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap; pointer-events: none; letter-spacing: 0.06em;
    user-select: none;
}
.cc-cta-banner__title {
    font-family: var(--cc-font-display);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 900; text-transform: uppercase;
    color: var(--cc-white); margin-bottom: 10px;
    line-height: 1; letter-spacing: -0.01em; position: relative; z-index: 1;
}
.cc-cta-banner__title em { font-style: normal; color: var(--cc-rose); }
.cc-cta-banner__sub {
    color: rgba(255,255,255,0.5); font-size: 0.88rem;
    margin-bottom: 28px; font-weight: 300; position: relative; z-index: 1;
}

/* ══════════════════════════════════════
   BOTONES GLOBALES DEL LANDING
══════════════════════════════════════ */
.cc-btn {
    font-family: var(--cc-font-display);
    font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 14px 32px; border-radius: var(--cc-radius-pill);
    border: none; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: all var(--cc-transition);
}
.cc-btn--rose { background: var(--cc-rose); color: var(--cc-white); }
.cc-btn--rose:hover { background: var(--cc-rose-dark); color: var(--cc-white); transform: translateY(-2px); box-shadow: var(--cc-shadow-rose); }
.cc-btn--outline-ink { background: transparent; color: var(--cc-ink); border: 1.5px solid var(--cc-cream-2); padding: 13px 24px; }
.cc-btn--outline-ink:hover { border-color: var(--cc-rose); color: var(--cc-rose); background: var(--cc-rose-glow); }
.cc-btn--rose-solid { background: var(--cc-rose); color: var(--cc-white); position: relative; z-index: 1; }
.cc-btn--rose-solid:hover { background: var(--cc-rose-dark); color: var(--cc-white); transform: translateY(-2px); box-shadow: var(--cc-shadow-rose); }

/* ══════════════════════════════════════
   FOOTER DEL LANDING
══════════════════════════════════════ */
.cc-landing-footer {
    background: var(--cc-ink);
    color: var(--cc-white);
    padding: 52px 5% 24px;
}
.cc-landing-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px; margin-bottom: 40px;
    max-width: 1100px; margin-left: auto; margin-right: auto;
}
.cc-landing-footer__logo {
    height: 30px; width: auto; display: block; margin-bottom: 14px;
    filter: brightness(0) invert(1); opacity: 0.75;
}
.cc-landing-footer__logo-text {
    font-family: var(--cc-font-display);
    font-size: 1.1rem; font-weight: 900; text-transform: uppercase;
    color: var(--cc-white); letter-spacing: 0.06em; display: block; margin-bottom: 14px;
}
.cc-landing-footer__tagline {
    font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.7;
    font-weight: 300; max-width: 240px;
}
.cc-landing-footer__socials { display: flex; gap: 9px; margin-top: 18px; }
.cc-landing-footer__social {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; text-decoration: none; color: rgba(255,255,255,0.4);
    transition: all var(--cc-transition);
}
.cc-landing-footer__social:hover { border-color: var(--cc-rose); color: var(--cc-rose); }

.cc-landing-footer__col-title {
    font-family: var(--cc-font-display);
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 700; color: var(--cc-rose); margin-bottom: 14px;
}
.cc-landing-footer__col ul { list-style: none; padding: 0; margin: 0; }
.cc-landing-footer__col li { margin-bottom: 9px; }
.cc-landing-footer__col a {
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
    text-decoration: none; font-weight: 300; transition: color var(--cc-transition);
}
.cc-landing-footer__col a:hover { color: var(--cc-white); }

.cc-landing-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 8px;
}
.cc-landing-footer__bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.2); margin: 0; }

/* ══════════════════════════════════════
   ANIMACIONES
══════════════════════════════════════ */
@keyframes cc-fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cc-reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cc-reveal.is-visible { opacity: 1; transform: translateY(0); }
.cc-reveal--d1 { transition-delay: 0.1s; }
.cc-reveal--d2 { transition-delay: 0.2s; }
.cc-reveal--d3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
    .cc-landing-nav,
    .cc-landing-search,
    .cc-landing-cta { display: none !important; }
    .cc-hamburger { display: flex !important; }

    .cc-hero { grid-template-columns: 1fr; min-height: auto; }
    .cc-hero__left { padding: 52px 6%; }

    /* Panel derecho: altura automática en tablet para no cortar el carrusel */
    .cc-hero__right {
        height: auto;
        min-height: 480px;
        padding: 40px 5%;
        overflow: visible;
    }

    .cc-landing-footer__inner { grid-template-columns: 1fr 1fr; }
    .cc-trust-bar { gap: 20px; }
}

@media (max-width: 600px) {
    /* Panel derecho: altura automática, padding generoso */
    .cc-hero__right {
        height: auto;
        min-height: 0;
        padding: 32px 5% 40px;
        overflow: visible;
    }

    /* Carrusel ocupa todo el ancho disponible */
    .cc-promo-carousel {
        width: 100%;
        max-width: 340px;
    }

    /* Imagen del carrusel: aspect ratio más corto en mobile */
    .cc-pc__img-wrap {
        aspect-ratio: 16/10;
    }

    .cc-hero__stats { gap: 18px; }
    .cc-landing-footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .cc-landing-footer__bottom { justify-content: center; text-align: center; }
    .cc-trust-bar { gap: 12px; }
    .cc-cta-banner { padding: 48px 5%; }
}
