/* ==========================================================================
   FLYERSHOP PRO — SECCIONES Y PÁGINAS
   Hero · Home · Blog · Contacto · Nosotros · 404 · Resultados
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO
   -------------------------------------------------------------------------- */
.fs-hero {
    position: relative;
    min-height: clamp(560px, 88vh, 860px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding-block: clamp(64px, 10vh, 120px);
}

.fs-hero__bg {
    position: absolute;
    inset: -10% 0 0;
    z-index: -3;
    will-change: transform;
}

.fs-hero__bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}

/* Destello que sigue al cursor dentro del hero */
.fs-hero__spotlight {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s var(--fs-ease-out);
    background: radial-gradient(
        220px circle at var(--fs-spot-x, 50%) var(--fs-spot-y, 50%),
        rgba(255, 255, 255, 0.16),
        rgba(255, 255, 255, 0.06) 50%,
        transparent 72%
    );
}

.fs-hero[data-fs-spotlight-active] .fs-hero__spotlight {
    opacity: 1;
}

@media (hover: none) {
    .fs-hero__spotlight { display: none; }
}

.fs-hero__veil {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(105deg, rgba(6,6,7,0.96) 0%, rgba(6,6,7,0.80) 45%, rgba(6,6,7,0.45) 100%),
        linear-gradient(180deg, rgba(6,6,7,0.55) 0%, transparent 30%, rgba(6,6,7,0.85) 100%);
}

.fs-hero__glow {
    position: absolute;
    top: 10%;
    left: 8%;
    width: 620px;
    height: 620px;
    z-index: -1;
    background: radial-gradient(circle, var(--fs-accent-glow) 0%, transparent 62%);
    filter: blur(90px);
    opacity: 0.38;
    pointer-events: none;
    animation: fs-pulse-glow 7s var(--fs-ease-in-out) infinite;
}

.fs-hero__glow::after {
    content: '';
    position: absolute;
    top: 55%;
    left: 60%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(212, 175, 106, 0.5) 0%, transparent 70%);
    filter: blur(70px);
    opacity: 0.3;
}

/* Con el mosaico oculto (opción del Customizer), el texto ocupa todo el ancho */
.fs-hero--no-showcase .fs-hero__inner { grid-template-columns: 1fr; }
.fs-hero--no-showcase .fs-hero__content,
.fs-hero--no-showcase .fs-hero__stats { max-width: 720px; }
.fs-hero--no-showcase .fs-hero__title { font-size: clamp(2.75rem, 6vw, 4.75rem); }

.fs-hero__fade {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, var(--fs-bg));
    pointer-events: none;
}

.fs-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: var(--fs-sp-16);
    width: 100%;
}

.fs-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--fs-sp-7);
    max-width: 640px;
    animation: fs-fade-up 0.9s var(--fs-ease-out) both;
}

.fs-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px 7px 13px;
    border-radius: var(--fs-r-full);
    background: var(--fs-glass-bg);
    border: 1px solid var(--fs-glass-border);
    backdrop-filter: var(--fs-glass-blur);
    -webkit-backdrop-filter: var(--fs-glass-blur);
    font-size: var(--fs-text-sm);
    font-weight: var(--fs-w-medium);
    letter-spacing: var(--fs-ls-tight);
    color: var(--fs-text-2);
}

.fs-hero__badge svg { color: #D4AF6A; }

.fs-hero__title {
    font-size: var(--fs-text-hero);
    font-weight: var(--fs-w-bold);
    line-height: 1.04;
    letter-spacing: var(--fs-ls-tighter);
    color: var(--fs-white);
}

.fs-hero__title-accent {
    position: relative;
    color: var(--fs-accent);
    white-space: nowrap;
}

.fs-hero__subtitle {
    font-size: var(--fs-text-lg);
    font-weight: var(--fs-w-light);
    line-height: var(--fs-lh-relaxed);
    color: var(--fs-text-2);
    max-width: 500px;
}

.fs-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fs-sp-4);
    margin-top: var(--fs-sp-3);
}

/* Barra de estadísticas de confianza */
.fs-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: var(--fs-sp-6);
    margin-top: var(--fs-sp-8);
    padding-top: var(--fs-sp-6);
    border-top: 1px solid var(--fs-border);
    max-width: 560px;
}

.fs-hero__stat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.fs-hero__stat-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: var(--fs-r-sm);
    background: var(--fs-accent-soft);
    color: var(--fs-accent);
}

.fs-hero__stat strong {
    display: block;
    font-size: var(--fs-text-lg);
    font-weight: var(--fs-w-bold);
    letter-spacing: var(--fs-ls-tight);
    color: var(--fs-white);
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.fs-hero__stat span {
    display: block;
    font-size: 11px;
    line-height: 1.3;
    color: var(--fs-text-muted);
    margin-top: 2px;
    white-space: nowrap;
}

/* Mosaico flotante — perspectiva 3D: las tarjetas se acercan al cursor
   (ver .fs-hero__card.is-elevated y initHeroCardTilt en theme.js) */
.fs-hero__showcase {
    position: relative;
    height: 560px;
    perspective: 1400px;
}

.fs-hero__card {
    position: absolute;
    border-radius: var(--fs-r-xl);
    overflow: hidden;
    border: 1px solid var(--fs-border-strong);
    box-shadow: var(--fs-shadow-xl);
    background: var(--fs-surface);
    animation: fs-float 7s var(--fs-ease-in-out) infinite;
    transition: transform .35s var(--fs-ease-out),
                box-shadow .45s var(--fs-ease-out),
                border-color .45s var(--fs-ease-out);
    will-change: transform;
}

.fs-hero__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .45s var(--fs-ease-out);
}

/* Brillo: un barrido diagonal de luz que aparece al acercar el cursor */
.fs-hero__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.16) 48%, rgba(212, 175, 106, 0.1) 55%, transparent 70%);
    background-size: 220% 220%;
    background-position: 130% 0;
    opacity: 0;
    transition: opacity .4s var(--fs-ease-out), background-position .7s var(--fs-ease-out);
    pointer-events: none;
}

.fs-hero__card.is-elevated {
    z-index: 6 !important;
    border-color: rgba(212, 175, 106, 0.55);
    box-shadow:
        0 55px 100px -25px rgba(0, 0, 0, .7),
        0 0 70px rgba(255, 59, 48, .28),
        0 0 0 1px rgba(212, 175, 106, .35);
}

.fs-hero__card.is-elevated::after {
    opacity: 1;
    background-position: -10% 0;
}

.fs-hero__card.is-elevated img {
    filter: brightness(1.06) saturate(1.08);
}

@media (hover: none) {
    .fs-hero__card { transition: none; }
}

/* Formato real de flyer/redes: 1080x1350 (post 4:5) */
.fs-hero__card--1 {
    width: 42%;
    aspect-ratio: 1080 / 1350;
    top: 0;
    right: 20%;
    rotate: 2deg;
    z-index: 5;
    animation-delay: 0s;
    border-color: rgba(212, 175, 106, 0.35);
    box-shadow: var(--fs-shadow-xl), 0 0 0 1px rgba(212, 175, 106, 0.12);
}

.fs-hero__card--2 {
    width: 34%;
    aspect-ratio: 1080 / 1350;
    top: 10%;
    left: 0;
    rotate: -6deg;
    z-index: 3;
    animation-delay: .8s;
}

.fs-hero__card--3 {
    width: 32%;
    aspect-ratio: 1080 / 1350;
    top: 4%;
    right: -2%;
    rotate: 5deg;
    z-index: 4;
    animation-delay: 1.6s;
}

.fs-hero__card--4 {
    width: 30%;
    aspect-ratio: 1080 / 1350;
    bottom: 0;
    left: 16%;
    rotate: -3deg;
    z-index: 2;
    animation-delay: 2.4s;
}

.fs-hero__card--5 {
    width: 32%;
    aspect-ratio: 1080 / 1350;
    bottom: -1%;
    right: 14%;
    rotate: 3deg;
    z-index: 1;
    animation-delay: 3.2s;
}

/* Aro de luz — "escenario" bajo el mosaico de flyers */
.fs-hero__stage {
    position: absolute;
    bottom: -10%;
    left: 50%;
    width: 92%;
    height: 170px;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.fs-hero__stage::before,
.fs-hero__stage::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.fs-hero__stage::before {
    background: radial-gradient(ellipse at center, rgba(255, 59, 48, 0.65) 0%, rgba(255, 59, 48, 0.28) 40%, transparent 72%);
    filter: blur(26px);
    animation: fs-pulse-glow 6s var(--fs-ease-in-out) infinite;
}

.fs-hero__stage::after {
    top: 44%;
    height: 3px;
    border-radius: var(--fs-r-full);
    background: linear-gradient(90deg, transparent, rgba(255, 90, 70, 0.9) 20%, #fff 50%, rgba(255, 90, 70, 0.9) 80%, transparent);
    box-shadow: 0 0 30px 4px rgba(255, 59, 48, 0.85), 0 0 90px 20px rgba(255, 59, 48, 0.4);
}

/* Insignias flotantes: chips de vidrio con icono + dato, ancladas al mosaico */
.fs-hero__float-badge {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--fs-r-lg);
    background: var(--fs-glass-dark);
    backdrop-filter: var(--fs-glass-blur-lg);
    -webkit-backdrop-filter: var(--fs-glass-blur-lg);
    border: 1px solid var(--fs-glass-border);
    box-shadow: var(--fs-shadow-lg);
    animation: fs-float 8s var(--fs-ease-in-out) infinite;
}

.fs-hero__float-badge svg { color: var(--fs-accent); flex-shrink: 0; }

.fs-hero__float-badge span {
    display: block;
    font-size: 10px;
    color: var(--fs-text-muted);
    white-space: nowrap;
}

.fs-hero__float-badge strong {
    display: block;
    font-size: var(--fs-text-sm);
    font-weight: var(--fs-w-bold);
    color: var(--fs-white);
    white-space: nowrap;
}

.fs-hero__float-badge--1 {
    top: -3%;
    left: 0;
    animation-delay: .4s;
}

.fs-hero__float-badge--2 {
    top: -3%;
    right: 6%;
    animation-delay: 1.6s;
}

.fs-hero__float-badge--3 {
    top: 46%;
    right: -8%;
    animation-delay: 2.8s;
}

@media (max-width: 1150px) {
    .fs-hero__float-badge--3 { display: none; }
}

/* --------------------------------------------------------------------------
   2. SECCIONES DE LA HOME
   -------------------------------------------------------------------------- */
.fs-trust { border-bottom: 1px solid var(--fs-border); }

.fs-products-grid { align-items: stretch; }

/* Panel de gratuitos */
.fs-free__panel {
    padding: clamp(28px, 4vw, 56px);
    border-radius: var(--fs-r-2xl);
    background:
        radial-gradient(90% 120% at 100% 0%, rgba(48, 209, 88, 0.08) 0%, transparent 55%),
        var(--fs-bg-elevated);
    border: 1px solid var(--fs-border);
}

.fs-free__panel .fs-section-head { margin-bottom: var(--fs-sp-8); }

/* --------------------------------------------------------------------------
   3. TARJETA DE PRODUCTO (capa de hover)
   -------------------------------------------------------------------------- */
.fs-product-card__hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--fs-sp-4);
    background: linear-gradient(180deg, transparent 45%, rgba(6,6,7,0.88) 100%);
    opacity: 0;
    transition: opacity var(--fs-t-slow) var(--fs-ease-out);
    z-index: 2;
    pointer-events: none;
}

.fs-card:hover .fs-product-card__hover { opacity: 1; }

.fs-product-card__preview {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--fs-r-full);
    background: var(--fs-glass-bg);
    border: 1px solid var(--fs-glass-border);
    backdrop-filter: var(--fs-glass-blur);
    -webkit-backdrop-filter: var(--fs-glass-blur);
    font-size: var(--fs-text-sm);
    font-weight: var(--fs-w-medium);
    color: var(--fs-white);
    transform: translateY(10px);
    transition: transform var(--fs-t-slow) var(--fs-ease-spring),
                background var(--fs-t-base) var(--fs-ease-out);
    pointer-events: auto;
    z-index: 3;
}

.fs-card:hover .fs-product-card__preview { transform: translateY(0); }
.fs-product-card__preview:hover { background: var(--fs-accent); border-color: var(--fs-accent); }

.fs-product-card__price {
    font-size: var(--fs-text-md);
    font-weight: var(--fs-w-semibold);
    color: var(--fs-white);
    letter-spacing: var(--fs-ls-tight);
}

.fs-product-card__price del {
    font-size: var(--fs-text-sm);
    font-weight: var(--fs-w-regular);
    color: var(--fs-text-subtle);
    margin-right: 6px;
}

.fs-product-card__price ins { text-decoration: none; }

.fs-price-free {
    color: var(--fs-free);
    font-weight: var(--fs-w-semibold);
}

.fs-product-card__add {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--fs-r-full);
    background: var(--fs-surface-3);
    border: 1px solid var(--fs-border);
    color: var(--fs-text-2);
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    transition: all var(--fs-t-base) var(--fs-ease-out);
}

.fs-product-card__add:hover {
    background: var(--fs-accent);
    border-color: var(--fs-accent);
    color: var(--fs-white);
    transform: scale(1.08);
}

.fs-product-card__add.loading { opacity: 0.6; pointer-events: none; }
.fs-product-card__add.added::after { display: none; }

/* --------------------------------------------------------------------------
   4. BLOG
   -------------------------------------------------------------------------- */
.fs-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--fs-sp-12);
    align-items: start;
}

.fs-blog-layout--full { grid-template-columns: minmax(0, 1fr); }

.fs-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--fs-sp-6);
}

.fs-blog-sidebar { position: sticky; top: calc(var(--fs-header-h) + 24px); }

/* Entrada destacada */
.fs-post-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    border-radius: var(--fs-r-xl);
    overflow: hidden;
    border: 1px solid var(--fs-border);
    background: var(--fs-surface);
    margin-bottom: var(--fs-sp-12);
}

.fs-post-featured__media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.fs-post-featured__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fs-t-slower) var(--fs-ease-out);
}

.fs-post-featured:hover .fs-post-featured__media img { transform: scale(1.04); }

.fs-post-featured__body {
    padding: clamp(24px, 3.5vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--fs-sp-4);
}

.fs-post-featured__title {
    font-size: var(--fs-text-xl);
    font-weight: var(--fs-w-semibold);
    letter-spacing: var(--fs-ls-tight);
    line-height: var(--fs-lh-snug);
}

.fs-post-featured__title a:hover { color: var(--fs-accent); }

/* Entrada individual */
.fs-single { padding-block: var(--fs-section-y-sm) var(--fs-section-y); }

.fs-single__hero {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: var(--fs-sp-10);
}

.fs-single__title {
    font-size: var(--fs-text-3xl);
    margin-block: var(--fs-sp-5) var(--fs-sp-6);
}

.fs-single__meta { justify-content: center; }

.fs-single__thumb {
    border-radius: var(--fs-r-xl);
    overflow: hidden;
    margin-bottom: var(--fs-sp-12);
    border: 1px solid var(--fs-border);
    max-height: 560px;
}

.fs-single__thumb img { width: 100%; height: 100%; object-fit: cover; }

.fs-single__content {
    max-width: 760px;
    margin-inline: auto;
    font-size: var(--fs-text-md);
}

.fs-single__footer {
    max-width: 760px;
    margin: var(--fs-sp-16) auto 0;
    padding-top: var(--fs-sp-8);
    border-top: 1px solid var(--fs-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--fs-sp-5);
}

.fs-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.fs-tags a {
    padding: 6px 13px;
    border-radius: var(--fs-r-full);
    background: var(--fs-surface-2);
    border: 1px solid var(--fs-border);
    font-size: var(--fs-text-xs);
    color: var(--fs-text-muted);
    transition: all var(--fs-t-base) var(--fs-ease-out);
}

.fs-tags a:hover { background: var(--fs-accent); border-color: var(--fs-accent); color: var(--fs-white); }

/* Navegación entre entradas */
.fs-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fs-sp-4);
    max-width: 760px;
    margin: var(--fs-sp-12) auto 0;
}

.fs-post-nav__item {
    padding: var(--fs-sp-6);
    border-radius: var(--fs-r-lg);
    border: 1px solid var(--fs-border);
    background: var(--fs-surface);
    transition: all var(--fs-t-base) var(--fs-ease-out);
}

.fs-post-nav__item:hover { border-color: var(--fs-border-active); background: var(--fs-surface-2); }
.fs-post-nav__item--next { text-align: right; }

.fs-post-nav__label {
    display: block;
    font-size: var(--fs-text-xs);
    text-transform: uppercase;
    letter-spacing: var(--fs-ls-wider);
    color: var(--fs-text-subtle);
    margin-bottom: 8px;
}

.fs-post-nav__title {
    font-size: var(--fs-text-base);
    font-weight: var(--fs-w-medium);
    color: var(--fs-text);
}

/* Comentarios */
.fs-comments {
    max-width: 760px;
    margin: var(--fs-sp-16) auto 0;
    padding-top: var(--fs-sp-12);
    border-top: 1px solid var(--fs-border);
}

.fs-comments__title { font-size: var(--fs-text-xl); margin-bottom: var(--fs-sp-8); }

.fs-comment {
    display: flex;
    gap: var(--fs-sp-4);
    padding: var(--fs-sp-6) 0;
    border-bottom: 1px solid var(--fs-border);
}

.fs-comment__avatar img { border-radius: var(--fs-r-full); }

.fs-comment__head {
    display: flex;
    align-items: baseline;
    gap: var(--fs-sp-3);
    margin-bottom: 6px;
}

.fs-comment__author { font-weight: var(--fs-w-semibold); color: var(--fs-white); font-size: var(--fs-text-sm); }
.fs-comment__date { font-size: var(--fs-text-xs); color: var(--fs-text-subtle); }
.fs-comment__text { font-size: var(--fs-text-sm); color: var(--fs-text-2); line-height: var(--fs-lh-relaxed); }

.fs-comment__reply a {
    font-size: var(--fs-text-xs);
    color: var(--fs-accent);
    font-weight: var(--fs-w-medium);
}

.comment-respond { margin-top: var(--fs-sp-10); }
.comment-reply-title { font-size: var(--fs-text-lg); margin-bottom: var(--fs-sp-5); }
.comment-form { display: grid; gap: var(--fs-sp-4); }
.comment-form p { margin: 0; }
.comment-form-cookies-consent { display: flex; align-items: center; gap: 10px; }
.comment-form-cookies-consent label { margin: 0; font-size: var(--fs-text-sm); }

.comment-form .submit {
    justify-self: start;
    padding: 13px 28px;
    border-radius: var(--fs-r-full);
    background: var(--fs-accent);
    color: var(--fs-white);
    font-weight: var(--fs-w-medium);
    font-size: var(--fs-text-base);
    box-shadow: var(--fs-shadow-btn);
    transition: all var(--fs-t-base) var(--fs-ease-out);
}

.comment-form .submit:hover { background: var(--fs-accent-hover); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   5. PÁGINA DE CONTACTO
   -------------------------------------------------------------------------- */
.fs-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: var(--fs-sp-12);
    align-items: start;
}

.fs-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--fs-sp-4);
}

.fs-contact-item {
    display: flex;
    gap: var(--fs-sp-4);
    padding: var(--fs-sp-5);
    border-radius: var(--fs-r-lg);
    background: var(--fs-surface);
    border: 1px solid var(--fs-border);
    transition: all var(--fs-t-base) var(--fs-ease-out);
}

.fs-contact-item:hover { border-color: var(--fs-border-strong); background: var(--fs-surface-2); }

.fs-contact-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--fs-r-md);
    display: grid;
    place-items: center;
    background: var(--fs-accent-soft);
    color: var(--fs-accent);
    flex-shrink: 0;
}

.fs-contact-item__label {
    font-size: var(--fs-text-xs);
    text-transform: uppercase;
    letter-spacing: var(--fs-ls-wider);
    color: var(--fs-text-subtle);
    margin-bottom: 4px;
}

.fs-contact-item__value {
    font-size: var(--fs-text-base);
    color: var(--fs-text);
    font-weight: var(--fs-w-medium);
}

.fs-contact-item__value a:hover { color: var(--fs-accent); }

.fs-contact-form {
    padding: clamp(24px, 3.5vw, 48px);
    border-radius: var(--fs-r-xl);
    background: var(--fs-surface);
    border: 1px solid var(--fs-border);
}

.fs-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--fs-sp-5);
}

.fs-form-grid > .fs-form-field--full { grid-column: 1 / -1; }

/* --------------------------------------------------------------------------
   6. SOBRE NOSOTROS
   -------------------------------------------------------------------------- */
.fs-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.fs-about-split--reverse .fs-about-split__media { order: 2; }

.fs-about-split__media {
    border-radius: var(--fs-r-2xl);
    overflow: hidden;
    border: 1px solid var(--fs-border);
    aspect-ratio: 4 / 3;
}

.fs-about-split__media img { width: 100%; height: 100%; object-fit: cover; }

.fs-about-split__body { display: flex; flex-direction: column; gap: var(--fs-sp-5); }

.fs-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--fs-sp-6);
}

/* --------------------------------------------------------------------------
   7. PÁGINA 404
   -------------------------------------------------------------------------- */
.fs-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-block: var(--fs-section-y);
}

.fs-404::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--fs-accent-glow) 0%, transparent 62%);
    filter: blur(90px);
    opacity: 0.35;
    pointer-events: none;
}

.fs-404__code {
    font-size: clamp(96px, 22vw, 240px);
    font-weight: var(--fs-w-black);
    line-height: 0.85;
    letter-spacing: var(--fs-ls-tighter);
    background: linear-gradient(180deg, var(--fs-white) 0%, rgba(255,255,255,0.12) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--fs-sp-6);
}

.fs-404__inner { position: relative; z-index: 2; max-width: 560px; }

.fs-404__actions {
    display: flex;
    gap: var(--fs-sp-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--fs-sp-8);
}

/* --------------------------------------------------------------------------
   8. RESULTADOS DE BÚSQUEDA / ARCHIVOS
   -------------------------------------------------------------------------- */
.fs-archive { padding-block: var(--fs-section-y-sm) var(--fs-section-y); }

.fs-archive__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--fs-sp-4);
    padding-bottom: var(--fs-sp-6);
    margin-bottom: var(--fs-sp-8);
    border-bottom: 1px solid var(--fs-border);
}

.fs-archive__count { font-size: var(--fs-text-sm); color: var(--fs-text-muted); }

.fs-filter-row {
    display: flex;
    gap: var(--fs-sp-3);
    flex-wrap: wrap;
    margin-bottom: var(--fs-sp-8);
}

/* --------------------------------------------------------------------------
   9. FAQ
   -------------------------------------------------------------------------- */
.fs-faq { max-width: 800px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   10. PÁGINA GENÉRICA
   -------------------------------------------------------------------------- */
.fs-page-content {
    max-width: 820px;
    margin-inline: auto;
    padding-block: var(--fs-section-y);
}

.fs-elementor-page .fs-page-content { max-width: none; padding: 0; }
