/* ============================================================
   Home Premium v10 — Impacto visual: servicios simétricos, slider
   con flechas rediseñadas y animaciones de entrada (Fase 3)
   Sufijo -v10 por convención de caché (bumpar si se modifica).
   ============================================================ */

/* ---- FIX: sin espacio entre header y hero ---- */
.cg-main .cg-article,
.cg-main .crecienta-hero { margin: 0 !important; padding: 0 !important; }
.cg-article > p:empty, .cg-article br:first-child { display: none; }

/* ---- HEADLINES con sombra negra gruesa (estilo flyer) ---- */
.cg-main .tucu-section-title,
.cg-main .tucu-intro__title-mundialeras,
.cg-main .tucu-intro__title-promos,
.cg-main .tucu-intro__slogan h2,
.cg-main .tucu-promo-main,
.cg-main .tucu-novedades .tucu-section-title,
.cg-main .tucu-servicios .tucu-section-title,
.cg-main .tucu-tienda .tucu-section-title,
.cg-main .tucu-como-funciona .tucu-section-title {
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.92) !important;
}
/* Los títulos claros sobre fondos claros: sombra un toque más sutil */
.cg-main .tucu-servicios .tucu-section-title,
.cg-main .tucu-novedades .tucu-section-title,
.cg-main .tucu-tienda .tucu-section-title {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2) !important;
}

/* ============================================================
   DIVIDERS entre secciones — borde gradiente con luz en movimiento
   ============================================================ */
.cg-main .tucu-novedades,
.cg-main .tucu-servicios,
.cg-main .tucu-tienda,
.cg-main .tucu-como-funciona,
.cg-main .tucu-instagram {
    position: relative;
    overflow: hidden;
}
.cg-main .tucu-novedades::before,
.cg-main .tucu-servicios::before,
.cg-main .tucu-tienda::before,
.cg-main .tucu-como-funciona::before,
.cg-main .tucu-instagram::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--tc-color-primary) 0%,
        var(--tc-color-secondary) 20%,
        var(--tc-color-accent) 40%,
        var(--tc-color-primary) 60%,
        var(--tc-color-secondary) 80%,
        var(--tc-color-primary) 100%);
    background-size: 300% 100%;
    animation: cg-divider-glow 8s linear infinite;
}
@keyframes cg-divider-glow {
    0%   { background-position: 0% 0; }
    100% { background-position: 300% 0; }
}

/* ============================================================
   PROMOS — una sola sección con patrón de huellitas + overlay
   ============================================================ */
.tucu-promos-section {
    position: relative;
    background-color: var(--tc-color-secondary);
    background-image: linear-gradient(rgba(107, 44, 145, 0.9), rgba(74, 31, 102, 0.94)),
                      url(../../img/pattern-paws.svg);
    background-size: auto, 160px 160px;
    background-attachment: fixed, scroll;
    padding: 0 0 40px;
    overflow: hidden;
}
.tucu-promos-section .tucu-promos-intro,
.tucu-promos-section .tucu-promos-grid-section {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.tucu-promos-section .tucu-promos-intro { padding: clamp(40px, 6vw, 64px) 20px 30px; }
.tucu-promos-section .tucu-promos-grid-section { padding: 0 20px 20px; }

/* Título del mes con tamaño y sombra del flyer */
.cg-main .tucu-intro__title-mundialeras {
    font-size: clamp(3rem, 9vw, 5.5rem);
    letter-spacing: 1px;
}
.cg-main .tucu-intro__title-promos { font-size: clamp(2.2rem, 7vw, 4rem); }

/* Tarjetas de promo: redondeadas y con sombra de elevación estilo flyer */
.tucu-promos-section .tucu-promo-card {
    border-radius: 20px !important;
    box-shadow: 0 12px 30px rgba(20, 4, 40, 0.45) !important;
    border: 2px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tucu-promos-section .tucu-promo-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 45px rgba(20, 4, 40, 0.55) !important;
}
/* Imágenes de las tarjetas con fallback visible */
.tucu-promos-section .tucu-promo-card__image img {
    object-fit: contain !important;
    max-height: 150px;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

/* ============================================================
   HERO — pegado al header, CERO espacio en blanco
   ============================================================ */
.cg-main { margin-top: 0 !important; padding-top: 0 !important; }
.cg-main .cg-article { margin: 0 !important; padding: 0 !important; display: flow-root; }
.cg-main .cg-article > *:first-child { margin-top: 0 !important; }
.crecienta-hero, .crecienta-hero > * { margin-top: 0 !important; }

/* ============================================================
   NOVEDADES — sección oscura de impacto (vitrina premium)
   ============================================================ */
.cg-main .tucu-novedades {
    background:
        radial-gradient(ellipse at 15% 0%, rgba(72, 169, 223, 0.28), transparent 55%),
        radial-gradient(ellipse at 88% 100%, rgba(247, 140, 30, 0.25), transparent 50%),
        linear-gradient(160deg, #3d1965 0%, #250e42 100%);
}
.cg-main .tucu-novedades .tucu-section-title {
    color: #fff;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.92) !important;
}
.cg-main .tucu-novedades .tucu-section-sub { color: rgba(255, 255, 255, 0.78); }
.cg-main .tucu-nov-card {
    border: 3px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(8, 0, 22, 0.5);
    background: #fff;
}
.cg-main .tucu-nov-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 44px rgba(247, 140, 30, 0.4);
    border-color: var(--tc-color-primary);
}
.cg-main .tucu-nov-card__title { color: #2d2d2d; font-weight: 800; }
.cg-main .tucu-nov-card__price { color: #d96c00; font-weight: 800; }

/* ============================================================
   ¿QUÉ ESTÁS BUSCANDO? — LA sección estrella (estilo flyer)
   Tarjetas con borde grueso + sombra dura desplazada
   ============================================================ */
.cg-main .tucu-servicios {
    background-color: #fff6ec;
    background-image: radial-gradient(rgba(247, 140, 30, 0.08) 2px, transparent 2px);
    background-size: 26px 26px;
}
.cg-main .tucu-servicios .tucu-section-title { color: #2d2d2d; }
.cg-main .tucu-servicios__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.cg-main .tucu-servicio-card {
    position: relative;
    border: 3px solid #2d2d2d;
    border-radius: 20px;
    background: #fff;
    box-shadow: 8px 8px 0 rgba(45, 45, 45, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cg-main .tucu-servicio-card:hover {
    transform: translate(-4px, -6px) rotate(-0.6deg);
    box-shadow: 14px 14px 0 rgba(247, 140, 30, 0.95);
}
/* Primera tarjeta = destacada horizontal a todo el ancho */
.cg-main .tucu-servicio-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
}
.cg-main .tucu-servicio-card:first-child .tucu-servicio-card__img-wrap { aspect-ratio: auto; min-height: 300px; }
.cg-main .tucu-servicio-card:first-child .tucu-servicio-card__body {
    display: flex; flex-direction: column; justify-content: center;
    padding: 2.2rem;
}
.cg-main .tucu-servicio-card:first-child h3 { font-size: 2rem; }
.cg-main .tucu-servicio-card__img-wrap { aspect-ratio: 16 / 11; background: #ffe9d2; }
.cg-main .tucu-servicio-card:hover .tucu-servicio-card__img-wrap img { transform: scale(1.09) rotate(0.5deg); }
.cg-main .tucu-servicio-card__badge {
    border: 2px solid #2d2d2d;
    box-shadow: 3px 3px 0 rgba(45, 45, 45, 0.9);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cg-main .tucu-servicio-card h3 { color: #2d2d2d; font-weight: 800; }
.cg-main .tucu-servicio-card__price {
    background: #ffd23f;
    color: #2d2d2d;
    font-weight: 800;
    display: inline-block;
    align-self: flex-start;
    padding: 5px 16px;
    border-radius: 999px;
    border: 2px solid #2d2d2d;
    box-shadow: 3px 3px 0 rgba(45, 45, 45, 0.9);
    font-size: 1.05rem;
}


/* ============================================================
   PROMOS � im�genes de producto protagonistas (flyer)
   ============================================================ */
.tucu-promos-section .tucu-promo-card__image {
    width: 150px;
    height: 150px;
}
.tucu-promos-section .tucu-promo-card__image img {
    width: 100%;
    height: 100%;
    max-height: none !important;
    transition: transform 0.3s ease;
}
.tucu-promos-section .tucu-promo-card:hover .tucu-promo-card__image img {
    transform: scale(1.08) rotate(-2deg);
}
.cg-main .tucu-promo-price-badge {
    color: #ffd23f;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.85);
}
.cg-main .tucu-promo-main {
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55);
}

/* ============================================================
   VISIT� NUESTRA TIENDA � 4 cuadrados con hover de impacto
   ============================================================ */
.cg-main .tucu-tienda__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cg-main .tucu-tienda-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border: 3px solid #2d2d2d;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(45, 45, 45, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: block;
}
.cg-main .tucu-tienda-card:hover {
    transform: translate(-4px, -6px);
    box-shadow: 14px 14px 0 rgba(107, 44, 145, 0.95);
}
.cg-main .tucu-tienda-card__img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    aspect-ratio: auto;
    height: 100%;
}
.cg-main .tucu-tienda-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cg-main .tucu-tienda-card:hover .tucu-tienda-card__img-wrap img {
    transform: scale(1.12) rotate(1deg);
}
.cg-main .tucu-tienda-card__body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(20, 4, 40, 0) 30%, rgba(20, 4, 40, 0.88) 100%);
    padding: 18px;
    text-align: center;
}
.cg-main .tucu-tienda-card__body h3 {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 800;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.9);
    margin: 0 0 10px;
}
.cg-main .tucu-tienda-card .tucu-btn {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}
.cg-main .tucu-tienda-card:hover .tucu-btn,
.cg-main .tucu-tienda-card:focus-within .tucu-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ============================================================
   �C�MO FUNCIONA? � redise�o con pasos numerados (glass + flyer)
   ============================================================ */
.cg-main .tucu-como-funciona {
    background:
        radial-gradient(ellipse at 80% 10%, rgba(72, 169, 223, 0.2), transparent 50%),
        linear-gradient(160deg, #3d1965 0%, #250e42 100%);
    padding: clamp(56px, 8vw, 96px) 2rem;
}
.cg-main .tucu-como-funciona .tucu-section-title {
    color: #fff;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.92) !important;
}
.cg-main .tucu-como-funciona__grid {
    counter-reset: cg-paso;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
    max-width: 1100px;
    margin: 30px auto 0;
}
.cg-main .tucu-paso-card {
    counter-increment: cg-paso;
    position: relative;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 44px 24px 28px;
    backdrop-filter: blur(4px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.cg-main .tucu-paso-card:hover {
    transform: translateY(-8px);
    border-color: var(--tc-color-primary);
    background: rgba(255, 255, 255, 0.1);
}
.cg-main .tucu-paso-card::before {
    content: "0" counter(cg-paso);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tc-color-primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.35rem;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.cg-main .tucu-paso-card__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid var(--tc-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cg-main .tucu-paso-card__icon img {
    width: 62%;
    height: 62%;
    object-fit: contain;
    filter: none !important;
}
.cg-main .tucu-paso-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.6);
    margin: 0 0 12px;
    text-align: center;
}
.cg-main .tucu-paso-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    text-align: center;
}

/* ============================================================
   CURSOR DE PATITA ?? + pop al click + reveal on scroll
   ============================================================ */
.cg-main {
    cursor: url('../../img/paw-cursor.svg') 15 15, auto;
}
.cg-main a, .cg-main button, .cg-main .tucu-btn,
.cg-main .tucu-nov-card, .cg-main .tucu-tienda-card {
    cursor: url('../../img/paw-cursor-pointer.svg') 17 17, pointer;
}
.cg-paw-pop {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    font-size: 22px;
    left: 0;
    top: 0;
    animation: cg-paw-burst 0.8s ease-out forwards;
    animation-delay: var(--cg-paw-delay, 0ms);
}
@keyframes cg-paw-burst {
    0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--cg-paw-dx, 0px)), -150%) scale(1.4) rotate(20deg); opacity: 0; }
}
.cg-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}
.cg-reveal.cg-reveal--in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .cg-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE premium
   ============================================================ */
@media (max-width: 991px) {
    .cg-main .tucu-servicios__grid { grid-template-columns: repeat(2, 1fr); }
    .cg-main .tucu-tienda__grid { grid-template-columns: repeat(2, 1fr); }
    .cg-main .tucu-como-funciona__grid { grid-template-columns: 1fr; }
    .cg-main .tucu-paso-card { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 576px) {
    .cg-main .tucu-servicios__grid { grid-template-columns: 1fr; }
    .cg-main .tucu-servicio-card:first-child { grid-template-columns: 1fr; }
    .cg-main .tucu-servicio-card:first-child .tucu-servicio-card__img-wrap { min-height: 220px; }
    .cg-main .tucu-tienda__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .cg-main .tucu-tienda-card { border-width: 2px; box-shadow: 5px 5px 0 rgba(45, 45, 45, 0.9); }
    .cg-main .tucu-tienda-card__body h3 { font-size: 1.05rem; }
    .tucu-promos-section .tucu-promo-card__image { width: 110px; height: 110px; }
    .cg-main .tucu-servicio-card { box-shadow: 6px 6px 0 rgba(45, 45, 45, 0.9); }
}

/* ============================================================
   AJUSTES V3 — QA responsive y compatibilidad
   ============================================================ */

/* El template Crecienta ya incluye su propio header responsive. */
.cg-body > .tmh-wrap {
    display: none !important;
}

/* El plugin del header móvil heredado reserva 60px sobre #page incluso cuando
   su barra está oculta. En este layout no corresponde esa compensación. */
@media (max-width: 921px) {
    body.cg-body #page.cg-page {
        padding-top: 0 !important;
    }
}

/* El reset global oculta <br>; dentro de nombres compuestos de promo sí son
   semánticos y evitan palabras pegadas o desbordes. */
.tucu-promos-section .tucu-promo-main br {
    display: block !important;
}

/* Algunos sistemas muestran el emoji bandera como letras “AR” sueltas. */
.tucu-promos-section .tucu-promo-flag {
    display: none !important;
}

/* ============================================================
   AJUSTES V2 — feedback visual 31/08/2026
   ============================================================ */

/* El contenido venía envuelto por wpautop en un párrafo con espacios. El
   template ya evita generarlo; estas reglas cubren HTML cacheado o legado. */
.cg-main,
.cg-main .cg-article {
    margin-block: 0 !important;
    padding-block: 0 !important;
}
.cg-main .cg-article > p:first-child + .crecienta-hero {
    margin-top: 0 !important;
}
.cg-main .crecienta-hero {
    display: block;
    min-height: 0;
    margin: 0 !important;
    line-height: 0;
}
.cg-main .crecienta-hero__img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}
.cg-main .crecienta-hero + br,
.cg-main .crecienta-hero + p:empty {
    display: none !important;
}

/* Sombras de texto: siempre centradas (offset X/Y = 0) y con #333 suave. */
.cg-main .tucu-section-title,
.cg-main .tucu-intro__title-mundialeras,
.cg-main .tucu-intro__title-promos,
.cg-main .tucu-intro__slogan h2,
.cg-main .tucu-promo-main,
.cg-main .tucu-promo-price-badge,
.cg-main .tucu-tienda-card__body h3,
.cg-main .tucu-paso-card h3,
.cg-main .tucu-como-funciona .tucu-section-title,
.cg-main .tucu-novedades .tucu-section-title,
.cg-main .tucu-servicios .tucu-section-title,
.cg-main .tucu-tienda .tucu-section-title {
    text-shadow: 0 0 5px rgba(51, 51, 51, 0.22) !important;
}
.cg-main .tucu-promo-main,
.cg-main .tucu-servicios .tucu-section-title,
.cg-main .tucu-tienda .tucu-section-title {
    text-shadow: none !important;
}
.cg-main .tucu-novedades .tucu-section-title,
.cg-main .tucu-como-funciona .tucu-section-title,
.cg-main .tucu-tienda-card__body h3,
.cg-main .tucu-paso-card h3 {
    text-shadow: 0 0 6px rgba(51, 51, 51, 0.42) !important;
}

/* Promociones: texto e imagen poseen columnas propias; no pueden montarse. */
.tucu-promos-section .tucu-promos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.tucu-promos-section .tucu-promo-card {
    min-width: 0;
    min-height: 258px;
    padding: 24px;
    border: 1px solid rgba(107, 44, 145, 0.15);
    box-shadow: 0 12px 30px rgba(34, 16, 48, 0.2) !important;
}
.tucu-promos-section .tucu-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(34, 16, 48, 0.28) !important;
}
.tucu-promos-section .tucu-promo-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 42%);
    align-items: center;
    gap: 18px;
}
.tucu-promos-section .tucu-promo-card__text {
    min-width: 0;
    position: relative;
    z-index: 1;
}
.tucu-promos-section .tucu-promo-main {
    max-width: 100%;
    margin: 4px 0 8px;
    font-size: clamp(1.2rem, 1.7vw, 1.55rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}
.tucu-promos-section .tucu-promo-top,
.tucu-promos-section .tucu-promo-sub {
    line-height: 1.35;
}
.tucu-promos-section .tucu-promo-card__image {
    width: 100%;
    height: 158px;
    min-width: 0;
}
.tucu-promos-section .tucu-promo-card__image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    filter: drop-shadow(0 8px 12px rgba(51, 51, 51, 0.16));
}
.cg-main .tucu-promo-price-badge {
    text-shadow: 0 0 4px rgba(51, 51, 51, 0.3) !important;
}

/* Servicios: composición fotográfica editorial, no fichas de producto. */
.cg-main .tucu-servicios {
    padding: clamp(60px, 7vw, 92px) 24px;
    background-color: #fffaf5;
    background-image:
        radial-gradient(circle at 10% 15%, rgba(247, 140, 30, 0.08), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(107, 44, 145, 0.07), transparent 30%);
}
.cg-main .tucu-servicios .tucu-section-header {
    max-width: 720px;
    margin: 0 auto clamp(30px, 4vw, 46px);
}
.cg-main .tucu-servicios .tucu-section-title {
    color: #34293a;
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.035em;
}
.cg-main .tucu-servicios .tucu-section-sub {
    color: #655c69;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}
.cg-main .tucu-servicios__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.cg-main .tucu-servicio-card,
.cg-main .tucu-servicio-card:first-child {
    position: relative;
    isolation: isolate;
    display: flex;
    grid-column: auto;
    min-height: 470px;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #392745;
    box-shadow: 0 14px 36px rgba(51, 51, 51, 0.16);
    transform: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cg-main .tucu-servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(51, 51, 51, 0.22);
}
.cg-main .tucu-servicio-card::after {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 13, 27, 0.08) 10%, rgba(22, 13, 27, 0.3) 46%, rgba(22, 13, 27, 0.92) 100%);
    pointer-events: none;
}
.cg-main .tucu-servicio-card__img-wrap,
.cg-main .tucu-servicio-card:first-child .tucu-servicio-card__img-wrap {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    background: #392745;
}
.cg-main .tucu-servicio-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 0.55s ease;
}
.cg-main .tucu-servicio-card:hover .tucu-servicio-card__img-wrap img {
    transform: scale(1.07);
}
.cg-main .tucu-servicio-card__body,
.cg-main .tucu-servicio-card:first-child .tucu-servicio-card__body {
    width: 100%;
    min-width: 0;
    margin-top: auto;
    padding: clamp(28px, 4vw, 42px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 11px;
    color: #fff;
}
.cg-main .tucu-servicio-card__badge {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    backdrop-filter: blur(8px);
}
.cg-main .tucu-servicio-card h3,
.cg-main .tucu-servicio-card:first-child h3 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-shadow: 0 0 6px rgba(51, 51, 51, 0.45);
}
.cg-main .tucu-servicio-card__body p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.97rem;
    line-height: 1.55;
    text-shadow: 0 0 4px rgba(51, 51, 51, 0.38);
}
.cg-main .tucu-servicio-card__actions {
    width: 100%;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cg-main .tucu-servicio-card__price {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.1;
    text-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
}
.cg-main .tucu-servicio-card .tucu-btn--service {
    min-height: 44px;
    padding: 11px 19px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: #f78c1e;
    box-shadow: 0 8px 18px rgba(51, 51, 51, 0.18);
    color: #fff;
    font-size: 0.8rem;
    white-space: nowrap;
}
.cg-main .tucu-servicio-card .tucu-btn--service:hover {
    background: #fff;
    color: #6b2c91;
    transform: translateY(-2px);
}

/* El resto de la home conserva elevación, pero abandona el efecto recortado. */
.cg-main .tucu-tienda-card,
.cg-main .tucu-nov-card {
    border-width: 1px;
    box-shadow: 0 12px 30px rgba(51, 51, 51, 0.16);
}
.cg-main .tucu-tienda-card:hover,
.cg-main .tucu-nov-card:hover {
    box-shadow: 0 18px 40px rgba(51, 51, 51, 0.22);
}
.cg-main .tucu-paso-card::before {
    box-shadow: 0 8px 20px rgba(51, 51, 51, 0.22);
}

@media (max-width: 900px) {
    .tucu-promos-section .tucu-promos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cg-main .tucu-servicio-card,
    .cg-main .tucu-servicio-card:first-child {
        min-height: 430px;
    }
}

@media (max-width: 640px) {
    .tucu-promos-section {
        background-attachment: scroll;
    }
    .tucu-promos-section .tucu-promos-grid {
        grid-template-columns: 1fr;
    }
    .tucu-promos-section .tucu-promo-card {
        min-height: 230px;
        padding: 20px;
    }
    .tucu-promos-section .tucu-promo-card__content {
        grid-template-columns: minmax(0, 1fr) minmax(105px, 40%);
        gap: 12px;
        text-align: left;
    }
    .tucu-promos-section .tucu-promo-card__image {
        width: 100%;
        height: 132px;
    }
    .cg-main .tucu-servicios {
        padding-inline: 16px;
    }
    .cg-main .tucu-servicios__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .cg-main .tucu-servicio-card,
    .cg-main .tucu-servicio-card:first-child {
        min-height: 450px;
        border-radius: 20px;
    }
    .cg-main .tucu-servicio-card__body,
    .cg-main .tucu-servicio-card:first-child .tucu-servicio-card__body {
        padding: 25px 22px;
    }
    .cg-main .tucu-servicio-card__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }
    .cg-main .tucu-servicio-card .tucu-btn--service {
        width: auto;
    }
    .cg-main .tucu-tienda-card {
        box-shadow: 0 10px 24px rgba(51, 51, 51, 0.16);
    }
}

/* ============================================================
   AJUSTES V5 — UX de compra, slider y mosaico editorial
   ============================================================ */

/* Tienda como CTA inmediato del hero. */
/* Tienda como CTA inmediato del hero — Fondo con patrones exacto de Promos de Septiembre */
.cg-main .tucu-tienda {
    position: relative;
    padding: clamp(36px, 5vw, 58px) 24px clamp(44px, 5vw, 62px);
    background-color: #1e0028;
    background-image:
        linear-gradient(135deg, rgba(20, 0, 35, 0.97) 0%, rgba(140, 0, 180, 0.75) 50%, rgba(20, 0, 35, 0.97) 100%),
        url('https://tucumascotas.com.ar/wp-content/uploads/2025/08/33042282_pet_sobaki7-scaled.jpg');
    background-size: cover;
    background-position: center 30%;
    box-shadow: 0 0 60px rgba(209, 64, 224, 0.15) inset;
    overflow: hidden;
}
.cg-main .tucu-tienda::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -80px;
    pointer-events: none;
    z-index: 0;
}
.cg-main .tucu-tienda::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(209, 64, 224, 0.20) 0%, transparent 70%);
    bottom: -80px;
    right: -60px;
    pointer-events: none;
    z-index: 0;
}
.cg-main .tucu-tienda > * {
    position: relative;
    z-index: 1;
}
.cg-main .tucu-tienda__container {
    max-width: 1200px;
}
.cg-main .tucu-tienda__header {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}
.cg-main .tucu-tienda__intro {
    max-width: 720px;
}
.cg-main .tucu-tienda__eyebrow,
.cg-main .tucu-novedades__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffd68c;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.cg-main .tucu-tienda .tucu-section-title,
.cg-main .tucu-tienda .tucu-section-sub {
    margin-inline: 0;
    color: #fff;
    text-shadow: none !important;
}
.cg-main .tucu-tienda .tucu-section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}
.cg-main .tucu-tienda .tucu-section-sub {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.03rem;
}
.cg-main .tucu-tienda__header-cta,
.cg-main .tucu-novedades__header-cta {
    flex: 0 0 auto;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: #f78c1e;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(18, 6, 31, 0.24);
    white-space: nowrap;
}
.cg-main .tucu-tienda__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 0;
}
.cg-main .tucu-tienda-card {
    aspect-ratio: 1.35 / 1;
    min-height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(18, 6, 31, 0.2);
    backdrop-filter: blur(8px);
}
.cg-main .tucu-tienda-card__body {
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(18, 6, 31, 0) 25%, rgba(18, 6, 31, 0.86) 100%);
}
.cg-main .tucu-tienda-card__body h3 {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    text-shadow: 0 0 5px rgba(51, 51, 51, 0.4) !important;
}
.cg-main .tucu-tienda-card .tucu-btn {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-height: 38px;
    padding: 8px 13px;
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.74rem;
}
.cg-main .tucu-tienda-card:hover .tucu-btn {
    background: #f78c1e;
    border-color: #f78c1e;
}

/* Promos completamente accionables. */
.tucu-promos-section .tucu-promo-card {
    display: block;
    color: #2d2d2d;
    text-decoration: none;
}
.tucu-promos-section .tucu-promo-card:focus-visible {
    outline: 4px solid rgba(72, 169, 223, 0.9);
    outline-offset: 4px;
}
.tucu-promos-section .tucu-promo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.tucu-promos-section .tucu-promo-cta {
    color: #f78c1e;
    white-space: nowrap;
    transition: transform 0.2s ease;
}
.tucu-promos-section .tucu-promo-card:hover .tucu-promo-cta {
    transform: translateX(4px);
}

/* Novedades: vitrina horizontal con acción primaria y controles. */
.cg-main .tucu-novedades {
    padding: clamp(58px, 7vw, 86px) 0;
}
.cg-main .tucu-novedades__container {
    max-width: 1240px;
}
.cg-main .tucu-novedades__header {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    text-align: left;
}
.cg-main .tucu-novedades__intro {
    max-width: 690px;
}
.cg-main .tucu-novedades .tucu-section-title,
.cg-main .tucu-novedades .tucu-section-sub {
    margin-inline: 0;
}
.cg-main .tucu-novedades .tucu-section-title {
    letter-spacing: -0.035em;
}
.cg-main .tucu-novedades__slider {
    position: relative;
}
.cg-main .tucu-novedades__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    scrollbar-width: none;
    border-radius: 22px;
}
.cg-main .tucu-novedades__viewport::-webkit-scrollbar {
    display: none;
}
.cg-main .tucu-novedades__grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(218px, 22vw, 276px);
    gap: 18px;
    padding: 4px 4px 10px;
}
.cg-main .tucu-nov-card {
    scroll-snap-align: start;
    min-height: 370px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(10, 3, 24, 0.22);
}
.cg-main .tucu-nov-card__img {
    aspect-ratio: 1 / 0.88;
}
.cg-main .tucu-nov-card__body {
    display: flex;
    min-height: 150px;
    flex-direction: column;
}
.cg-main .tucu-nov-card__title {
    padding: 16px 18px 6px;
    font-size: 1rem;
    line-height: 1.25;
}
.cg-main .tucu-nov-card__price {
    margin-top: auto;
    padding: 0 18px 18px;
    font-size: 1.08rem;
}
.cg-main .tucu-novedades__controls {
    margin: 26px auto 0;
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    gap: 16px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 34px rgba(8, 0, 22, 0.35);
    backdrop-filter: blur(12px);
}
.cg-main .tucu-nov-slider-btn {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f78c1e, #ff9d38);
    color: #fff;
    box-shadow: 0 8px 18px rgba(247, 140, 30, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.cg-main .tucu-nov-slider-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}
.cg-main .tucu-nov-slider-btn:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 12px 26px rgba(247, 140, 30, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.cg-main .tucu-nov-slider-btn:active:not(:disabled) {
    transform: scale(0.94);
}
.cg-main .tucu-nov-slider-btn:disabled {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    opacity: 0.45;
    cursor: default;
}
.cg-main .tucu-nov-slider-progress {
    position: relative;
    width: min(180px, 30vw);
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}
.cg-main .tucu-nov-slider-progress span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 30%;
    border-radius: inherit;
    background: linear-gradient(90deg, #48a9df, #f78c1e);
    transition: left 0.15s ease;
}

/* Servicios: grilla simétrica 2×2 con paneles de vidrio y acento por servicio. */
.cg-main .tucu-servicios {
    padding: clamp(72px, 8vw, 112px) 24px;
    background:
        radial-gradient(circle at 8% 12%, rgba(72, 169, 223, 0.14), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(247, 140, 30, 0.16), transparent 32%),
        linear-gradient(180deg, #fffaf5 0%, #f7eef7 100%);
}
.cg-main .tucu-servicios__container {
    max-width: 1240px;
}
.cg-main .tucu-servicios .tucu-section-header {
    max-width: 800px;
    margin: 0 auto clamp(34px, 4vw, 52px);
    text-align: center;
}
.cg-main .tucu-servicios__grid {
    counter-reset: tucu-servicio;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.cg-main .tucu-servicio-card,
.cg-main .tucu-servicio-card:first-child {
    counter-increment: tucu-servicio;
    grid-column: auto;
    grid-row: auto;
    min-height: 500px;
    margin-top: 0;
    overflow: visible;
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(51, 51, 51, 0.18);
}
.cg-main .tucu-servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(51, 51, 51, 0.26);
}
/* Acento de color por servicio (chip numerado, badge y CTA lo heredan). */
.cg-main .tucu-servicio-card--online       { --cg-accent: #f78c1e; }
.cg-main .tucu-servicio-card--especialista { --cg-accent: #9b59c9; }
.cg-main .tucu-servicio-card--peluqueria   { --cg-accent: #48a9df; }
.cg-main .tucu-servicio-card--exoticos     { --cg-accent: #58b26a; }
.cg-main .tucu-servicio-card__img-wrap,
.cg-main .tucu-servicio-card:first-child .tucu-servicio-card__img-wrap {
    z-index: -2;
    border-radius: inherit;
    overflow: hidden;
}
.cg-main .tucu-servicio-card::after {
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(22, 13, 27, 0.04) 5%, rgba(22, 13, 27, 0.16) 45%, rgba(22, 13, 27, 0.72) 100%);
}
.cg-main .tucu-servicio-card__body,
.cg-main .tucu-servicio-card:first-child .tucu-servicio-card__body {
    position: absolute;
    inset: auto 22px 22px 22px;
    width: auto;
    margin-top: 0;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(34, 18, 44, 0.78), rgba(34, 18, 44, 0.52));
    box-shadow: 0 16px 34px rgba(18, 6, 31, 0.22);
    backdrop-filter: blur(14px);
}
.cg-main .tucu-servicio-card__body::before {
    content: '0' counter(tucu-servicio);
    position: absolute;
    top: -23px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: var(--cg-accent, #f78c1e);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(51, 51, 51, 0.24);
}
.cg-main .tucu-servicio-card__badge {
    background: rgba(255, 255, 255, 0.16);
    background: color-mix(in srgb, var(--cg-accent, #f78c1e) 30%, transparent);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
}
.cg-main .tucu-servicio-card h3,
.cg-main .tucu-servicio-card:first-child h3 {
    max-width: 92%;
    font-size: clamp(1.45rem, 2.25vw, 2.15rem);
}
.cg-main .tucu-servicio-card__actions {
    margin-top: 8px;
}
.cg-main .tucu-servicio-card .tucu-btn--service {
    background: linear-gradient(135deg, #f78c1e, #ff9d38);
    border-color: rgba(255, 255, 255, 0.3);
}

/* v9: la grilla de servicios es simétrica en todos los breakpoints;
   no hay spans ni offsets por tarjeta que re-imponer en desktop amplio. */

/* Un elemento fijo transformado fuera del viewport no debe ampliar el
   documento horizontal ni permitir scroll accidental en móvil. */
@media (max-width: 991px) {
    body.cg-body {
        overflow-x: hidden;
    }
    .cg-body .cg-nav-drawer:not(.is-open) {
        display: none;
        pointer-events: none;
    }
    .cg-body .cg-nav-drawer.is-open {
        display: block;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {
    .cg-body .cg-bar__inner {
        gap: 6px;
        padding-inline: 10px;
    }
    .cg-body .cg-logo {
        min-width: 0;
    }
    .cg-body .cg-logo img {
        max-width: 136px;
    }
    .cg-body .cg-actions {
        flex: 0 0 auto;
        gap: 2px;
        justify-content: flex-end;
    }
    .cg-body .cg-icon-btn,
    .cg-body .cg-hamburger {
        width: 36px;
        min-width: 36px;
        height: 40px;
        padding-inline: 6px;
    }
}

@media (max-width: 1024px) {
    .cg-main .tucu-servicio-card,
    .cg-main .tucu-servicio-card:first-child {
        min-height: 460px;
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    .cg-main .tucu-tienda__header,
    .cg-main .tucu-novedades__header {
        align-items: flex-start;
        flex-direction: column;
    }
    .cg-main .tucu-tienda__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cg-main .tucu-servicios__grid {
        grid-template-columns: 1fr 1fr;
    }
    .cg-main .tucu-servicio-card,
    .cg-main .tucu-servicio-card:first-child {
        min-height: 480px;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .cg-main .tucu-tienda {
        padding-inline: 16px;
    }
    .cg-main .tucu-tienda__grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }
    .cg-main .tucu-tienda-card {
        flex: 0 0 72%;
        min-height: 220px;
        scroll-snap-align: start;
    }
    .cg-main .tucu-novedades__grid {
        grid-auto-columns: minmax(230px, 76vw);
        gap: 14px;
    }
    .cg-main .tucu-nov-card {
        min-height: 360px;
    }
    .cg-main .tucu-novedades__controls {
        gap: 12px;
        padding: 8px 10px;
    }
    .cg-main .tucu-nov-slider-btn {
        width: 44px;
        height: 44px;
    }
    .cg-main .tucu-nov-slider-progress {
        width: min(110px, 26vw);
    }
    .cg-main .tucu-servicios {
        padding-inline: 14px;
    }
    .cg-main .tucu-servicios__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cg-main .tucu-servicio-card,
    .cg-main .tucu-servicio-card:first-child {
        min-height: 530px;
        border-radius: 24px;
    }
    .cg-main .tucu-servicio-card__body,
    .cg-main .tucu-servicio-card:first-child .tucu-servicio-card__body {
        inset: auto 14px 14px;
        padding: 20px 18px;
    }
    .cg-main .tucu-servicio-card__body::before {
        width: 42px;
        height: 42px;
        top: -19px;
    }
}


/* ============================================================
   IMPACTO VISUAL V9 — animaciones de entrada y micro-interacciones
   ============================================================ */

/* Hero: entrada suave al cargar la página. */
.cg-main .crecienta-hero__img {
    animation: cg-hero-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes cg-hero-in {
    0%   { opacity: 0; transform: scale(1.03); }
    100% { opacity: 1; transform: scale(1); }
}

/* Servicios: subrayado gradiente del título que se dibuja al entrar en vista. */
.cg-main .tucu-servicios .tucu-section-header .tucu-section-title {
    position: relative;
}
.cg-main .tucu-servicios .tucu-section-header .tucu-section-title::after {
    content: '';
    display: block;
    width: 92px;
    height: 6px;
    margin: 14px auto 0;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg,
        var(--tc-color-primary),
        var(--tc-color-secondary),
        var(--tc-color-accent),
        var(--tc-color-primary));
    background-size: 300% 100%;
    animation: cg-divider-glow 6s linear infinite;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}
.cg-main .tucu-servicios .tucu-section-header.cg-reveal--in .tucu-section-title::after,
.cg-main .tucu-servicios .tucu-section-header:not(.cg-reveal) .tucu-section-title::after {
    transform: scaleX(1);
}

/* Promos: barrido de luz al pasar el mouse sobre cada tarjeta. */
.tucu-promos-section .tucu-promo-card {
    position: relative;
}
.tucu-promos-section .tucu-promo-card::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: -70%;
    width: 45%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-18deg);
    transition: left 0.65s ease;
    pointer-events: none;
}
.tucu-promos-section .tucu-promo-card:hover::before {
    left: 135%;
}

/* CTAs de cabecera (tienda y novedades): elevación y glow al hover. */
.cg-main .tucu-tienda__header-cta,
.cg-main .tucu-novedades__header-cta {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cg-main .tucu-tienda__header-cta:hover,
.cg-main .tucu-novedades__header-cta:hover {
    transform: translateY(-3px);
    background: #ff9d38;
    box-shadow: 0 16px 32px rgba(247, 140, 30, 0.45);
}

/* Botones de servicios: transición suave en todas las propiedades del hover. */
.cg-main .tucu-servicio-card .tucu-btn--service {
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.cg-main .tucu-servicio-card .tucu-btn--service:hover {
    box-shadow: 0 12px 24px rgba(18, 6, 31, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    .cg-main .crecienta-hero__img {
        animation: none;
    }
    .cg-main .tucu-servicios .tucu-section-header .tucu-section-title::after {
        animation: none;
        transition: none;
        transform: scaleX(1);
    }
    .tucu-promos-section .tucu-promo-card::before {
        display: none;
    }
}


/* Impresión: el reveal depende de scroll; en print todo debe verse. */
@media print {
    .cg-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* En ≤640px la tienda es carrusel horizontal: las cards clipeadas por
   overflow-x no disparan IntersectionObserver; no deben quedar ocultas. */
@media (max-width: 640px) {
    .cg-main .tucu-tienda-card.cg-reveal {
        opacity: 1;
        transform: none;
    }
}


/* ============================================================
   COUNTDOWN PROMOS DEL MES — idéntico al home viejo
   ============================================================ */
.tucu-intro__countdown-block {
    grid-column: 1 / -1;
    margin-top: 28px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.crecienta-hs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 16px;
    max-width: 320px;
}
.crecienta-hs-divider::before,
.crecienta-hs-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}
.crecienta-hs-divider span {
    font-size: 18px;
    display: inline-block;
    animation: crecienta-fire 1.5s ease-in-out infinite alternate;
}
@keyframes crecienta-fire {
    from { transform: scale(1) rotate(-4deg); }
    to   { transform: scale(1.25) rotate(4deg); }
}
.crecienta-cd-label-pre {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 16px;
    position: relative;
    z-index: 1;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.crecienta-hotsale-countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.crecienta-countdown-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 74px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.crecienta-countdown-unit:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(255, 156, 0, 0.6);
}
.crecienta-countdown-num {
    display: block;
    font-size: 38px;
    font-weight: 900;
    color: #FF9C00;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(255, 156, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.5);
}
.crecienta-countdown-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 6px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .tucu-intro__countdown-block {
        margin-top: 20px;
    }
    .crecienta-hotsale-countdown {
        gap: 6px;
        flex-wrap: nowrap;
    }
    .crecienta-countdown-unit {
        min-width: 0;
        flex: 1;
        padding: 10px 6px;
        border-radius: 10px;
    }
    .crecienta-countdown-num {
        font-size: 24px;
    }
    .crecienta-countdown-label {
        font-size: 8.5px;
        letter-spacing: 0.5px;
    }
}
