/* =========================================================================
   Yutori Home V1 Luminosa
   Estilos específicos del template/pattern de la home
   ========================================================================= */

/* ----- Secciones genéricas ----- */
.ys-home {
    background: var(--ys-washi) !important;
    color: var(--ys-ink) !important;
    font-family: var(--ys-font-body) !important;
}

.ys-section {
    padding: 5rem 1.25rem;
    background: var(--ys-washi);
    color: var(--ys-ink);
}

.ys-section--soft {
    background: var(--ys-washi-soft) !important;
    background-color: var(--ys-washi-soft) !important;
}

/* Sección dark: selectores ultra-específicos contra Gymfinity */
html body .ys-home .ys-section.ys-section--dark,
html body .ys-home section.ys-section--dark,
html body .ys-home .wp-block-group.ys-section--dark,
.ys-section.ys-section--dark {
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    background-image: none !important;
    color: #f5efe6 !important;
}

html body .ys-section--dark .ys-section__title,
html body .ys-section--dark .ys-cta-final__title,
html body .ys-section--dark h1,
html body .ys-section--dark h2,
html body .ys-section--dark h3,
.ys-section--dark .ys-section__title,
.ys-section--dark h1, .ys-section--dark h2, .ys-section--dark h3 {
    color: #f5efe6 !important;
}

html body .ys-section--dark p,
html body .ys-section--dark .ys-cta-final__contact,
html body .ys-section--dark .ys-section__lead {
    color: rgba(245, 239, 230, 0.85) !important;
}

html body .ys-section--dark a:not(.ys-btn) {
    color: var(--ys-gold-soft) !important;
}

.ys-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ys-section__title {
    font-family: var(--ys-font-display) !important;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
    line-height: 1.15 !important;
    margin: 0 0 0.75rem !important;
    color: var(--ys-ink) !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
}

.ys-section__lead {
    font-size: 1.1rem;
    color: var(--ys-ink-soft);
    max-width: 720px;
    margin: 0 0 2.5rem;
}

.ys-section--dark .ys-section__lead {
    color: rgba(245, 239, 230, 0.78) !important;
}

/* Separador dorado decorativo */
.ys-divider {
    width: 64px;
    height: 3px;
    background: var(--ys-gold);
    border: 0;
    margin: 0 0 1.5rem;
}

/* ----- Botones — selectores ultra-específicos (vencer al padre Gymfinity) ----- */
html body .ys-home a.ys-btn,
html body a.ys-btn,
.ys-btn {
    display: inline-block !important;
    padding: 0.95rem 1.75rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: var(--ys-radius) !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease !important;
    line-height: 1 !important;
    font-family: var(--ys-font-body) !important;
    cursor: pointer;
}

/* Primary: burdeos sólido con texto blanco */
html body .ys-home a.ys-btn--primary,
html body a.ys-btn--primary,
html body .ys-hero a.ys-btn--primary,
html body .ys-cta-final a.ys-btn--primary,
.ys-btn.ys-btn--primary {
    background: #7a3528 !important;
    background-color: #7a3528 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 1px 3px rgba(26, 23, 20, 0.18) !important;
    text-shadow: none !important;
}

html body .ys-home a.ys-btn--primary:hover,
html body a.ys-btn--primary:hover,
html body .ys-hero a.ys-btn--primary:hover,
html body .ys-cta-final a.ys-btn--primary:hover,
.ys-btn.ys-btn--primary:hover {
    background: #9a4536 !important;
    background-color: #9a4536 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 23, 20, 0.20) !important;
}

/* Ghost: outline tinta sobre washi */
html body .ys-home a.ys-btn--ghost,
html body a.ys-btn--ghost,
.ys-btn.ys-btn--ghost {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: var(--ys-ink) !important;
    border: 2px solid var(--ys-ink) !important;
}

html body .ys-home a.ys-btn--ghost:hover,
html body a.ys-btn--ghost:hover,
.ys-btn.ys-btn--ghost:hover {
    background: var(--ys-ink) !important;
    background-color: var(--ys-ink) !important;
    color: var(--ys-washi) !important;
}

/* ----- Hero Luminosa: fondo washi con tinta oscura ----- */
.ys-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--ys-washi);
    color: var(--ys-ink);
    padding: 4rem 1.25rem;
    overflow: hidden;
}

/* Sutiles atmósferas Luminosa: dos halos radiales (oro y musgo) */
.ys-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 18% 28%, rgba(168, 133, 60, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 82% 72%, rgba(90, 106, 74, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.ys-hero__inner {
    max-width: 880px;
    position: relative;
    z-index: 1;
}

/* ===== Medallón del hero — 3 capas: círculo+enso+sello (SVG bg) + logo (img) ===== */
.ys-hero__medallion {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Ccircle cx='110' cy='110' r='100' fill='%230a0a0a'/%3E%3Cpath d='M 110 14 A 96 96 0 1 0 200 90' fill='none' stroke='%23c9a86c' stroke-width='2.5' stroke-linecap='round' opacity='0.55' transform='rotate(-15 110 110)'/%3E%3Ctext x='110' y='158' text-anchor='middle' font-family='Noto Serif JP, serif' font-size='130' font-weight='700' fill='%23f5efe6' opacity='0.18'%3E道%3C/text%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 8px 28px rgba(26, 23, 20, 0.22);
    animation: ys-medallion-float 6s ease-in-out infinite;
}

/* Logo Yutori centrado dentro del medallón, escalado al ~63% del medallón */
.ys-hero__medallion::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 63%;
    height: 63%;
    transform: translate(-50%, -50%);
    background-image: url("https://yutorisports.com/wp-content/uploads/2026/05/yutori-logo-oficial-v1.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes ys-medallion-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@media (max-width: 640px) {
    .ys-hero__medallion {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }
}

.ys-hero__claim {
    font-family: var(--ys-font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.05;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
    color: var(--ys-ink);
    font-weight: 500;
}

.ys-hero__sub {
    font-size: 1.15rem;
    margin: 0 0 2rem;
    color: var(--ys-ink-soft);
    font-family: var(--ys-font-body);
}

.ys-hero__cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero ghost button: oscuro sobre washi (NO blanco sobre blanco) */
.ys-hero__cta-row .ys-btn--ghost {
    color: var(--ys-ink);
    border-color: var(--ys-ink);
}

.ys-hero__cta-row .ys-btn--ghost:hover {
    background: var(--ys-ink);
    color: var(--ys-washi);
}

/* ----- Grid de disciplinas ----- */
.ys-disciplinas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.ys-disciplina {
    background: var(--ys-paper) !important;
    background-color: var(--ys-paper) !important;
    border-radius: var(--ys-radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--ys-shadow-sm);
    border-top: 4px solid var(--ys-gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.ys-disciplina:hover {
    transform: translateY(-4px);
    box-shadow: var(--ys-shadow-md);
    border-top-color: var(--ys-accent);
}

.ys-disciplina__title {
    font-family: var(--ys-font-display);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--ys-ink);
}

.ys-disciplina__desc {
    font-size: 0.95rem;
    color: var(--ys-ink-soft);
    margin: 0;
}

/* ----- Galería: fix fila huérfana ----- */
/* Selectores genéricos: cubrimos las clases más probables del shortcode */
.yutori-galeria,
.yg-grid,
.yutori-galeria-grid,
[class*="yutori"][class*="grid"],
[class*="galeria"][class*="grid"] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ys-grid-gap);
}

.yutori-galeria > *:last-child:nth-child(3n+1),
.yg-grid > *:last-child:nth-child(3n+1),
.yutori-galeria-grid > *:last-child:nth-child(3n+1),
[class*="yutori"][class*="grid"] > *:last-child:nth-child(3n+1),
[class*="galeria"][class*="grid"] > *:last-child:nth-child(3n+1) {
    grid-column: 2;
}

.yutori-galeria > *:nth-last-child(2):nth-child(3n+1),
.yg-grid > *:nth-last-child(2):nth-child(3n+1),
.yutori-galeria-grid > *:nth-last-child(2):nth-child(3n+1),
[class*="yutori"][class*="grid"] > *:nth-last-child(2):nth-child(3n+1),
[class*="galeria"][class*="grid"] > *:nth-last-child(2):nth-child(3n+1) {
    grid-column: 1 / span 2;
    justify-self: end;
}

/* ----- CTA final ----- */
.ys-cta-final {
    text-align: center;
}

.ys-cta-final__title {
    font-family: var(--ys-font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 1rem;
}

.ys-cta-final__contact {
    margin: 1.5rem 0 0;
    font-size: 1rem;
    color: rgba(250, 248, 244, 0.85);
    line-height: 1.8;
}

.ys-cta-final__contact a {
    color: var(--ys-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

.ys-cta-final__contact a:hover {
    border-color: var(--ys-gold);
}

/* ----- Responsive ----- */
@media (max-width: 640px) {
    .ys-section {
        padding: 3.5rem 1rem;
    }

    .ys-hero {
        min-height: 68vh;
    }

    .yutori-galeria,
    .yg-grid,
    .yutori-galeria-grid,
    [class*="yutori"][class*="grid"],
    [class*="galeria"][class*="grid"] {
        grid-template-columns: repeat(2, 1fr);
    }

    /* En 2 columnas, último elemento huérfano centrado */
    .yutori-galeria > *:last-child:nth-child(2n+1),
    .yg-grid > *:last-child:nth-child(2n+1),
    .yutori-galeria-grid > *:last-child:nth-child(2n+1),
    [class*="yutori"][class*="grid"] > *:last-child:nth-child(2n+1),
    [class*="galeria"][class*="grid"] > *:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }
}

/* =========================================================================
   Header Yutori — v1.0.4 (selectores reforzados)
   ========================================================================= */

/* Reset agresivo del header padre Gymfinity si quedara visible */
header.ys-header,
header.wp-block-template-part.ys-header {
    background: var(--ys-black) !important;
    background-color: var(--ys-black) !important;
    color: var(--ys-white) !important;
    border-bottom: 2px solid var(--ys-gold) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Inner: 3 columnas con flex, sin envolver */
.ys-header__inner {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 1rem 1.5rem !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 2rem !important;
}

/* Logo: tamaño fijo, no se encoge */
.ys-header__logo {
    flex: 0 0 auto !important;
    margin: 0 !important;
}
.ys-header__logo img {
    display: block !important;
    height: 56px !important;
    width: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
}

/* Navegación: ocupa el espacio sobrante, centrado */
.ys-header__nav,
.ys-header .wp-block-navigation {
    flex: 1 1 auto !important;
    justify-content: center !important;
    color: var(--ys-white) !important;
}

.ys-header__nav .wp-block-navigation__container,
.ys-header .wp-block-navigation__container {
    gap: 2rem !important;
    flex-wrap: nowrap !important;
}

.ys-header__nav a,
.ys-header .wp-block-navigation a,
.ys-header .wp-block-navigation__submenu-container a {
    color: var(--ys-white) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    white-space: nowrap !important;
}

.ys-header__nav a:hover,
.ys-header .wp-block-navigation a:hover {
    color: var(--ys-gold) !important;
}

/* CTA: ancho mínimo garantizado, no se rompe */
.ys-header__cta {
    flex: 0 0 auto !important;
    margin: 0 !important;
    min-width: 180px !important;
}

.ys-header__cta .wp-block-button {
    width: auto !important;
}

.ys-header__cta .wp-block-button__link,
.ys-header__cta a.wp-block-button__link,
.ys-header__cta .wp-element-button {
    background: var(--ys-gold) !important;
    background-color: var(--ys-gold) !important;
    color: var(--ys-black) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 0.7rem 1.4rem !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    display: inline-block !important;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.ys-header__cta .wp-block-button__link:hover,
.ys-header__cta a.wp-block-button__link:hover,
.ys-header__cta .wp-element-button:hover {
    background: #d8b97c !important;
    background-color: #d8b97c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Hamburguesa móvil */
.ys-header .wp-block-navigation__responsive-container-open svg,
.ys-header .wp-block-navigation__responsive-container-close svg {
    fill: var(--ys-white) !important;
}

.ys-header .wp-block-navigation__responsive-container.is-menu-open {
    background: var(--ys-black) !important;
}

.ys-header .wp-block-navigation__responsive-container.is-menu-open a {
    color: var(--ys-white) !important;
    font-size: 1.5rem !important;
}

/* Ocultar contador de carrito de WooCommerce que el padre inyecta */
.ys-header .cart-contents-count,
.ys-header .cart-count,
.ys-header .header-cart,
.ys-header .wc-cart-count,
.ys-header [class*="cart-count"] {
    display: none !important;
}

/* Responsive header */
@media (max-width: 900px) {
    .ys-header__inner {
        flex-wrap: wrap !important;
        gap: 1rem !important;
        padding: 0.75rem 1rem !important;
    }
    .ys-header__cta {
        min-width: 0 !important;
    }
    .ys-header__nav .wp-block-navigation__container {
        gap: 1rem !important;
    }
}

@media (max-width: 600px) {
    .ys-header__cta {
        display: none !important;
    }
}

/* =========================================================================
   Footer Yutori — Luminosa
   ========================================================================= */
.ys-footer {
    background: var(--ys-black) !important;
    background-color: var(--ys-black) !important;
    color: var(--ys-white) !important;
    margin-top: 4rem;
    padding: 0;
}

.ys-footer__top {
    padding: 3.5rem 1.5rem 2rem !important;
    border-bottom: 1px solid rgba(201, 168, 108, 0.25) !important;
    max-width: 1240px;
    margin: 0 auto;
}

/* Forzar layout 4 columnas con flex (no depender del .wp-block-columns del padre) */
.ys-footer .ys-footer__cols,
.ys-footer .wp-block-columns.ys-footer__cols {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 3rem !important;
    margin: 0 !important;
}

/* Reset de cada columna: ancho proporcional, sin overrides del padre */
.ys-footer .ys-footer__cols .wp-block-column,
.ys-footer .ys-footer__brand,
.ys-footer .ys-footer__col {
    flex: 1 1 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ys-footer .ys-footer__brand {
    flex: 1.4 1 0 !important;  /* Brand un poco más ancho */
}

/* Logo del footer: 80px, alineado a la izquierda */
.ys-footer__brand figure,
.ys-footer__brand .wp-block-image {
    margin: 0 0 1.25rem 0 !important;
}

.ys-footer__brand img {
    display: block !important;
    height: 80px !important;
    width: auto !important;
    max-width: 80px !important;
    border-radius: 0 !important;
}

/* Claim en serif, oro suave (no italic, más sólido) */
.ys-footer__claim {
    margin: 1rem 0 0 !important;
    color: var(--ys-gold-soft) !important;
    font-family: var(--ys-font-display) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    letter-spacing: -0.01em !important;
}

/* Títulos de columna: oro envejecido, uppercase, espaciado generoso */
.ys-footer__title {
    color: var(--ys-gold) !important;
    margin: 0 0 1.25rem !important;
    font-family: var(--ys-font-body) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.ys-footer__col p,
.ys-footer__col a {
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.7 !important;
    font-size: 0.92rem !important;
    font-family: var(--ys-font-body) !important;
}

.ys-footer__col a {
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.ys-footer__col a:hover {
    border-bottom-color: var(--ys-gold-soft) !important;
    color: var(--ys-gold-soft) !important;
}

/* Redes sociales: iconos oro */
.ys-footer__social {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    gap: 0.5rem !important;
}

.ys-footer__social .wp-social-link svg {
    fill: var(--ys-gold) !important;
    width: 22px !important;
    height: 22px !important;
}

.ys-footer__social .wp-social-link {
    background: transparent !important;
    background-color: transparent !important;
    transition: transform 0.2s, background 0.2s !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
}

.ys-footer__social .wp-social-link:hover {
    background: rgba(201, 168, 108, 0.15) !important;
    background-color: rgba(201, 168, 108, 0.15) !important;
    transform: translateY(-2px);
}

/* Bottom bar legal */
.ys-footer__bottom {
    background: rgba(0, 0, 0, 0.45) !important;
    background-color: rgba(0, 0, 0, 0.45) !important;
    padding: 1.25rem 1.5rem !important;
    max-width: 100%;
}

.ys-footer__legal,
.ys-footer__legal a {
    color: rgba(255, 255, 255, 0.65) !important;
    margin: 0 !important;
    font-size: 0.78rem !important;
    line-height: 1.6 !important;
    font-family: var(--ys-font-body) !important;
}

.ys-footer__legal {
    text-align: center !important;
    max-width: 1240px;
    margin: 0 auto !important;
}

.ys-footer__legal a {
    text-decoration: none;
    transition: color 0.2s;
}

.ys-footer__legal a:hover {
    color: var(--ys-gold-soft) !important;
}

/* Responsive: colapsar a stack en móvil */
@media (max-width: 781px) {
    .ys-footer__top {
        padding: 2.5rem 1.25rem 1.5rem !important;
    }
    .ys-footer .ys-footer__cols,
    .ys-footer .wp-block-columns.ys-footer__cols {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .ys-footer .ys-footer__cols .wp-block-column,
    .ys-footer .ys-footer__brand,
    .ys-footer .ys-footer__col {
        flex: 1 1 100% !important;
        width: 100% !important;
    }
}

/* =========================================================================
   Banda Campamentos — Luminosa cantarina (paso 5)
   Banda horizontal estrecha entre Galería superior y Hero. Paleta carnaval.
   ========================================================================= */
.ys-camp-banner {
    position: relative;
    background: linear-gradient(135deg, #d63a2a 0%, #c41e2a 50%, #a8181f 100%);
    color: #ffffff;
    padding: 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.ys-camp-banner__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 2fr minmax(180px, auto);
    gap: 2rem;
    align-items: center;
}

/* Banderines arriba/abajo: triángulos alternos en gradiente conic */
.ys-camp-banner__pennants {
    height: 14px;
    background-image:
        linear-gradient(135deg, transparent 50%, #ffd54f 50%),
        linear-gradient(225deg, transparent 50%, #ffd54f 50%);
    background-size: 28px 14px, 28px 14px;
    background-position: 0 0, 14px 0;
    background-repeat: repeat-x;
}
.ys-camp-banner__pennants--top {
    background-image:
        linear-gradient(135deg, #4fc3f7 50%, transparent 50%),
        linear-gradient(225deg, #ffd54f 50%, transparent 50%),
        linear-gradient(135deg, #aed581 50%, transparent 50%),
        linear-gradient(225deg, #f48fb1 50%, transparent 50%);
    background-size: 24px 14px, 24px 14px, 24px 14px, 24px 14px;
    background-position: 0 0, 24px 0, 48px 0, 72px 0;
    background-repeat: repeat-x;
}
.ys-camp-banner__pennants--bottom {
    transform: rotate(180deg);
    background-image:
        linear-gradient(135deg, #f48fb1 50%, transparent 50%),
        linear-gradient(225deg, #aed581 50%, transparent 50%),
        linear-gradient(135deg, #ffd54f 50%, transparent 50%),
        linear-gradient(225deg, #4fc3f7 50%, transparent 50%);
    background-size: 24px 14px, 24px 14px, 24px 14px, 24px 14px;
    background-position: 0 0, 24px 0, 48px 0, 72px 0;
    background-repeat: repeat-x;
}

/* Columna izquierda: sello + título + claim */
.ys-camp-banner__left { text-align: left; }

.ys-camp-banner__sello {
    display: inline-block;
    background: #ffd54f;
    color: #4a2818;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ys-camp-banner__title {
    font-family: 'Fraunces', 'Noto Serif JP', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 0.3rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.ys-camp-banner__claim {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

/* Columna central: píldoras */
.ys-camp-banner__center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
}

.ys-camp-banner__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #4a2818;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}
.ys-camp-banner__pill--blue   { background: #4fc3f7; color: #0d3a52; }
.ys-camp-banner__pill--mint   { background: #80cbc4; color: #1a4d49; }
.ys-camp-banner__pill--pink   { background: #f48fb1; color: #5a1f37; }
.ys-camp-banner__pill--yellow { background: #ffd54f; color: #4a3500; }
.ys-camp-banner__pill--green  { background: #aed581; color: #2d4a18; }
.ys-camp-banner__pill--gold   {
    background: #c9a86c;
    color: #1a1714;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

/* Columna derecha: precio + CTA */
.ys-camp-banner__right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.ys-camp-banner__price {
    margin: 0;
    color: #ffffff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    line-height: 1.25;
}
.ys-camp-banner__price strong {
    display: inline;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd54f;
}
.ys-camp-banner__price small {
    font-size: 0.72rem;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.ys-camp-banner__cta {
    display: inline-block;
    background: #ffd54f;
    color: #4a2818;
    text-decoration: none;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ys-camp-banner__cta:hover {
    background: #ffb300;
    color: #4a2818;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
}

/* Responsive: en tablet/móvil colapsa a stack */
@media (max-width: 900px) {
    .ys-camp-banner__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        padding: 1.25rem 1rem;
    }
    .ys-camp-banner__left { text-align: center; }
    .ys-camp-banner__center { justify-content: center; }
}

/* =========================================================================
   Animaciones Luminosa — paso 6
   Reveal en scroll, smooth scroll, hover lift, prefers-reduced-motion
   ========================================================================= */

/* Smooth scroll global */
html {
    scroll-behavior: smooth;
}

/* Reveal: estado inicial (oculto, ligeramente desplazado abajo) */
.ys-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

/* Reveal: estado revelado */
.ys-reveal.ys-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Variantes con delay escalonado para elementos hijos del hero */
.ys-hero__medallion.ys-reveal { transition-delay: 0.05s; }
.ys-hero__claim.ys-reveal     { transition-delay: 0.18s; }
.ys-hero__sub.ys-reveal       { transition-delay: 0.30s; }
.ys-hero__cta-row.ys-reveal   { transition-delay: 0.42s; }

/* Cards de disciplinas: hover lift ya existe, refinamos */
.ys-disciplina {
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.25s ease,
                border-color 0.25s ease,
                background-color 0.2s ease !important;
}

.ys-disciplina:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 28px rgba(26, 23, 20, 0.14) !important;
    border-top-color: var(--ys-accent) !important;
}

/* Banda campamentos: pequeño lift en hover del CTA (ya existe), añadir lift suave del título */
.ys-camp-banner__title {
    transition: transform 0.3s ease;
}
.ys-camp-banner:hover .ys-camp-banner__title {
    transform: scale(1.02);
}

/* prefers-reduced-motion: deshabilita TODAS las animaciones y transiciones */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .ys-reveal,
    .ys-reveal.ys-revealed {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .ys-hero__medallion {
        animation: none !important;
    }

    .ys-disciplina,
    .ys-camp-banner__title,
    .ys-camp-banner__cta {
        transition: none !important;
    }

    .ys-disciplina:hover {
        transform: none !important;
    }
}

/* Clase añadida por JS si el usuario tiene reduce-motion (refuerzo) */
html.ys-reduce-motion .ys-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
html.ys-reduce-motion .ys-hero__medallion {
    animation: none !important;
}
