/* ============================================================
   Formación Minera — Landing v3 (Moodle-ready)
   Diseño editorial minero: marrón mineral + cobre
   Solo transiciones transform/opacity. Sin dependencias.
   ============================================================ */

@supports selector(body:has(> .fm-landing)) {
    html:has(> body > .fm-landing),
    body:has(> .fm-landing) {
        margin: 0;
        background: #180301;
    }
}

.fm-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.fm-landing {
    --fm-ink: #180301;
    --fm-ink-2: #24120e;
    --fm-ink-3: #351b14;
    --fm-copper: #df6b27;
    --fm-copper-2: #c75a1c;
    --fm-copper-2b: #432513;
    --fm-copper-soft: #ffb278;
    --fm-cream: #faf6ef;
    --fm-sand: #f2e8da;
    --fm-green: #1f7a53;
    --fm-green-2: #176342;
    --fm-text: #f3e8df;
    --fm-muted: #c4a995;
    --fm-line: rgba(255, 255, 255, 0.12);
    --fm-topo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.045'%3E%3Cpath d='M60 260c0-110 90-200 200-200s200 90 200 200-90 200-200 200S60 370 60 260Z'/%3E%3Cpath d='M105 260c0-86 69-155 155-155s155 69 155 155-69 155-155 155-155-69-155-155Z'/%3E%3Cpath d='M150 260c0-61 49-110 110-110s110 49 110 110-49 110-110 110-110-49-110-110Z'/%3E%3Cpath d='M195 260c0-36 29-65 65-65s65 29 65 65-29 65-65 65-65-29-65-65Z'/%3E%3Cpath d='M240 260c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20Z'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--fm-text);
    background: var(--fm-ink);
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
}

.fm-landing *,
.fm-landing *::before,
.fm-landing *::after {
    box-sizing: border-box;
}

.fm-landing a {
    color: inherit;
    text-decoration: none;
}

.fm-landing img {
    display: block;
    max-width: 100%;
}

.fm-landing button,
.fm-landing input,
.fm-landing textarea {
    font: inherit;
}

.fm-landing button {
    cursor: pointer;
}

.fm-landing h2,
.fm-landing h3,
.fm-landing p {
    margin: 0;
}

.fm-landing :focus-visible {
    outline: 3px solid rgba(223, 107, 39, 0.6);
    outline-offset: 3px;
}

.fm-landing .fm-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.fm-landing section[id] {
    scroll-margin-top: 84px;
}

/* Iconos SVG de línea */
.fm-landing .fm-ico {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Reveal al hacer scroll (lo activa JS) ---------- */
.fm-landing.fm-js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.21, 1);
}

.fm-landing.fm-js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- Botones ---------- */
.fm-landing .fm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.fm-landing .fm-btn .fm-ico {
    width: 18px;
    height: 18px;
    transition: transform 0.18s ease;
}

.fm-landing .fm-btn:hover {
    transform: translateY(-2px);
}

.fm-landing .fm-btn:hover .fm-ico {
    transform: translateX(3px);
}

.fm-landing .fm-btn-sm {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 0.88rem;
}

.fm-landing .fm-btn-primary {
    background: var(--fm-copper);
    color: #fff;
    box-shadow: 0 14px 30px rgba(223, 107, 39, 0.3);
}

.fm-landing .fm-btn-primary:hover {
    background: var(--fm-copper-2);
    box-shadow: 0 18px 38px rgba(223, 107, 39, 0.36);
}

.fm-landing .fm-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
}

.fm-landing .fm-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- Link con flecha ---------- */
.fm-landing .fm-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fm-copper-2);
    font-weight: 800;
}

.fm-landing .fm-link .fm-ico {
    width: 17px;
    height: 17px;
    transition: transform 0.18s ease;
}

.fm-landing .fm-link:hover {
    color: var(--fm-ink);
}

.fm-landing .fm-link:hover .fm-ico {
    transform: translateX(4px);
}

/* ============================================================
   HEADER
   ============================================================ */
.fm-landing .fm-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(22, 11, 8, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-landing .fm-header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.fm-landing .fm-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.fm-landing .fm-brand img {
    height: 42px;
    width: auto;
}

.fm-landing .fm-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 700;
}

.fm-landing .fm-nav a {
    position: relative;
    padding: 10px 0;
}

.fm-landing .fm-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--fm-copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.fm-landing .fm-nav a:hover,
.fm-landing .fm-nav a:focus-visible {
    color: #fff;
}

.fm-landing .fm-nav a:hover::after,
.fm-landing .fm-nav a:focus-visible::after {
    transform: scaleX(1);
}

.fm-landing .fm-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fm-landing .fm-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.fm-landing .fm-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 99px;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.fm-landing.fm-menu-open .fm-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.fm-landing.fm-menu-open .fm-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.fm-landing.fm-menu-open .fm-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.fm-landing .fm-mobile-nav {
    display: none;
    padding: 0 0 20px;
}

.fm-landing .fm-mobile-nav a {
    display: block;
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.fm-landing .fm-mobile-nav a.fm-mobile-cta {
    color: var(--fm-copper-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.fm-landing .fm-hero {
    position: relative;
    min-height: clamp(580px, 84vh, 740px);
    background: var(--fm-ink);
    color: #fff;
}

.fm-landing .fm-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.fm-landing .fm-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.fm-landing .fm-slide-bg,
.fm-landing .fm-slide-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fm-landing .fm-slide-bg img {
    object-fit: cover;
}

.fm-landing .fm-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 84% 16%, rgba(223, 107, 39, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(22, 11, 8, 0.95) 0%, rgba(22, 11, 8, 0.82) 44%, rgba(22, 11, 8, 0.4) 76%, rgba(22, 11, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(22, 11, 8, 0.68), transparent 56%);
}

.fm-landing .fm-slide-content {
    position: relative;
    z-index: 2;
    min-height: clamp(580px, 84vh, 740px);
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(150px, 1fr);
    align-items: center;
    gap: 32px;
    padding: 92px 0 108px;
}

.fm-landing .fm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fm-landing .fm-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fm-copper);
    box-shadow: 0 0 0 5px rgba(223, 107, 39, 0.18);
}

.fm-landing .fm-slide-copy {
    min-width: 0;
}

.fm-landing .fm-hero .fm-hero-title {
    margin: 20px 0 18px;
    max-width: 780px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    font-weight: 900;
    overflow-wrap: break-word;
}

.fm-landing .fm-hero .fm-hero-title em {
    font-style: normal;
    color: var(--fm-copper-soft);
}

.fm-landing .fm-hero p {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.fm-landing .fm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.fm-landing .fm-hero-badge {
    align-self: end;
    justify-self: end;
    width: min(280px, 100%);
    padding-bottom: 8px;
}

.fm-landing .fm-hero-badge img {
    margin-left: auto;
    max-height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.45));
}

.fm-landing .fm-hero-ui {
    position: absolute;
    z-index: 4;
    inset: 0;
    pointer-events: none;
}

.fm-landing .fm-slide-count {
    position: absolute;
    left: max(20px, calc((100vw - 1180px) / 2));
    bottom: 30px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.fm-landing .fm-slide-count b {
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.fm-landing .fm-slider-controls {
    position: absolute;
    left: max(82px, calc((100vw - 1056px) / 2));
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.fm-landing .fm-dot {
    width: 26px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.35);
    transition: width 0.18s ease, background 0.18s ease;
}

.fm-landing .fm-dot.is-active {
    width: 44px;
    background: var(--fm-copper);
}

.fm-landing .fm-hero-arrows {
    position: absolute;
    top: 50%;
    left: 18px;
    right: 18px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
}

.fm-landing .fm-arrow {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 13px;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    pointer-events: auto;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.fm-landing .fm-arrow:hover {
    background: var(--fm-copper);
    border-color: var(--fm-copper);
}

/* ============================================================
   CIFRAS
   ============================================================ */
.fm-landing .fm-stats {
    background: radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(120deg, var(--fm-copper), var(--fm-copper-2));
    color: #fff;
}

.fm-landing .fm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fm-landing .fm-stat {
    padding: 30px 26px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.fm-landing .fm-stat:first-child {
    border-left: 0;
    padding-left: 0;
}

.fm-landing .fm-stat strong {
    display: block;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.fm-landing .fm-stat strong small {
    font-size: 0.55em;
    font-weight: 900;
}

.fm-landing .fm-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
}

/* ============================================================
   SECCIONES — base
   ============================================================ */
.fm-landing .fm-section {
    padding: 92px 0;
}

.fm-landing .fm-section-cream {
    background: var(--fm-cream);
}

.fm-landing .fm-section-sand {
    background: linear-gradient(180deg, #fff, var(--fm-sand));
}

.fm-landing .fm-section-dark {
    background: radial-gradient(circle at 14% 8%, rgba(223, 107, 39, 0.14), transparent 28%),
    linear-gradient(180deg, #24120e, #180301);
    color: #fff;
}

.fm-landing .fm-section-head {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 860px;
    margin-bottom: 46px;
}

.fm-landing .fm-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    justify-content: center;
}

.fm-landing .fm-sec-index {
    flex: 0 0 auto;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--fm-copper);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    padding-top: 6px;
}

.fm-landing .fm-sec-index::after {
    content: "";
    width: 2px;
    height: 52px;
    background: currentColor;
    opacity: 0.55;
}

.fm-landing .fm-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--fm-copper-2);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.fm-landing .fm-section-dark .fm-eyebrow,
.fm-landing .fm-hub .fm-eyebrow {
    color: var(--fm-copper-soft);
}

.fm-landing h2 {
    color: var(--fm-ink);
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.fm-landing .fm-section-dark h2,
.fm-landing .fm-hub h2 {
    color: #fff;
}

.fm-landing .fm-section-head p {
    margin: 14px 0 0;
    color: var(--fm-muted);
    font-size: 1.03rem;
    max-width: 700px;
}

.fm-landing .fm-section-dark .fm-section-head p,
.fm-landing .fm-hub .fm-section-head p {
    color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   01 FORMACIÓN
   ============================================================ */
.fm-landing .fm-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.fm-landing .fm-pillar-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--fm-line);
    box-shadow: 0 18px 44px rgba(22, 24, 28, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fm-landing .fm-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 107, 39, 0.4);
    box-shadow: 0 26px 60px rgba(22, 24, 28, 0.14);
}

.fm-landing .fm-card-media {
    position: relative;
    aspect-ratio: 16 / 8.6;
    background: var(--fm-ink-2);
    overflow: hidden;
}

.fm-landing .fm-card-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fm-landing .fm-pillar-card:hover .fm-card-media > img {
    transform: scale(1.045);
}

.fm-landing .fm-card-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--fm-copper);
    color: #fff;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.fm-landing .fm-card-icon-dark {
    background: rgba(255, 255, 255, 0.94);
    color: var(--fm-copper-2);
}

.fm-landing .fm-card-body {
    padding: 24px 26px 26px;
}

.fm-landing h3 {
    color: var(--fm-ink);
    font-size: 1.24rem;
    line-height: 1.18;
    letter-spacing: -0.015em;
    font-weight: 850;
}

.fm-landing .fm-card-body p {
    margin: 11px 0 18px;
    color: var(--fm-muted);
    font-size: 0.97rem;
}

/* ============================================================
   02 ÁREAS / EMPLEABILIDAD
   ============================================================ */
.fm-landing .fm-employment-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 54px;
}

.fm-landing .fm-crew {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 30px;
}

.fm-landing .fm-crew-item {
    position: relative;
    margin: 0;
    aspect-ratio: 0.86;
    border-radius: 18px;
    background: #f7f0e6;
    border: 1px solid rgba(22, 24, 28, 0.1);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(22, 24, 28, 0.08);
}

.fm-landing .fm-crew-item img {
    position: absolute;
    inset: 0 0 34px;
    width: 100%;
    height: calc(100% - 34px);
    object-fit: contain;
    object-position: center bottom;
    padding: 10px 10px 0;
}

.fm-landing .fm-crew-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fm-ink);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fm-landing .fm-crew-chip {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--fm-copper);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 16px 34px rgba(223, 107, 39, 0.36);
}

.fm-landing .fm-crew-chip b {
    font-size: 1.15rem;
    font-weight: 900;
}

.fm-landing .fm-roles {
    display: grid;
    gap: 14px;
}

.fm-landing .fm-role {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(22, 24, 28, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fm-landing .fm-role:hover,
.fm-landing .fm-role:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(223, 107, 39, 0.45);
    background: #fff;
    box-shadow: 0 18px 40px rgba(22, 24, 28, 0.1);
}

.fm-landing .fm-role-num {
    color: rgba(22, 24, 28, 0.3);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.fm-landing .fm-role-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(223, 107, 39, 0.12);
    color: var(--fm-copper-2);
    transition: background 0.18s ease, color 0.18s ease;
}

.fm-landing .fm-role:hover .fm-role-icon,
.fm-landing .fm-role:focus-visible .fm-role-icon {
    background: var(--fm-copper);
    color: #fff;
}

.fm-landing .fm-role h3 {
    font-size: 1.06rem;
}

.fm-landing .fm-role-body p {
    margin: 6px 0 0;
    color: var(--fm-muted);
    font-size: 0.92rem;
}

.fm-landing .fm-role-arrow {
    color: var(--fm-copper-2);
    transition: transform 0.18s ease;
}

.fm-landing .fm-role:hover .fm-role-arrow,
.fm-landing .fm-role:focus-visible .fm-role-arrow {
    transform: translateX(5px);
}

/* ============================================================
   03 DIVERSIDAD
   ============================================================ */
.fm-landing .fm-diversity-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 54px;
}

.fm-landing .fm-diversity-copy {
    max-width: 640px;
}

.fm-landing .fm-diversity-copy h2 {
    color: #fff;
}

.fm-landing .fm-diversity-copy > p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
}

.fm-landing .fm-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin: 28px 0 30px;
}

.fm-landing .fm-metric {
    padding: 17px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.fm-landing .fm-metric strong {
    display: block;
    color: var(--fm-copper-soft);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.fm-landing .fm-metric span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.79rem;
    font-weight: 600;
    line-height: 1.35;
}

.fm-landing .fm-person-card {
    position: relative;
    min-height: 590px;
    margin: 0;
    border-radius: 26px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 14%, rgba(223, 107, 39, 0.28), transparent 38%),
    var(--fm-topo),
    linear-gradient(165deg, var(--fm-ink-3), var(--fm-ink) 60%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.fm-landing .fm-person-card img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(100%, 480px);
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
}

.fm-landing .fm-person-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16, 18, 21, 0.9), rgba(16, 18, 21, 0.08) 52%);
}

.fm-landing .fm-person-caption {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 80px;
    display: grid;
    align-content: center;
    padding: 6px 30px 10px;
    border-radius: 20px 20px 0 0;
    background: rgba(16, 2, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
    color: #fff;
}

.fm-landing .fm-person-caption strong {
    display: block;
    font-size: 1.18rem;
    font-weight: 850;
}

.fm-landing .fm-person-caption span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

/* ============================================================
   04 HUB DE APRENDIZAJE — índice editorial
   ============================================================ */
.fm-landing .fm-hub {
    background: radial-gradient(circle at 88% 12%, rgba(223, 107, 39, 0.12), transparent 32%),
    var(--fm-topo),
    linear-gradient(180deg, #28140f, #180301);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fm-landing .fm-hub-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
    gap: 28px;
    align-items: start;
}

.fm-landing .fm-hub-list {
    display: grid;
    align-content: start;
    gap: 9px;
}

.fm-landing .fm-hub-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 68px;
    padding: 15px 20px;
    border: 0;
    border-radius: 15px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.fm-landing .fm-hub-item:hover {
    background: rgba(223, 107, 39, 0.16);
}

.fm-landing .fm-hub-item.is-active {
    background: var(--fm-copper);
    color: #fff;
    box-shadow: 0 16px 34px rgba(223, 107, 39, 0.24);
}

.fm-landing .fm-hub-idx {
    display: none;
}

.fm-landing .fm-hub-name {
    font-weight: 750;
    font-size: 0.96rem;
    line-height: 1.3;
}

.fm-landing .fm-hub-arrow {
    color: var(--fm-copper-soft);
    transition: color 0.18s ease, transform 0.18s ease;
}

.fm-landing .fm-hub-item:hover .fm-hub-arrow,
.fm-landing .fm-hub-item.is-active .fm-hub-arrow {
    color: #fff;
    transform: translateX(3px);
}

.fm-landing .fm-hub-card {
    position: sticky;
    top: 100px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(190px, 31%, 250px);
    grid-template-areas:
    "label media"
    "title media"
    "text media"
    "meta media"
    "action media";
    column-gap: 30px;
    align-items: start;
    padding: 30px;
    border-radius: 22px;
    background: radial-gradient(circle at 88% 10%, rgba(223, 107, 39, 0.18), transparent 36%),
    linear-gradient(150deg, var(--fm-ink-3), var(--fm-ink-2) 70%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    transition: opacity 0.16s ease;
}

.fm-landing .fm-hub-card.is-changing {
    opacity: 0.35;
}

.fm-landing .fm-hub-card-top {
    display: none;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.fm-landing .fm-hub-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--fm-copper);
    color: #fff;
    box-shadow: 0 16px 32px rgba(223, 107, 39, 0.32);
}

.fm-landing .fm-hub-icon .fm-ico {
    width: 30px;
    height: 30px;
}

.fm-landing .fm-hub-num {
    color: rgba(255, 255, 255, 0.14);
    font-size: 3.4rem;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.fm-landing .fm-hub-label {
    grid-area: label;
    display: inline-flex;
    width: fit-content;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 178, 120, 0.14);
    border: 1px solid rgba(255, 178, 120, 0.3);
    color: var(--fm-copper-soft);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fm-landing .fm-hub-card h3 {
    grid-area: title;
    margin-top: 16px;
    color: #fff;
    font-size: clamp(1.65rem, 2.7vw, 2.45rem);
    line-height: 1.1;
}

.fm-landing .fm-hub-card > p {
    grid-area: text;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.99rem;
}

.fm-landing .fm-hub-meta {
    grid-area: meta;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fm-landing .fm-hub-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 700;
}

.fm-landing .fm-hub-meta span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fm-copper);
}

.fm-landing .fm-hub-card .fm-btn {
    grid-area: action;
    justify-self: start;
    margin-top: 26px;
}

/* ============================================================
   05 TECNOLOGÍAS
   ============================================================ */
.fm-landing .fm-tech-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.7fr);
    gap: 46px;
    align-items: start;
}

.fm-landing .fm-tech-intro {
    position: sticky;
    top: 104px;
}

.fm-landing .fm-tech-intro .fm-sec-index {
    margin-bottom: 14px;
}

.fm-landing .fm-tech-intro p {
    margin-top: 14px;
    color: var(--fm-muted);
    font-size: 1rem;
}

.fm-landing .fm-tech-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.fm-landing .fm-tech-card {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    background: radial-gradient(circle at 86% 8%, rgba(223, 107, 39, 0.16), transparent 40%),
    linear-gradient(160deg, var(--fm-ink-2), var(--fm-ink));
    border: 1px solid rgba(22, 24, 28, 0.85);
    box-shadow: 0 22px 54px rgba(22, 24, 28, 0.22);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.fm-landing .fm-tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(223, 107, 39, 0.55);
    box-shadow: 0 30px 64px rgba(22, 24, 28, 0.3);
}

.fm-landing .fm-tech-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    background: rgba(223, 107, 39, 0.16);
    color: var(--fm-copper-soft);
}

.fm-landing .fm-tech-icon .fm-ico {
    width: 28px;
    height: 28px;
}

.fm-landing .fm-tech-card h3 {
    color: #fff;
    font-size: 1.34rem;
    line-height: 1.22;
}

.fm-landing .fm-tech-card p {
    margin: 15px 0 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

.fm-landing .fm-tech-card .fm-link {
    margin-top: auto;
    color: var(--fm-copper-soft);
}

.fm-landing .fm-tech-card .fm-link:hover {
    color: #fff;
}

/* ============================================================
   06 SEGURIDAD
   ============================================================ */
.fm-landing .fm-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.fm-landing .fm-safety-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(22, 24, 28, 0.09);
    box-shadow: 0 18px 44px rgba(22, 24, 28, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fm-landing .fm-safety-card img {
    width: 100%;
    aspect-ratio: 1 / 0.92;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.3s ease;
}

.fm-landing .fm-safety-card:hover,
.fm-landing .fm-safety-card:focus-visible {
    transform: translateY(-7px);
    border-color: rgba(223, 107, 39, 0.45);
    box-shadow: 0 28px 58px rgba(22, 24, 28, 0.18);
}

.fm-landing .fm-safety-card:hover img,
.fm-landing .fm-safety-card:focus-visible img {
    transform: scale(1.045);
}

.fm-landing .fm-safety-bubble {
    position: relative;
    padding: 18px 20px 20px;
    border-top: 3px solid var(--fm-copper);
}

.fm-landing .fm-safety-tag {
    display: block;
    margin-bottom: 6px;
    color: var(--fm-copper-2);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fm-landing .fm-safety-bubble h3 {
    font-size: 1.16rem;
    line-height: 1.16;
}

.fm-landing .fm-safety-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--fm-copper-2);
    font-size: 0.86rem;
    font-weight: 800;
}

.fm-landing .fm-safety-more .fm-ico {
    width: 15px;
    height: 15px;
    transition: transform 0.18s ease;
}

.fm-landing .fm-safety-card:hover .fm-safety-more .fm-ico {
    transform: translateX(4px);
}

/* ============================================================
   07 SOSTENIBILIDAD
   ============================================================ */
.fm-landing .fm-sustainability {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 28px;
    align-items: stretch;
}

.fm-landing .fm-green-visual {
    position: sticky;
    top: 104px;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(31, 122, 83, 0.3);
    box-shadow: 0 24px 60px rgba(31, 122, 83, 0.18);
    order: 2;
}

.fm-landing .fm-green-visual img {
    width: 100%;
    height: 100%;
    min-height: 530px;
    object-fit: cover;
    object-position: center 30%;
}

.fm-landing .fm-green-visual figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(17, 62, 43, 0.88);
    color: #dff4e8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.fm-landing .fm-topic-grid {
    display: grid;
    align-content: start;
    gap: 9px;
    order: 1;
}

.fm-landing .fm-topic {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(31, 122, 83, 0.2);
    box-shadow: 0 12px 30px rgba(31, 122, 83, 0.07);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.fm-landing .fm-topic:hover,
.fm-landing .fm-topic:focus-visible {
    transform: translateX(4px);
    border-color: rgba(31, 122, 83, 0.45);
    box-shadow: 0 18px 40px rgba(31, 122, 83, 0.14);
}

.fm-landing .fm-topic-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(31, 122, 83, 0.11);
    color: var(--fm-green);
    transition: background 0.18s ease, color 0.18s ease;
}

.fm-landing .fm-topic:hover .fm-topic-icon,
.fm-landing .fm-topic:focus-visible .fm-topic-icon {
    background: var(--fm-green);
    color: #fff;
}

.fm-landing .fm-topic strong {
    display: block;
    color: var(--fm-ink);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.25;
}

.fm-landing .fm-topic > span > span:first-of-type {
    display: block;
    margin-top: 5px;
    color: var(--fm-muted);
    font-size: 0.89rem;
}

.fm-landing .fm-topic-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
    color: var(--fm-green);
    font-size: 0.84rem;
    font-weight: 800;
}

.fm-landing .fm-topic-more .fm-ico {
    width: 15px;
    height: 15px;
    transition: transform 0.18s ease;
}

.fm-landing .fm-topic:hover .fm-topic-more .fm-ico {
    transform: translateX(4px);
}

/* ============================================================
   08 FAQ
   ============================================================ */
.fm-landing .fm-faq {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.fm-landing .fm-faq-item {
    border: 1px solid rgba(22, 24, 28, 0.1);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(22, 24, 28, 0.06);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.fm-landing .fm-faq-item.is-open {
    border-color: rgba(223, 107, 39, 0.45);
    box-shadow: 0 16px 38px rgba(22, 24, 28, 0.1);
}

.fm-landing .fm-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    border: 0;
    background: transparent;
    color: var(--fm-ink);
    text-align: left;
    font-weight: 800;
    font-size: 0.99rem;
    transition: color 0.18s ease;
}

.fm-landing .fm-faq-question:hover {
    color: var(--fm-copper-2);
}

.fm-landing .fm-faq-question svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--fm-copper-2);
    transition: transform 0.18s ease;
}

.fm-landing .fm-faq-item.is-open .fm-faq-question svg {
    transform: rotate(180deg);
}

.fm-landing .fm-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.22s ease;
}

.fm-landing .fm-faq-item.is-open .fm-faq-answer {
    grid-template-rows: 1fr;
}

.fm-landing .fm-faq-answer > div {
    min-height: 0;
    overflow: hidden;
}

.fm-landing .fm-faq-answer p {
    padding: 0 22px 21px;
    color: #5f564e;
    font-size: 0.94rem;
    border-top: 1px dashed rgba(22, 24, 28, 0.12);
    padding-top: 16px;
    margin: 0 0 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.fm-landing .fm-footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr;
    gap: 30px;
    padding: 52px max(20px, calc((100% - 1180px) / 2)) 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: radial-gradient(circle at 86% 8%, rgba(223, 107, 39, 0.13), transparent 32%),
    linear-gradient(135deg, #131519, #1b150f 60%, #101215);
    color: rgba(255, 246, 238, 0.75);
}

.fm-landing .fm-footer h3,
.fm-landing .fm-footer strong {
    color: #fff;
}

.fm-landing .fm-footer h3 {
    font-size: 1.22rem;
}

.fm-landing .fm-footer p,
.fm-landing .fm-footer li {
    font-size: 0.9rem;
}

.fm-landing .fm-footer p {
    margin-top: 12px;
    color: rgba(255, 246, 238, 0.72);
}

.fm-landing .fm-footer a {
    color: rgba(255, 246, 238, 0.75);
    transition: color 0.18s ease;
}

.fm-landing .fm-footer a:hover {
    color: var(--fm-copper-soft);
}

.fm-landing .fm-footer ul {
    list-style: none;
    padding: 0;
    margin: 13px 0 0;
    display: grid;
    gap: 9px;
}

.fm-landing .fm-by-dl {
    align-self: center;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fm-landing .fm-by-dl img {
    width: 62%;
    max-width: 230px;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   MODO OSCURO GENERAL
   ============================================================ */
.fm-landing {
    color: rgba(255, 255, 255, 0.88);
    background: var(--fm-ink);
}

.fm-landing .fm-section-cream {
    background: radial-gradient(circle at 88% 8%, rgba(223, 107, 39, 0.13), transparent 32%),
    linear-gradient(145deg, #2b1712 0%, #20100c 56%, #180301 100%);
}

.fm-landing .fm-section-sand {
    background: radial-gradient(circle at 12% 4%, rgba(255, 178, 120, 0.1), transparent 30%),
    linear-gradient(135deg, #321a14 0%, #25120e 48%, #190c09 100%);
}

.fm-landing h2,
.fm-landing h3,
.fm-landing .fm-section-head h2,
.fm-landing .fm-tech-intro h2 {
    color: #fff;
}

.fm-landing .fm-section-head p,
.fm-landing .fm-tech-intro p {
    color: rgba(255, 255, 255, 0.68);
}

.fm-landing .fm-section-head p strong {
    color: #fff;
}

.fm-landing .fm-link:hover {
    color: #fff;
}

.fm-landing .fm-card-body,
.fm-landing .fm-role,
.fm-landing .fm-metric,
.fm-landing .fm-hub-card,
.fm-landing .fm-tech-card,
.fm-landing .fm-topic,
.fm-landing .fm-faq-item {
    background: #ffeddf;
    color: #2b1712;
}

.fm-landing .fm-person-card {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.fm-landing .fm-person-card::after {
    display: none;
}

/* Formación */
.fm-landing .fm-pillar-card {
    background: var(--fm-ink-2);
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.fm-landing .fm-pillar-card:hover {
    border-color: rgba(223, 107, 39, 0.58);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
}

.fm-landing .fm-card-body p {
    color: #6b5043;
}

.fm-landing .fm-card-body h3 {
    color: #2b1712;
}

.fm-landing .fm-card-body .fm-link,
.fm-landing .fm-card-body .fm-link:hover {
    color: #9e3f12;
}

.fm-landing .fm-card-media-study::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, rgba(42, 25, 15, 0.14) 38%, rgba(223, 107, 39, 0.45) 100%),
    linear-gradient(0deg, rgba(42, 25, 15, 0.24), transparent 55%);
    pointer-events: none;
}

.fm-landing .fm-card-media-study > img {
    filter: saturate(0.88) contrast(1.05);
}

.fm-landing .fm-card-media-study .fm-card-icon {
    z-index: 2;
}

/* Áreas y empleabilidad */
.fm-landing .fm-crew-item {
    background: #321a14;
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.fm-landing .fm-role {
    color: #2b1712;
    border-color: rgba(85, 45, 31, 0.18);
}

.fm-landing .fm-role:hover,
.fm-landing .fm-role:focus-visible {
    background: #fff7f1;
    border-color: rgba(223, 107, 39, 0.55);
    box-shadow: 0 20px 44px rgba(22, 11, 8, 0.2);
}

.fm-landing .fm-role-num {
    color: rgba(43, 23, 18, 0.42);
}

.fm-landing .fm-role h3 {
    color: #2b1712;
}

.fm-landing .fm-role-body p {
    color: #6b5043;
}

/* Tarjetas claras: contraste de texto e indicadores */
.fm-landing .fm-metric {
    border-color: rgba(85, 45, 31, 0.18);
}

.fm-landing .fm-metric strong {
    color: #9e3f12;
}

.fm-landing .fm-metric span {
    color: #6b5043;
}

.fm-landing .fm-hub-card {
    border-color: rgba(85, 45, 31, 0.2);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.fm-landing .fm-hub-card h3 {
    color: #2b1712;
}

.fm-landing .fm-hub-label {
    color: #8d350e;
    background: rgba(167, 68, 22, 0.1);
    border-color: rgba(167, 68, 22, 0.3);
}

.fm-landing .fm-hub-card > p,
.fm-landing .fm-hub-meta span {
    color: #6b5043;
}

.fm-landing .fm-hub-meta {
    border-top-color: rgba(85, 45, 31, 0.16);
}

.fm-landing .fm-tech-card {
    border-color: rgba(85, 45, 31, 0.2);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.fm-landing .fm-tech-card h3 {
    color: #2b1712;
}

.fm-landing .fm-tech-card p {
    color: #6b5043;
}

.fm-landing .fm-tech-card .fm-link,
.fm-landing .fm-tech-card .fm-link:hover {
    color: #9e3f12;
}

.fm-landing .fm-tech-icon {
    color: #9e3f12;
}

/* Hub con fotografía real */
.fm-landing .fm-hub-media {
    position: relative;
    grid-area: media;
    margin: 0;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--fm-ink);
}

.fm-landing .fm-hub-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(42, 25, 15, 0.38), transparent 60%);
    pointer-events: none;
}

.fm-landing .fm-hub-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.18s ease, transform 0.32s ease;
}

.fm-landing .fm-hub-card:hover .fm-hub-media img {
    transform: scale(1.025);
}

/* Seguridad */
.fm-landing .fm-safety-card {
    background: var(--fm-ink-2);
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.fm-landing .fm-safety-bubble {
    background: var(--fm-ink-2);
}

/* Sostenibilidad */
.fm-landing .fm-topic {
    border-color: rgba(31, 122, 83, 0.42);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.fm-landing .fm-topic strong {
    color: #2b1712;
}

.fm-landing .fm-topic > span > span:first-of-type {
    color: #6b5043;
}

.fm-landing .fm-topic-more {
    color: #176342;
}

.fm-landing .fm-green-visual {
    border-color: rgba(70, 184, 126, 0.42);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

/* Preguntas frecuentes */
.fm-landing .fm-faq-item {
    border-color: rgba(85, 45, 31, 0.18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.fm-landing .fm-faq-question {
    color: #2b1712;
}

.fm-landing .fm-faq-question:hover,
.fm-landing .fm-faq-question svg {
    color: #9e3f12;
}

.fm-landing .fm-faq-answer p {
    color: #6b5043;
    border-top-color: rgba(85, 45, 31, 0.16);
}

/* Footer naranja, igual a la franja de cifras */
.fm-landing .fm-footer {
    background: radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.17), transparent 34%),
    linear-gradient(120deg, var(--fm-copper-2b), var(--fm-copper-2));
    border-top-color: rgba(255, 255, 255, 0.26);
    color: #fff;
}

.fm-landing .fm-footer p,
.fm-landing .fm-footer a {
    color: rgba(255, 255, 255, 0.88);
}

.fm-landing .fm-footer a:hover {
    color: var(--fm-ink);
}

.fm-landing .fm-by-dl img {
    filter: drop-shadow(0 10px 18px rgba(75, 28, 7, 0.24));
}

.fm-landing .fm-credits {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.84);
}

.fm-landing .fm-credits summary {
    width: fit-content;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
}

.fm-landing .fm-credits p {
    max-width: 1080px;
    margin-top: 12px;
    font-size: 0.75rem;
    line-height: 1.65;
}

.fm-landing .fm-credits a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 721px) and (max-height: 820px) {
    .fm-landing .fm-slide-content {
        padding-top: 52px;
        padding-bottom: 118px;
    }

    .fm-landing .fm-hero .fm-hero-title {
        margin-top: 16px;
        margin-bottom: 14px;
        font-size: clamp(2.6rem, 4vw, 3.9rem);
    }

    .fm-landing .fm-hero p {
        font-size: clamp(0.98rem, 1.35vw, 1.12rem);
    }

    .fm-landing .fm-hero-actions {
        margin-top: 24px;
    }
}

@media (max-width: 1040px) {
    .fm-landing .fm-nav {
        display: none;
    }

    .fm-landing .fm-menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .fm-landing.fm-menu-open .fm-mobile-nav {
        display: block;
    }

    .fm-landing .fm-slide-content {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
    }

    .fm-landing .fm-hero-badge {
        justify-self: start;
        align-self: start;
        width: min(210px, 100%);
        padding-bottom: 0;
    }

    .fm-landing .fm-hero-badge img {
        margin-left: 0;
        max-height: 130px;
    }

    .fm-landing .fm-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fm-landing .fm-stat {
        padding: 22px 20px;
    }

    .fm-landing .fm-stat:nth-child(odd) {
        border-left: 0;
        padding-left: 0;
    }

    .fm-landing .fm-employment-grid,
    .fm-landing .fm-diversity-grid,
    .fm-landing .fm-hub-grid,
    .fm-landing .fm-tech-grid,
    .fm-landing .fm-sustainability {
        grid-template-columns: 1fr;
    }

    .fm-landing .fm-tech-intro,
    .fm-landing .fm-hub-card,
    .fm-landing .fm-green-visual {
        position: static;
    }

    .fm-landing .fm-green-visual {
        max-width: 560px;
    }

    .fm-landing .fm-crew {
        max-width: 560px;
    }

    .fm-landing .fm-person-card {
        min-height: 540px;
        max-width: 560px;
    }

    .fm-landing .fm-safety-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fm-landing .fm-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .fm-landing .fm-container {
        width: min(100% - 28px, 1180px);
    }

    .fm-landing .fm-actions > .fm-btn {
        display: none;
    }

    .fm-landing .fm-hero,
    .fm-landing .fm-slide-content {
        min-height: 660px;
    }

    .fm-landing .fm-slide-content {
        padding-top: 74px;
        padding-bottom: 120px;
    }

    .fm-landing .fm-hero .fm-hero-title {
        font-size: clamp(2rem, 9.4vw, 3rem);
    }

    .fm-landing .fm-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fm-landing .fm-hero-ui {
        inset: 0;
    }

    .fm-landing .fm-hero-arrows {
        display: none;
    }

    .fm-landing .fm-section {
        padding: 64px 0;
    }

    .fm-landing .fm-section-head {
        gap: 16px;
        margin-bottom: 34px;
    }

    .fm-landing .fm-sec-index::after {
        height: 38px;
    }

    .fm-landing .fm-stats-grid,
    .fm-landing .fm-pillars,
    .fm-landing .fm-metrics,
    .fm-landing .fm-tech-cards,
    .fm-landing .fm-safety-grid,
    .fm-landing .fm-footer {
        grid-template-columns: 1fr;
    }

    .fm-landing .fm-stat,
    .fm-landing .fm-stat:nth-child(odd) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        padding: 18px 0;
    }

    .fm-landing .fm-stat:first-child {
        border-top: 0;
    }

    .fm-landing .fm-tech-card {
        min-height: auto;
        padding: 24px;
    }

    .fm-landing .fm-hub-card {
        grid-template-columns: 1fr;
        grid-template-areas:
      "label"
      "title"
      "media"
      "text"
      "meta"
      "action";
        padding: 24px;
    }

    .fm-landing .fm-hub-media {
        margin-top: 20px;
        aspect-ratio: 16 / 9;
    }

    .fm-landing .fm-hub-item {
        padding: 15px 14px;
        gap: 13px;
    }

    .fm-landing .fm-role {
        grid-template-columns: auto 1fr auto;
    }

    .fm-landing .fm-role-num {
        display: none;
    }

    .fm-landing .fm-person-card {
        min-height: 500px;
    }

    .fm-landing .fm-person-caption {
        min-height: 142px;
        padding: 22px 22px 26px;
    }

    .fm-landing .fm-green-visual img {
        min-height: 390px;
    }

    .fm-landing .fm-crew-item {
        border-radius: 14px;
    }
}

/* ============================================================
   MOVIMIENTO REDUCIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .fm-landing *,
    .fm-landing *::before,
    .fm-landing *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
    }
}
