/*========================================================================
  [SECCIÓN] Programas (Embajadores y Terapeutas)
  Paleta: Manual de Identidad Fungiverse (sin kraft/beige)
  ========================================================================*/

/* ═══ HERO ═══ */
.fv-programa-hero {
    position: relative;
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    background: var(--fv-bg-dark);
    color: var(--fv-text-light);
    overflow: hidden;
}

.fv-programa-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(232,77,68,0.12) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.fv-programa-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.fv-programa-hero__eyebrow {
    display: inline-block;
    font-family: var(--fv-font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fv-primary);
    margin-bottom: 1rem;
}

.fv-programa-hero__title {
    font-family: var(--fv-font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.fv-programa-hero__text {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    line-height: 1.7;
    color: rgba(250,250,245,0.7);
    margin-bottom: 2rem;
    max-width: 600px;
}

.fv-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.fv-check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    color: rgba(250,250,245,0.85);
}

.fv-check-list i {
    color: var(--fv-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ═══ STEPS / CÓMO FUNCIONA ═══ */
.fv-programa-steps {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--fv-bg);
}

.fv-programa-steps__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.fv-programa-steps__eyebrow {
    display: inline-block;
    font-family: var(--fv-font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fv-primary);
    margin-bottom: 1rem;
}

.fv-programa-steps__title {
    font-family: var(--fv-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--fv-text);
    margin-bottom: 1rem;
}

.fv-programa-steps__subtitle {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    color: var(--fv-text-muted);
    line-height: 1.6;
}

.fv-programa-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fv-programa-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--fv-surface);
    border-radius: 20px;
    border: 1px solid var(--fv-border-light);
    transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fv-programa-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.fv-programa-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--fv-bg-dark);
    color: #fff;
    font-family: var(--fv-font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.fv-programa-step__title {
    font-family: var(--fv-font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--fv-text);
    margin-bottom: 0.75rem;
}

.fv-programa-step__text {
    font-size: 0.9375rem;
    color: var(--fv-text-muted);
    line-height: 1.6;
}

/* ═══ BENEFITS / BENEFICIOS ═══ */
.fv-programa-benefits {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--fv-bg-alt);
}

.fv-programa-benefits__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.fv-programa-benefits__eyebrow {
    display: inline-block;
    font-family: var(--fv-font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fv-primary);
    margin-bottom: 1rem;
}

.fv-programa-benefits__title {
    font-family: var(--fv-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--fv-text);
}

.fv-programa-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.fv-programa-benefit {
    padding: 2rem;
    background: var(--fv-surface);
    border-radius: 20px;
    border: 1px solid var(--fv-border-light);
    transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 200ms ease;
}

.fv-programa-benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--fv-primary);
}

.fv-programa-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--fv-bg-alt);
    color: var(--fv-primary);
    margin-bottom: 1.25rem;
}

.fv-programa-benefit__title {
    font-family: var(--fv-font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fv-text);
    margin-bottom: 0.5rem;
}

.fv-programa-benefit__text {
    font-size: 0.9375rem;
    color: var(--fv-text-muted);
    line-height: 1.6;
}

/* ═══ CTA INTERMEDIO ═══ */
.fv-programa-cta-mid {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--fv-bg-dark);
    text-align: center;
}

.fv-programa-cta-mid__title {
    font-family: var(--fv-font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
}

.fv-programa-cta-mid__text {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    color: rgba(250,250,245,0.7);
    margin-bottom: 2rem;
}

.fv-programa-cta-mid__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--fv-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 200ms ease, transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fv-programa-cta-mid__btn:hover {
    background: var(--fv-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232,77,68,0.2);
}

/* ═══ FORMULARIOS ═══ */
.fv-programa-form {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--fv-bg);
}

.fv-programa-form .fv-registration-form {
    background: var(--fv-surface);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--fv-border-light);
}

.fv-form__title {
    font-family: var(--fv-font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    color: var(--fv-text);
}

.fv-form__subtitle {
    color: var(--fv-text-muted);
    margin-bottom: 2rem;
    font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.fv-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.fv-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fv-form__field--full {
    grid-column: 1 / -1;
}

.fv-form__field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fv-text);
}

.fv-form__field input,
.fv-form__field textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--fv-border);
    border-radius: 12px;
    background: var(--fv-bg);
    font-family: inherit;
    font-size: 1rem;
    color: var(--fv-text);
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.fv-form__field input:focus,
.fv-form__field textarea:focus {
    outline: none;
    border-color: var(--fv-primary);
    box-shadow: 0 0 0 3px rgba(232,77,68,0.1);
}

.fv-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #000;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background 200ms ease, transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100%;
}

.fv-form__submit:hover {
    background: var(--fv-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232,77,68,0.15);
}

/* Mensajes de feedback */
.fv-form-success,
.fv-form-error {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.fv-form-success {
    background: rgba(102,174,76,0.1);
    border: 1px solid rgba(102,174,76,0.3);
    color: #3d7a2a;
}

.fv-form-error {
    background: rgba(232,77,68,0.1);
    border: 1px solid rgba(232,77,68,0.3);
    color: var(--fv-primary-dark);
}

.fv-panel-notice {
    padding: 2rem;
    text-align: center;
    font-size: 1rem;
    color: var(--fv-text-muted);
}

.fv-panel-notice a {
    color: var(--fv-primary);
    font-weight: 500;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    .fv-programa-steps__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .fv-programa-benefits__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fv-form__grid {
        grid-template-columns: 1fr;
    }

    .fv-programa-hero__inner {
        max-width: 100%;
    }
}
