/* Removed helper classes that moved to buttons.css */

/* ============================================================
   HERO — Full-immersion, editorial, premium
   ============================================================ */
.fv-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    overflow: hidden;
    background: var(--fv-bg-dark);
}

.fv-hero__bg {
    position: absolute;
    inset: 0;
    background-image: var(--fv-gradient-hero);
    background-size: cover;
    background-position: center 30%;
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* Cuando haya fotografía, agregar clase .has-photo al hero desde PHP */
.fv-hero.has-photo .fv-hero__bg {
    background-image: url('../img/hero-bg.jpg');
}

.fv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

.fv-hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    align-content: end;
    padding-top: var(--fv-space-5xl);
    padding-bottom: var(--fv-space-4xl);
    padding-inline: var(--fv-gutter);
    width: min(100%, var(--fv-container));
    margin-inline: auto;
    color: var(--fv-text-light);
    gap: var(--fv-space-md);
}

.fv-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--fv-space-sm);
    font-family: var(--fv-font-body);
    font-size: var(--fv-text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--fv-kraft-light);
    opacity: 0.9;
}

.fv-hero__eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--fv-kraft);
}

.fv-hero__titulo {
    max-width: 16ch;
    font-family: var(--fv-font-heading);
    font-size: var(--fv-text-5xl);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 32px rgba(0,0,0,0.4);
    color: #fff;
}

.fv-hero__titulo em {
    font-style: normal;
    color: var(--fv-kraft-light);
}

.fv-hero__subtitulo {
    max-width: 48ch;
    font-size: var(--fv-text-lg);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(250, 250, 245, 0.78);
    padding-top: var(--fv-space-sm);
}

.fv-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fv-space-md);
    padding-top: var(--fv-space-lg);
}

/* Hero CTA buttons */
.fv-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.25rem;
    border-radius: 999px;
    font-family: var(--fv-font-body, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fv-hero__cta--dark {
    background: #111;
    color: #fff;
    border-color: #111;
}

.fv-hero__cta--dark:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.fv-hero__cta--red {
    background: var(--fv-red, #e84d44);
    color: #fff;
    border-color: var(--fv-red, #e84d44);
}

.fv-hero__cta--red:hover {
    background: #d63e35;
    border-color: #d63e35;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,77,68,0.4);
}

/* Scroll indicator */
.fv-hero__scroll {
    position: absolute;
    bottom: var(--fv-space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250,250,245,0.5);
    font-size: var(--fv-text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fv-bounce 2s ease infinite;
}

@keyframes fv-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST STRIP — Barra de confianza
   ============================================================ */
.fv-trust-strip {
    background: var(--fv-surface);
    border-bottom: 1px solid var(--fv-border-light);
    padding-block: var(--fv-space-xl);
}

.fv-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--fv-space-md);
    align-items: center;
}

.fv-trust-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fv-space-md);
    padding: var(--fv-space-md);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    text-align: left;
}

.fv-trust-strip__icon {
    font-size: 2.5rem;
    color: var(--fv-kraft);
    transition: transform var(--fv-transition-base);
}

.fv-trust-strip__item:hover .fv-trust-strip__icon {
    transform: scale(1.1);
}

.fv-trust-strip__text {
    display: grid;
    gap: 0.2rem;
}

.fv-trust-strip__desc {
    font-family: var(--fv-font-body);
    font-size: var(--fv-text-lg);
    font-weight: 700;
    color: var(--fv-text);
    line-height: 1.1;
}

.fv-trust-strip__label {
    font-size: var(--fv-text-xs);
    color: var(--fv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.fv-trust-strip__tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--fv-bg-dark);
    color: #fff;
    padding: var(--fv-space-lg);
    border-radius: var(--fv-radius-lg);
    font-size: var(--fv-text-sm);
    width: max-content;
    max-width: 280px;
    box-shadow: var(--fv-shadow-xl);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 50;
    text-align: center;
    line-height: 1.5;
}

.fv-trust-strip__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--fv-bg-dark) transparent transparent transparent;
}

.fv-trust-strip__item:hover .fv-trust-strip__tooltip,
.fv-trust-strip__item:focus-visible .fv-trust-strip__tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   BENEFITS — Categoria showcase (inspirado en Seed.com)
   "Whole body health starts in the gut" → "Encontrá tu equilibrio"
   Frascos en fila con fondo redondeado + hover interactivo.
   ============================================================ */
.fv-benefits {
    padding-block: clamp(2.5rem, 5vw, 4rem);
    background: var(--fv-bg);
}

.fv-benefits__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--fv-space-3xl);
}

.fv-benefits__eyebrow {
    display: inline-block;
    font-family: var(--fv-font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--fv-text-muted);
    margin-bottom: var(--fv-space-lg);
}

.fv-benefits__titulo {
    font-family: var(--fv-font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: normal;
    line-height: 1.08;
    letter-spacing: 0.02em;
    color: var(--fv-text);
    margin-bottom: var(--fv-space-md);
}

.fv-benefits__subtitulo {
    font-family: var(--fv-font-body);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.7;
    color: var(--fv-text-muted);
    max-width: 50ch;
    margin-inline: auto;
}

/* ---- Showcase: fila horizontal de tarjetas con fondo redondeado ---- */
.fv-benefits__showcase {
    display: flex;
    gap: 0;
    width: 100%;
    margin-inline: auto;
    border-radius: 0;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}

/* ---- Tarjeta individual ---- */
.fv-benefits__card {
    position: relative;
    flex: 1 1 0%;
    display: flex;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: flex 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fv-benefits__card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 20px 32px;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Tag / pill de categoría arriba */
.fv-benefits__card-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: var(--fv-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.fv-benefits__card:hover .fv-benefits__card-tag {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
}

/* Zona visual del frasco */
.fv-benefits__card-visual {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.fv-benefits__card-img-wrapper {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* Técnica de Halo: suaviza los bordes blancos convirtiéndolos en resplandor */
    -webkit-mask-image: radial-gradient(circle, black 35%, transparent 85%);
    mask-image: radial-gradient(circle, black 35%, transparent 85%);
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fv-benefits__card:hover .fv-benefits__card-img-wrapper {
    transform: scale(1.12) rotate(4deg);
}

/* Info del producto debajo de la imagen */
.fv-benefits__card-info {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fv-benefits__card-product {
    font-family: var(--fv-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.fv-benefits__card-format {
    font-family: var(--fv-font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 8px;
}

.fv-benefits__card-desc {
    font-family: var(--fv-font-body);
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 16px;
}

/* CTA "Explorar →" */
.fv-benefits__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-family: var(--fv-font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
}

.fv-benefits__card:hover .fv-benefits__card-cta {
    opacity: 1;
    transform: translateY(0);
    background: #fff;
    color: #000000;
    border-color: #fff;
}

.fv-benefits__card-cta svg {
    transition: transform 0.3s ease;
}

.fv-benefits__card:hover .fv-benefits__card-cta svg {
    transform: translateX(3px);
}

/* Separador sutil entre tarjetas */
.fv-benefits__card + .fv-benefits__card {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Degradados por categoría — fondos neutros, brillos con colores secundarios del Manual */
.fv-benefits__card--energia  { background: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 40%, #000000 100%); --card-accent: var(--fv-yellow); } /* Amarillo */
.fv-benefits__card--foco     { background: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 40%, #000000 100%); --card-accent: var(--fv-blue); } /* Azul */
.fv-benefits__card--calma    { background: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 40%, #000000 100%); --card-accent: var(--fv-teal); } /* Teal */
.fv-benefits__card--defensas { background: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 40%, #000000 100%); --card-accent: var(--fv-green); } /* Verde */
.fv-benefits__card--hormonas { background: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 40%, #000000 100%); --card-accent: var(--fv-pink); } /* Rosa */

/* Glow sutil al hover */
.fv-benefits__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 50%;
    background: radial-gradient(ellipse at center top, var(--card-accent, #66ae4c), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.fv-benefits__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.fv-benefits__card:hover::before {
    opacity: 1;
}

.fv-benefits__card:hover::after {
    opacity: 0.35;
}

/* ---- Responsive: tablet ---- */
@media (max-width: 1024px) {
    .fv-benefits__showcase {
        flex-wrap: wrap;
        border-radius: 24px;
    }

    .fv-benefits__card {
        flex: 0 0 calc(50% - 0.5px);
    }

    .fv-benefits__card + .fv-benefits__card {
        border-left: none;
    }

    /* Separador horizontal */
    .fv-benefits__card:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    /* Separador vertical entre pares */
    .fv-benefits__card:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .fv-benefits__card-inner {
        padding: 32px 16px 28px;
    }

    .fv-benefits__card-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive: mobile ---- */
@media (max-width: 640px) {
    .fv-benefits__showcase {
        flex-direction: column;
        border-radius: 20px;
    }

    .fv-benefits__card {
        flex: none;
    }

    .fv-benefits__card + .fv-benefits__card {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .fv-benefits__card-inner {
        flex-direction: row;
        text-align: left;
        padding: 20px 24px;
        gap: 16px;
    }

    .fv-benefits__card-visual {
        width: 80px;
        height: 80px;
        aspect-ratio: 1;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .fv-benefits__card-img {
        width: 100%;
        height: 100%;
    }

    .fv-benefits__card-tag {
        position: absolute;
        top: 12px;
        right: 16px;
        margin-bottom: 0;
        font-size: 0.6rem;
    }

    .fv-benefits__card-desc {
        display: none;
    }

    .fv-benefits__card-cta {
        opacity: 1;
        transform: none;
        padding: 6px 14px;
        font-size: 0.7rem;
        margin-top: 8px;
    }
}

/* Legacy selectors — hide old structure */
.fv-benefit-card,
.fv-benefit-card__bg,
.fv-benefit-card__content,
.fv-benefits__grid {
    display: none;
}
/* ============================================================
   APPROACH — "El equilibrio del organismo" (Seed.com redesign)
   Layout: conceptos izquierda + visual interactivo derecha
   ============================================================ */
.fv-approach {
    padding-block: clamp(5rem, 8vw, 8rem);
    background: #0c1a14;
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Glow sutil de fondo — tonos fungi */
.fv-approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 75% 30%, rgba(232,77,68,0.06), transparent),
        radial-gradient(ellipse 40% 50% at 20% 70%, rgba(60,140,80,0.08), transparent),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(40,80,60,0.1), transparent);
    pointer-events: none;
}

.fv-approach__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

/* ─── COLUMNA IZQUIERDA: Texto y bloques ───── */
.fv-approach__text {
    display: grid;
    gap: 2rem;
}

.fv-approach__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fv-red, #e84d44);
}

.fv-approach__titulo {
    font-family: var(--fv-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.fv-approach__titulo-sub {
    display: block;
    font-family: var(--fv-font-body, 'Inter', sans-serif);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    line-height: 1.5;
    letter-spacing: 0;
}

/* ─── Bloques de concepto ────────────────────── */
.fv-approach__bloques {
    display: grid;
    gap: 1rem;
}

.fv-approach__bloque {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s ease;
    cursor: default;
}

.fv-approach__bloque:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(232,77,68,0.3);
    transform: translateX(4px);
}

.fv-approach__bloque-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(232,77,68,0.1);
    border-radius: 12px;
}

.fv-approach__bloque-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fv-approach__bloque-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fv-red, #e84d44);
}

.fv-approach__bloque-titulo {
    font-family: var(--fv-font-body, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.fv-approach__bloque-texto {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ─── COLUMNA DERECHA: Visual interactivo ────── */
.fv-approach__media {
    display: grid;
    gap: 1.5rem;
}

.fv-approach__visual {
    aspect-ratio: 3 / 4;
    max-height: 480px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Ilustración principal (generada por Nano Banana Pro) */
.fv-approach__illustration {
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 1.5rem;
}

.fv-approach__body-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(232,77,68,0.15));
}

/* Puntos de glow animados (posicionados sobre la ilustración) */
.fv-approach__glow {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--fv-red, #e84d44);
    opacity: 0;
    animation: fv-glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.fv-approach__glow--1 {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.fv-approach__glow--2 {
    top: 38%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.fv-approach__glow--3 {
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes fv-glow-pulse {
    0%, 100% { opacity: 0; transform: translateX(-50%) scale(0.5); box-shadow: none; }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1); box-shadow: 0 0 20px rgba(232,77,68,0.4); }
}


/* ─── Escenas (texto superpuesto) ────────────── */
.fv-approach__scenes {
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv-approach__scene {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    animation: fv-scene-in 0.5s ease;
}

.fv-approach__scene.is-active {
    display: flex;
}

@keyframes fv-scene-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.fv-approach__scene-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fv-red, #e84d44);
}

.fv-approach__scene-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    margin: 0;
}

/* ─── Progress dots ──────────────────────────── */
.fv-approach__progress {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 1rem;
}

.fv-approach__progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.fv-approach__progress-dot.is-active {
    background: var(--fv-red, #e84d44);
    width: 20px;
    border-radius: 3px;
}

/* ─── Quote ─────────────────────────────────── */
.fv-approach__quote {
    padding: 1.5rem;
    border-left: 3px solid var(--fv-red, #e84d44);
    margin: 0;
}

.fv-approach__quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 0.5rem;
}

.fv-approach__quote cite {
    font-size: 0.75rem;
    color: var(--fv-red, #e84d44);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: normal;
}

/* ============================================================
   REINO FUNGI — Formatos y ritual
   ============================================================ */
.fv-reino-fungi {
    padding-block: clamp(4rem, 7vw, 6rem);
    background: var(--fv-surface);
}

.fv-reino-fungi__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--fv-space-5xl);
    align-items: center;
}

/* Columna visual — preparada para foto real */
.fv-reino-fungi__visual {
    position: relative;
}

.fv-reino-fungi__img-placeholder {
    aspect-ratio: 4 / 5;
    border-radius: var(--fv-radius-xl);
    background:
        radial-gradient(circle at 30% 30%, rgba(232,77,68,0.2), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(87,183,188,0.15), transparent 60%),
        linear-gradient(160deg, #000000 0%, #0a0a0a 60%, #111111 100%);
    overflow: hidden;
    box-shadow: var(--fv-shadow-xl);
    display: flex;
    align-items: flex-end;
    padding: var(--fv-space-2xl);
}

/* Texto superpuesto al placeholder — desaparece cuando hay foto real */
.fv-reino-fungi__img-placeholder-text {
    font-family: var(--fv-font-heading);
    font-size: var(--fv-text-3xl);
    font-weight: 800;
    color: rgba(250,250,245,0.12);
    line-height: 1.1;
    user-select: none;
}

/* Tag flotante decorativo */
.fv-reino-fungi__badge {
    position: absolute;
    top: var(--fv-space-xl);
    right: calc(var(--fv-space-xl) * -0.5);
    padding: var(--fv-space-md) var(--fv-space-lg);
    background: var(--fv-surface);
    border-radius: var(--fv-radius-full);
    box-shadow: var(--fv-shadow-md);
    font-size: var(--fv-text-sm);
    font-weight: 600;
    color: var(--fv-text);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: var(--fv-space-sm);
}

.fv-reino-fungi__badge::before {
    content: '🍄';
    font-size: 1.2em;
}

/* Columna de contenido */
.fv-reino-fungi__content {
    display: grid;
    gap: var(--fv-space-xl);
}

.fv-reino-fungi__eyebrow {
    font-size: var(--fv-text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fv-kraft-dark);
}

.fv-reino-fungi__titulo {
    font-family: var(--fv-font-heading);
    font-size: var(--fv-text-4xl);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--fv-text);
}

.fv-reino-fungi__texto {
    font-size: var(--fv-text-lg);
    line-height: 1.7;
    color: var(--fv-text-muted);
    max-width: 44ch;
}

.fv-reino-fungi__formatos {
    display: grid;
    gap: var(--fv-space-md);
}

.fv-formato-card {
    display: grid;
    grid-template-columns: 2.5rem 1fr auto;
    align-items: center;
    gap: var(--fv-space-md);
    padding: var(--fv-space-lg) var(--fv-space-xl);
    border: 1.5px solid var(--fv-border-light);
    border-radius: var(--fv-radius-lg);
    background: var(--fv-surface);
    text-decoration: none;
    color: inherit;
    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        border-color 200ms ease,
        background 200ms ease;
}

.fv-formato-card:hover,
.fv-formato-card:focus-visible {
    transform: translateX(6px);
    box-shadow: var(--fv-shadow-md);
    border-color: var(--fv-kraft);
    background: var(--fv-surface-alt, #F9F9F9);
}

.fv-formato-card__numero {
    font-family: var(--fv-font-heading);
    font-size: var(--fv-text-xl);
    font-weight: 800;
    color: var(--fv-kraft);
    opacity: 0.6;
    line-height: 1;
}

.fv-formato-card__body {
    display: grid;
    gap: 0.2rem;
}

.fv-formato-card__nombre {
    font-family: var(--fv-font-body);
    font-size: var(--fv-text-lg);
    font-weight: 600;
    color: var(--fv-text);
    line-height: 1.2;
}

.fv-formato-card__desc {
    font-size: var(--fv-text-sm);
    color: var(--fv-text-muted);
    line-height: 1.4;
}

.fv-formato-card__arrow {
    color: var(--fv-kraft);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 200ms ease, transform 200ms ease;
}

.fv-formato-card:hover .fv-formato-card__arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ============================================================
   PROGRAMS CTA — Terapeuta / Embajador — Premium Redesign
   ============================================================ */
.fv-programs-cta {
    padding-block: clamp(5rem, 8vw, 7rem);
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

/* ─── Header ─── */
.fv-programs-cta__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.fv-programs-cta__eyebrow {
    display: inline-block;
    font-size: var(--fv-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--fv-primary);
    margin-bottom: var(--fv-space-md);
}

.fv-programs-cta__titulo {
    font-family: var(--fv-font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 var(--fv-space-md);
    line-height: 1.05;
    text-transform: uppercase;
}

.fv-programs-cta__subtitulo {
    font-size: var(--fv-text-lg);
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ─── Grid ─── */
.fv-programs-cta__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

/* ─── Card ─── */
.fv-program-card {
    position: relative;
    display: block;
    padding: clamp(2rem, 3.5vw, 3rem);
    border-radius: var(--fv-radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.fv-program-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--card-accent) 40%, transparent);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.4),
        0 0 60px color-mix(in srgb, var(--card-accent) 15%, transparent);
}

/* ─── Glow ─── */
.fv-program-card__glow {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--card-accent) 0%, transparent 70%);
    opacity: 0;
    filter: blur(60px);
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.fv-program-card:hover .fv-program-card__glow {
    opacity: 0.2;
}

/* ─── Content ─── */
.fv-program-card__content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--fv-space-lg);
}

.fv-program-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--card-accent) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--card-accent) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-accent);
    transition: background 0.3s ease, transform 0.3s ease;
}

.fv-program-card:hover .fv-program-card__icon {
    background: color-mix(in srgb, var(--card-accent) 25%, transparent);
    transform: scale(1.05);
}

.fv-program-card__tag {
    display: inline-block;
    font-size: var(--fv-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--card-accent);
    width: fit-content;
}

.fv-program-card__headline {
    font-family: var(--fv-font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.fv-program-card__desc {
    font-size: var(--fv-text-base);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.fv-program-card__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--fv-space-sm);
    font-size: var(--fv-text-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--card-accent);
    margin-top: var(--fv-space-sm);
    transition: gap 0.3s ease;
}

.fv-program-card:hover .fv-program-card__cta {
    gap: var(--fv-space-md);
}

/* ============================================================
   TESTIMONIALS — Social Proof
   ============================================================ */
.fv-testimonials {
    padding-block: clamp(4rem, 7vw, 6rem);
    background: var(--fv-surface);
}

.fv-testimonials__titulo {
    text-align: center;
    font-family: var(--fv-font-heading);
    font-size: var(--fv-text-3xl);
    font-weight: 700;
    color: var(--fv-text);
    margin-bottom: var(--fv-space-3xl);
}

.fv-testimonials__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--fv-space-md);
    gap: var(--fv-space-md);
    padding-bottom: var(--fv-space-md);
    margin-inline: calc(var(--fv-space-md) * -1);
    padding-inline: var(--fv-space-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.fv-testimonials__carousel::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .fv-testimonials__carousel {
        margin-inline: 0;
        padding-inline: 0;
        scroll-padding-left: 0;
    }
}

.fv-testimonial-slide {
    flex: 0 0 calc(100% - var(--fv-space-xl));
    scroll-snap-align: center;
    padding: var(--fv-space-2xl);
    background: var(--fv-surface-alt);
    border: 1px solid var(--fv-border-light);
    border-radius: var(--fv-radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--fv-space-lg);
}

@media (min-width: 768px) {
    .fv-testimonial-slide {
        flex: 0 0 350px;
    }
    
    .fv-testimonials__carousel {
        justify-content: center;
    }
}

.fv-testimonial-slide__stars {
    color: var(--fv-kraft);
    font-size: 1.2rem;
    display: flex;
    gap: 0.2rem;
}

.fv-testimonial-slide__quote {
    font-size: var(--fv-text-lg);
    line-height: 1.6;
    color: var(--fv-text);
    margin: 0;
    flex-grow: 1;
}

.fv-testimonial-slide__author {
    font-weight: 700;
    color: var(--fv-text);
    font-size: var(--fv-text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fv-testimonials__nav {
    display: flex;
    gap: var(--fv-space-md);
    justify-content: center;
    margin-top: var(--fv-space-2xl);
}

@media (min-width: 768px) {
     .fv-testimonials__nav {
         display: none;
     }
}

.fv-testimonials__prev,
.fv-testimonials__next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--fv-border-light);
    background: transparent;
    color: var(--fv-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--fv-transition-base);
}

.fv-testimonials__prev:hover,
.fv-testimonials__next:hover {
    background: var(--fv-surface-alt);
    color: var(--fv-kraft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .fv-trust-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fv-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .fv-hero {
        min-height: 100svh;
    }

    .fv-hero__inner {
        align-content: end;
        padding-top: calc(var(--fv-space-5xl) + var(--fv-space-xl));
    }

    .fv-trust-strip__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fv-trust-strip__item {
        justify-content: flex-start;
        padding: var(--fv-space-md) 0;
        border-bottom: 1px solid var(--fv-border-light);
    }

    .fv-trust-strip__item:last-child {
        border-bottom: none;
    }

    .fv-approach__inner,
    .fv-reino-fungi__inner {
        grid-template-columns: 1fr;
        gap: var(--fv-space-3xl);
    }

    .fv-reino-fungi__inner {
        direction: ltr;
    }

    .fv-reino-fungi__img-placeholder {
        aspect-ratio: 16 / 9;
        min-height: unset;
    }

    .fv-reino-fungi__badge {
        right: var(--fv-space-md);
    }

    .fv-programs-cta__grid {
        grid-template-columns: 1fr;
    }

    .fv-program-card {
        padding: var(--fv-space-2xl);
    }
    
    .fv-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FAQ  Preguntas Frecuentes
   ============================================================ */
.fv-faq {
    padding-block: clamp(3rem, 5vw, 5rem);
    background: var(--fv-surface);
}

.fv-faq__container {
    max-width: 800px;
}

.fv-faq__titulo {
    text-align: center;
    font-family: var(--fv-font-heading);
    font-size: var(--fv-text-3xl);
    font-weight: 800;
    margin-bottom: var(--fv-space-3xl);
    color: var(--fv-text);
}

.fv-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: var(--fv-space-md);
}

.fv-faq__item {
    border: 1px solid var(--fv-border-light);
    border-radius: var(--fv-radius-lg);
    background: var(--fv-bg);
    overflow: hidden;
    transition: box-shadow var(--fv-transition-base), border-color var(--fv-transition-base);
}

.fv-faq__item:hover {
    border-color: var(--fv-kraft);
}

.fv-faq__item--open {
    border-color: var(--fv-kraft);
    box-shadow: var(--fv-shadow-sm);
}

.fv-faq__question {
    width: 100%;
    text-align: left;
    padding: var(--fv-space-lg) var(--fv-space-xl);
    background: transparent;
    border: none;
    font-family: var(--fv-font-heading);
    font-size: var(--fv-text-lg);
    font-weight: 700;
    color: var(--fv-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--fv-space-md);
}

.fv-faq__icon {
    color: var(--fv-kraft);
    font-size: 1.2rem;
    transition: transform var(--fv-transition-base);
}

.fv-faq__item--open .fv-faq__icon {
    transform: rotate(180deg);
}

.fv-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fv-faq__item--open .fv-faq__answer {
    max-height: 500px; /* Suficiente para contenido corto */
}

.fv-faq__answer-inner {
    padding: 0 var(--fv-space-xl) var(--fv-space-xl) var(--fv-space-xl);
    color: var(--fv-text-muted);
    line-height: 1.6;
    font-size: var(--fv-text-base);
}



/* ============================================================
   CAPSULE SCROLLYTELLING — Seed-Inspired Opening Effect
   "Los probióticos comunes no sobreviven la digestión"
   ============================================================ */
.fv-capsule-section {
    background: var(--fv-surface);
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2rem);
}

/* --- Card principal: Neumorfismo oscuro --- */
.fv-capsule-section__sticky {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 800px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: visible; /* CRITICAL: allow capsule parts to move outside */

    border-radius: 36px;
    background: linear-gradient(155deg, #0d0d0d 0%, #000000 50%, #080808 100%);
    color: white;

    box-shadow:
        12px 12px 40px rgba(0,0,0,0.6),
        -8px -8px 30px rgba(40,40,40,0.15),
        inset 0 1px 0 rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

/* Clip solo el background, no los hijos animados */
.fv-capsule-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}

/* Glow ambiental sutil */
.fv-capsule-section__sticky::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232,77,68,0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

/* --- Container --- */
.fv-capsule-section__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    position: relative;
    padding: clamp(2rem, 5vw, 4rem) clamp(2.5rem, 5vw, 5rem);
    gap: clamp(2rem, 4vw, 4rem);
}

/* --- Panel de texto: Glassmorphism --- */
.fv-capsule-section__text {
    flex: 1;
    max-width: 420px;
    padding: clamp(1.2rem, 2.5vw, 2rem);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.2),
        0 8px 32px rgba(0,0,0,0.3);
}

/* Eyebrow pill */
.fv-capsule-section__eyebrow {
    display: inline-block;
    font-family: var(--fv-font-body);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fv-primary);
    margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
    padding: 0.35em 1em;
    background: rgba(232, 77, 68, 0.1);
    border: 1px solid rgba(232, 77, 68, 0.2);
    border-radius: 999px;
}

/* Título */
.fv-capsule-section__title {
    font-family: var(--fv-font-heading);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
    margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
    color: #ffffff;
}

.fv-capsule-section__title span {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--fv-font-body);
    font-weight: 400;
    font-size: 0.8em;
    display: block;
    margin-top: 0.3em;
    letter-spacing: 0;
}

/* Descripción */
.fv-capsule-section__desc {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
}

/* --- Visual: contenedor de la cápsula --- */
.fv-capsule-section__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 450px;
    height: 100%;
    min-height: 400px;
}

/* Halo detrás de la cápsula */
.fv-capsule-section__visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
}

/* === CAPSULE: Half-size for clean animation === */
.fv-capsule-wrap {
    position: relative;
    width: 70px;
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.4));
}

.fv-capsule-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform;
}

.fv-capsule-inner {
    z-index: 10;
    opacity: 0;  /* Hidden until GSAP reveals it when capsule opens */
}

.fv-capsule-bottom {
    z-index: 20;
}

.fv-capsule-top {
    z-index: 30;
}

/* === GLOW EFFECT — appears when capsule opens === */
.fv-capsule-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(232, 77, 68, 0.25) 0%,
        rgba(232, 77, 68, 0.1) 40%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(20px);
    z-index: 15;
    opacity: 0; /* GSAP controls this */
    will-change: opacity, transform;
    pointer-events: none;
}

/* === LABELS — appear as capsule opens === */
.fv-capsule-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 40;
}

.fv-capsule-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fv-capsule-label__line {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.fv-capsule-label__text {
    font-family: var(--fv-font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* Label positions */
.fv-capsule-label--top {
    top: 15%;
    right: -60px;
    flex-direction: row;
}

.fv-capsule-label--inner {
    bottom: 35%;
    right: -60px;
    flex-direction: row;
}

/* Labels become visible when capsule is open (JS toggles this) */
.fv-capsule-section.is-open .fv-capsule-label {
    opacity: 1;
}

/* ---  Responsive --- */
@media (max-width: 1024px) {
    .fv-capsule-section {
        padding: clamp(1.5rem, 3vw, 2rem) clamp(0.75rem, 2vw, 1rem);
    }

    .fv-capsule-section__sticky {
        border-radius: 24px;
        height: auto;
        min-height: auto;
        max-height: none;
        flex-direction: column;
        justify-content: center;
        padding: clamp(2rem, 4vw, 3rem) 0;
        overflow: hidden; /* clip on mobile since no scroll animation */
    }

    .fv-capsule-section__container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: clamp(1.5rem, 4vw, 2.5rem);
        gap: clamp(1.5rem, 3vw, 2rem);
    }

    .fv-capsule-section__text {
        max-width: 100%;
        margin-bottom: 0;
    }

    .fv-capsule-section__visual {
        min-height: 300px;
        max-width: 100%;
    }

    .fv-capsule-wrap {
        width: 55px;
        height: 130px;
    }

    .fv-capsule-labels {
        display: none;
    }

    .fv-capsule-section__sticky::after {
        width: 150px;
        height: 150px;
        right: 50%;
        transform: translate(50%, -50%);
    }
}

@media (max-width: 600px) {
    .fv-capsule-section__sticky {
        border-radius: 18px;
    }

    .fv-capsule-section__text {
        padding: clamp(1rem, 3vw, 1.5rem);
        border-radius: 14px;
    }

    .fv-capsule-section__title {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }

    .fv-capsule-section__visual {
        min-height: 240px;
    }

    .fv-capsule-wrap {
        width: 45px;
        height: 110px;
    }
}

