/* Variables principales */
:root {
    --black: #050505;
    --black-2: #0a0a0c;
    --black-3: #141414;
    --gold: #ffc400;
    --gold-soft: #ffdf66;
    --gold-dark: #bd8500;
    --white: #ffffff;
    --text: #f5f5f5;
    --muted: rgba(255, 255, 255, .72);
    --line: rgba(255, 255, 255, .14);
    --glass: rgba(255, 255, 255, .075);
    --sidebar: clamp(88px, 8vw, 126px);
    --ease: cubic-bezier(.2, .8, .2, 1);
}

/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

/* Base general */
body {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--black);
}

a,
button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* Contenedor principal */
.landing {
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: var(--sidebar) minmax(0, 1fr);
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(255, 196, 0, .14), transparent 26%),
        radial-gradient(circle at 92% 20%, rgba(255, 196, 0, .12), transparent 28%),
        linear-gradient(135deg, #0e0e0e 0%, #050505 54%, #000 100%);
    position: relative;
    isolation: isolate;
}

/* Barra lateral */
.sidebar {
    position: relative;
    z-index: 30;
    padding: clamp(18px, 3vw, 34px) 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #070707;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .45), transparent 14%),
        linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 46%, #f1a800 100%);
    box-shadow: 16px 0 55px rgba(255, 196, 0, .09);
}

/* Marca */
.brand {
    text-decoration: none;
    color: inherit;
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.brand-mark {
    width: clamp(58px, 5.8vw, 76px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .38);
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: 0 18px 30px rgba(81, 57, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .6);
    transition: transform .35s var(--ease);
}

.brand-mark img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 7px 5px rgba(0, 0, 0, .12));
}

.brand strong {
    display: block;
    font-size: clamp(.72rem, 1vw, .92rem);
    letter-spacing: .08em;
    font-weight: 950;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 6px;
    font-size: clamp(.45rem, .65vw, .62rem);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 900;
    opacity: .64;
}

/* Redes sociales */
.socials {
    display: grid;
    gap: 13px;
}

.socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #070707;
    text-decoration: none;
    margin: 10px 0;
    font-size: .78rem;
    font-weight: 950;
    background: rgba(0, 0, 0, .08);
    border: 1px solid rgba(0, 0, 0, .15);
    transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}

.socials a:hover {
    transform: translateY(-4px);
    background: #070707;
    color: var(--gold);
}

/* Hero principal */
.fusgo {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 84% 26%, rgba(255, 196, 0, .22), transparent 12%),
        radial-gradient(circle at 75% 62%, rgba(255, 196, 0, .12), transparent 12%),
        linear-gradient(120deg, rgba(255, 196, 0, .08), transparent 28%),
        var(--black-2);
}

.fusgo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -5;
    background-image: radial-gradient(rgba(255, 196, 0, .42) 1.05px, transparent 1.05px);
    background-size: 18px 18px;
    opacity: .34;
    mask-image: linear-gradient(90deg, #000 0 55%, transparent 100%);
}

.fusgo::after {
    content: "";
    position: absolute;
    width: min(36vw, 520px);
    height: 140vh;
    right: clamp(230px, 23vw, 440px);
    top: -22vh;
    z-index: -4;
    transform: rotate(31deg);
    background:
        linear-gradient(180deg, rgba(255, 196, 0, .02), rgba(255, 196, 0, .50) 35%, rgba(255, 196, 0, .18) 100%);
    border-left: 1px solid rgba(255, 223, 102, .20);
    border-right: 1px solid rgba(255, 223, 102, .13);
    filter: drop-shadow(0 0 70px rgba(255, 196, 0, .12));
}

/* Barra superior */
.topbar {
    width: 100%;
    height: clamp(82px, 10vh, 112px);
    padding: clamp(18px, 3.2vw, 42px) clamp(24px, 4vw, 68px) 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 40;
}

/* Navegación */
.nav-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 20px 50px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
    min-height: 40px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    border-radius: 999px;
    font-size: clamp(.72rem, .84vw, .86rem);
    font-weight: 850;
    transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.nav a:hover,
.nav a.active {
    color: #080808;
    background: var(--gold);
    transform: translateY(-1px);
}

/* Buscador */
.search {
    width: clamp(190px, 19vw, 310px);
    height: 46px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .075);
    backdrop-filter: blur(15px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.search-submit {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 0;
    outline: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    opacity: .86;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.search-submit:hover {
    opacity: 1;
    transform: scale(1.06);
}

.search svg {
    width: 17px;
    height: 17px;
    opacity: .78;
    flex: 0 0 auto;
}

.search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    font-size: .86rem;
    font-weight: 650;
}

.search input::placeholder {
    color: rgba(255, 255, 255, .56);
}

/* Texto principal */
.copy {
    width: min(660px, 54vw);
    position: relative;
    z-index: 12;
    padding-left: clamp(38px, 6.6vw, 112px);
    padding-top: clamp(54px, 7vw, 112px);
}

.ribbon {
    width: max-content;
    max-width: 100%;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 11px 22px;
    color: var(--white);
    background: linear-gradient(90deg, #eaa400, var(--gold-soft));
    transform: rotate(-4deg) skew(-8deg);
    border-radius: 5px;
    box-shadow: 16px 17px 0 rgba(255, 196, 0, .12);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1;
    font-size: clamp(1.1rem, 2.4vw, 1.9rem);
    font-weight: 950;
}

h1 {
    color: var(--white);
    max-width: 760px;
    font-size: clamp(4.4rem, 8.5vw, 9.6rem);
    line-height: .86;
    letter-spacing: -.082em;
    text-transform: uppercase;
    font-weight: 950;
    text-shadow: 9px 12px 0 rgba(255, 255, 255, .08);
}

h1 span {
    display: block;
}

.lead {
    max-width: 580px;
    margin-top: 28px;
    color: var(--muted);
    font-size: clamp(.9rem, 1.14vw, 1.05rem);
    line-height: 1.78;
    font-weight: 560;
}

/* Botones del hero */
.actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
}

.btn {
    min-width: 170px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    border-radius: 16px;
    color: #080808;
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    text-decoration: none;
    font-size: .93rem;
    font-weight: 950;
    box-shadow: 0 20px 40px rgba(255, 196, 0, .25);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px rgba(255, 196, 0, .34);
}

.ghost {
    min-width: 170px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    border-radius: 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: .93rem;
    font-weight: 950;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.ghost img {
    width: 40px;
    max-width: 100%;
    height: auto;
}

.ghost i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .075);
    font-style: normal;
}

/* Imagen del presentador */
.person {
    position: absolute;
    z-index: 16;
    right: clamp(-118px, -5vw, -30px);
    bottom: clamp(-24px, -2vw, -4px);
    width: min(46vw, 675px);
    min-width: 430px;
    pointer-events: none;
    transform-origin: bottom center;
    filter: drop-shadow(-32px 30px 30px rgba(0, 0, 0, .64));
}

.person::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 56%;
    right: 6%;
    bottom: 10%;
    z-index: -1;
    border-radius: 999px;
    background: radial-gradient(circle at 55% 45%, rgba(255, 223, 102, .35), rgba(255, 196, 0, .08) 52%, transparent 75%);
    filter: blur(4px);
}

.person img {
    width: 100%;
    height: auto;
}

/* Placa flotante */
.badge {
    position: absolute;
    z-index: 18;
    right: clamp(300px, 27vw, 510px);
    bottom: clamp(74px, 11vh, 120px);
    width: 188px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
    box-shadow: 0 22px 60px rgba(0, 0, 0, .34);
    backdrop-filter: blur(16px);
    animation: lift 4.5s ease-in-out infinite;
}

.badge i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    color: #080808;
    background: var(--gold);
    border-radius: 14px;
    font-style: normal;
    font-weight: 950;
}

.badge strong {
    display: block;
    font-size: .9rem;
    font-weight: 950;
}

.badge span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .66);
    font-size: .7rem;
    line-height: 1.42;
    font-weight: 650;
}

/* Elementos decorativos */
.decor,
.gold-line,
.gold-dot,
.shape,
.particle {
    position: absolute;
    pointer-events: none;
}

.decor {
    z-index: 5;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, #fff 0 7deg, transparent 7deg 18deg);
    mask: radial-gradient(circle, transparent 0 43%, #000 44% 49%, transparent 50%);
    -webkit-mask: radial-gradient(circle, transparent 0 43%, #000 44% 49%, transparent 50%);
    opacity: .76;
    animation: spin 8s linear infinite;
}

.d1 {
    top: 18%;
    left: 6%;
}

.d2 {
    top: 42%;
    left: 31%;
    width: 44px;
    height: 44px;
    animation-duration: 6s;
}

.d3 {
    top: 39%;
    right: 22%;
    width: 48px;
    height: 48px;
    animation-duration: 7s;
}

.d4 {
    top: 9%;
    right: 5%;
    width: 64px;
    height: 64px;
    animation-duration: 10s;
}

.gold-line {
    z-index: 5;
    height: 13px;
    border-radius: 999px;
    transform: rotate(-25deg);
    background: linear-gradient(90deg, transparent, #fff7bf 10%, var(--gold) 38%, transparent);
    filter: drop-shadow(0 0 13px rgba(255, 196, 0, .42));
    opacity: .92;
}

.l1 {
    width: 130px;
    top: 21%;
    left: 15%;
}

.l2 {
    width: 96px;
    top: 17%;
    left: 45%;
}

.l3 {
    width: 160px;
    bottom: 10%;
    left: 25%;
}

.l4 {
    width: 95px;
    bottom: 22%;
    right: 19%;
}

.gold-dot {
    z-index: 6;
    border-radius: 999px;
    background: radial-gradient(circle at 32% 24%, #fff7bd, var(--gold) 48%, #9b6900 100%);
    box-shadow: 0 0 30px rgba(255, 196, 0, .42);
}

.g1 {
    width: 30px;
    height: 30px;
    top: 24%;
    left: 27%;
}

.g2 {
    width: 36px;
    height: 36px;
    top: 17%;
    right: 7%;
}

.g3 {
    width: 31px;
    height: 31px;
    top: 31%;
    right: 4.5%;
}

.shape {
    z-index: 4;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 196, 0, .60), rgba(255, 196, 0, .05));
    border: 1px solid rgba(255, 196, 0, .08);
}

.s1 {
    width: min(14vw, 180px);
    height: min(14vw, 180px);
    top: 20%;
    right: 6%;
    opacity: .72;
}

.s2 {
    width: 94px;
    height: 94px;
    top: 58%;
    right: 31%;
    opacity: .35;
}

.s3 {
    width: 32px;
    height: 32px;
    bottom: 9%;
    right: 27%;
    opacity: .62;
}

.particle {
    z-index: 7;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    opacity: var(--opacity);
    transform: rotate(45deg);
    background: rgba(255, 255, 255, .92);
    animation: float var(--time) ease-in-out infinite alternate;
}

/* Animaciones */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    to {
        transform: translate3d(0, -18px, 0) rotate(45deg);
    }
}

@keyframes lift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* Responsive escritorio */
@media (max-width: 1180px) {
    .copy {
        width: min(630px, 61vw);
    }

    .person {
        right: -128px;
        width: min(52vw, 620px);
    }

    .badge {
        right: 285px;
    }

    .nav a {
        padding-inline: 13px;
    }
}

/* Responsive tablets */
@media (max-width: 920px) {
    .landing {
        grid-template-columns: 1fr;
        min-height: 100dvh;
    }

    .sidebar {
        height: 92px;
        flex-direction: row;
        padding: 13px 22px;
    }

    .brand {
        grid-template-columns: auto auto;
        align-items: center;
        text-align: left;
    }

    .brand-mark {
        width: 56px;
        border-radius: 18px;
    }

    .socials {
        display: flex;
    }

    .fusgo {
        min-height: calc(100dvh - 92px);
    }

    .topbar {
        height: 86px;
        padding: 24px 24px 0;
    }

    .menu-btn {
        display: grid;
        place-items: center;
    }

    .nav-shell {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(8, 8, 8, .96);
        backdrop-filter: blur(16px);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        min-height: 44px;
    }

    .search {
        width: min(250px, 48vw);
    }

    .copy {
        width: 100%;
        padding: 62px 28px 0;
    }

    .lead {
        max-width: 640px;
    }

    .person {
        right: 50%;
        bottom: -30px;
        width: min(580px, 82vw);
        min-width: 0;
        transform: translateX(56%);
        opacity: .92;
    }

    .badge {
        right: auto;
        left: 28px;
        bottom: 240px;
    }

    .fusgo::after {
        right: 19%;
        opacity: .54;
    }
}

/* Responsive móvil */
@media (max-width: 620px) {
    .fusgo {
        min-height: 850px;
    }

    .search {
        min-width: 0;
        width: 170px;
        height: 42px;
    }

    .copy {
        padding-top: 54px;
    }

    h1 {
        font-size: clamp(3.15rem, 15vw, 5rem);
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .ghost {
        width: 100%;
    }

    .badge {
        display: none;
    }

    .person {
        width: 455px;
        opacity: .88;
    }

    .d2,
    .d3,
    .l4 {
        display: none;
    }
}

/* Móviles pequeños */
@media (max-width: 430px) {
    .sidebar {
        padding-inline: 14px;
    }

    .brand strong {
        font-size: .76rem;
    }

    .brand small {
        display: none;
    }

    .socials a {
        width: 30px;
        height: 30px;
    }

    .topbar {
        padding-inline: 18px;
    }

    .nav {
        left: 18px;
        right: 18px;
    }

    .copy {
        padding-inline: 20px;
    }

    .ribbon {
        font-size: .98rem;
    }

    .lead {
        font-size: .82rem;
    }

    .person {
        width: 390px;
    }
}

/* Estilo FUSGO */

:root {
    --black: #050505;
    --black-2: #090909;
    --black-3: #151515;
    --gold: #ff5a00;
    --gold-soft: #ffb15c;
    --gold-dark: #b71900;
    --red: #e13300;
    --red-dark: #650800;
    --orange: #ff7a00;
    --white: #ffffff;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, .76);
    --line: rgba(255, 255, 255, .16);
    --glass: rgba(255, 255, 255, .08);
}

body {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 90, 0, .18), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(225, 51, 0, .20), transparent 30%),
        #050505;
}

.landing {
    background:
        linear-gradient(90deg, #050505 0%, #080808 38%, #050505 100%);
}

.sidebar {
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 18%),
        linear-gradient(180deg, #161616 0%, #0d0d0d 48%, #050505 100%);
    border-right: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 18px 0 60px rgba(0, 0, 0, .38);
}

.sidebar::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--orange), var(--red), var(--red-dark));
    box-shadow: 0 0 24px rgba(255, 90, 0, .45);
}

.brand {
    color: var(--white);
}

.brand-mark {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .07));
    border: 1px solid rgba(255, 255, 255, .20);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        0 18px 34px rgba(0, 0, 0, .45);
}

.brand strong {
    color: var(--white);
    text-shadow: 0 8px 25px rgba(0, 0, 0, .45);
}

.brand small {
    color: var(--orange);
    opacity: 1;
}

.socials a {
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.socials a:hover {
    color: var(--white);
    background: linear-gradient(180deg, var(--orange), var(--red));
    box-shadow: 0 16px 32px rgba(225, 51, 0, .32);
}

.fusgo {
    background:
        radial-gradient(circle at 76% 24%, rgba(255, 153, 0, .32), transparent 14%),
        radial-gradient(circle at 42% 24%, rgba(255, 90, 0, .16), transparent 22%),
        linear-gradient(180deg, #f23b00 0%, #a31300 34%, #360404 61%, #080808 100%);
}

.fusgo::before {
    background-image:
        radial-gradient(rgba(255, 255, 255, .22) 1.05px, transparent 1.05px);
    background-size: 18px 18px;
    opacity: .27;
    mask-image: linear-gradient(90deg, #000 0 68%, transparent 100%);
}

.fusgo::after {
    right: clamp(260px, 26vw, 520px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 122, 0, .22) 34%, rgba(0, 0, 0, .20) 100%);
    border-left: 1px solid rgba(255, 255, 255, .12);
    border-right: 1px solid rgba(255, 255, 255, .06);
    filter: drop-shadow(0 0 70px rgba(255, 90, 0, .20));
    opacity: .74;
}

.topbar {
    align-items: flex-start;
}

.nav-shell,
.search {
    background: rgba(10, 10, 10, .62);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 18px 44px rgba(0, 0, 0, .34);
}

.nav a:hover,
.nav a.active {
    color: #050505;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(255, 255, 255, .12);
}

.search {
    color: var(--white);
}

.copy {
    width: min(720px, 56vw);
}

.ribbon {
    color: var(--white);
    background: linear-gradient(90deg, #ff7a00, #ff3d00);
    box-shadow: 13px 14px 0 rgba(0, 0, 0, .18);
    letter-spacing: .05em;
}

h1 {
    max-width: 830px;
    letter-spacing: -.07em;
    text-shadow:
        9px 12px 0 rgba(0, 0, 0, .22),
        0 22px 55px rgba(0, 0, 0, .36);
}

.lead {
    color: rgba(255, 255, 255, .83);
    max-width: 670px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .32);
}

.btn {
    color: #080808;
    background: linear-gradient(180deg, #ffffff, #eeeeee);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .28);
}

.btn:hover {
    box-shadow: 0 28px 56px rgba(0, 0, 0, .36);
}

.ghost i {
    color: var(--white);
    background: linear-gradient(180deg, var(--orange), var(--red));
    border: 0;
    box-shadow: 0 16px 34px rgba(225, 51, 0, .34);
}

.person {
    right: clamp(-116px, -4vw, -28px);
    width: min(45vw, 650px);
    filter:
        drop-shadow(-34px 30px 30px rgba(0, 0, 0, .62)) saturate(1.05) contrast(1.03);
}

.person::before {
    background:
        radial-gradient(circle at 55% 45%, rgba(255, 122, 0, .35), rgba(225, 51, 0, .08) 52%, transparent 75%);
}

.badge {
    right: clamp(300px, 28vw, 540px);
    background:
        linear-gradient(180deg, rgba(15, 15, 15, .74), rgba(15, 15, 15, .42));
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 26px 68px rgba(0, 0, 0, .42);
}

.badge i {
    color: var(--white);
    background: linear-gradient(180deg, var(--orange), var(--red));
}

.gold-line {
    background: linear-gradient(90deg, transparent, #fff3df 10%, var(--orange) 38%, transparent);
    filter: drop-shadow(0 0 13px rgba(255, 90, 0, .42));
}

.gold-dot {
    background: radial-gradient(circle at 32% 24%, #ffe3bf, var(--orange) 48%, #a11b00 100%);
    box-shadow: 0 0 30px rgba(255, 90, 0, .42);
}

.shape {
    background: linear-gradient(135deg, rgba(255, 122, 0, .42), rgba(120, 0, 0, .07));
    border: 1px solid rgba(255, 255, 255, .07);
}

.decor {
    opacity: .62;
}

@media (max-width: 1180px) {
    .copy {
        width: min(660px, 62vw);
    }

    .person {
        width: min(52vw, 620px);
    }
}

@media (max-width: 920px) {
    .sidebar {
        background:
            linear-gradient(90deg, #161616 0%, #101010 52%, #090909 100%);
    }

    .sidebar::before {
        inset: auto 0 0 0;
        width: auto;
        height: 4px;
    }

    .fusgo {
        background:
            radial-gradient(circle at 78% 18%, rgba(255, 122, 0, .26), transparent 18%),
            linear-gradient(180deg, #e13300 0%, #7f0900 38%, #0b0b0b 78%);
    }

    .copy {
        width: 100%;
    }

    .person {
        width: min(570px, 84vw);
    }

    .badge {
        left: 28px;
        right: auto;
    }
}

@media (max-width: 620px) {
    .fusgo {
        min-height: 880px;
    }

    .copy {
        padding-top: 50px;
    }

    .person {
        width: 450px;
    }
}

/* Ajustes finales */

:root {
    --gold: #ff5a00;
    --gold-soft: #ffb15c;
    --gold-dark: #8f1200;
    --red: #c82400;
    --red-dark: #2a0504;
    --orange: #ff6a00;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, .78);
    --line: rgba(255, 255, 255, .15);
}

body {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 90, 0, .13), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(170, 20, 0, .16), transparent 32%),
        #050505;
}

.landing {
    background: linear-gradient(90deg, #050505 0%, #070707 42%, #050505 100%);
}

.sidebar {
    color: var(--white);
    background: linear-gradient(180deg, #151515 0%, #0b0b0b 54%, #050505 100%);
    border-right: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 18px 0 60px rgba(0, 0, 0, .42);
}

.sidebar::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--orange), var(--red), var(--red-dark));
    box-shadow: 0 0 24px rgba(255, 90, 0, .42);
}

.brand,
.brand strong {
    color: var(--white);
}

.brand small {
    color: var(--orange);
    opacity: 1;
}

.brand-mark {
    background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20), 0 18px 34px rgba(0, 0, 0, .48);
}

.socials a {
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
}

.socials a:hover {
    color: var(--white);
    background: linear-gradient(180deg, var(--orange), var(--red));
    box-shadow: 0 16px 32px rgba(225, 51, 0, .30);
}

.fusgo {
    background:
        radial-gradient(circle at 78% 23%, rgba(255, 115, 0, .20), transparent 15%),
        radial-gradient(circle at 42% 24%, rgba(255, 90, 0, .10), transparent 24%),
        radial-gradient(circle at 88% 54%, rgba(120, 12, 0, .22), transparent 24%),
        linear-gradient(180deg, #d93200 0%, #961504 36%, #310706 68%, #070707 100%);
}

.fusgo::before {
    background-image: radial-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .24;
    mask-image: linear-gradient(90deg, #000 0 70%, transparent 100%);
}

.fusgo::after {
    right: clamp(260px, 26vw, 520px);
    background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 106, 0, .18) 35%, rgba(0, 0, 0, .24) 100%);
    border-left: 1px solid rgba(255, 255, 255, .10);
    border-right: 1px solid rgba(255, 255, 255, .05);
    filter: drop-shadow(0 0 65px rgba(255, 90, 0, .17));
    opacity: .68;
}

.nav-shell,
.search {
    background: rgba(10, 10, 10, .68);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 18px 44px rgba(0, 0, 0, .36);
}

.nav a:hover,
.nav a.active {
    color: #050505;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(255, 255, 255, .11);
}

.copy {
    width: min(710px, 55vw);
}

.ghost i,
.badge i {
    color: var(--white);
    background: linear-gradient(180deg, var(--orange), var(--red));
    box-shadow: 0 14px 30px rgba(225, 51, 0, .30);
}

.ribbon {
    background: linear-gradient(90deg, #e85400, #ff3d00);
    box-shadow: 12px 13px 0 rgba(0, 0, 0, .20);
    letter-spacing: .045em;
}

h1 {
    max-width: 790px;
    font-size: clamp(4rem, 7.6vw, 8.4rem);
    line-height: .88;
    letter-spacing: -.066em;
    text-shadow: 8px 10px 0 rgba(0, 0, 0, .22), 0 22px 52px rgba(0, 0, 0, .34);
}

.lead {
    max-width: 650px;
    color: rgba(255, 255, 255, .82);
    text-shadow: 0 8px 26px rgba(0, 0, 0, .30);
}

.btn {
    color: #080808;
    background: linear-gradient(180deg, #ffffff, #eeeeee);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .28);
}

.btn:hover {
    box-shadow: 0 28px 56px rgba(0, 0, 0, .36);
}

.ghost {
    color: rgba(255, 255, 255, .88);
}

.person {
    right: clamp(-12px, -4vw, -28px);
    width: min(44vw, 635px);
    filter: drop-shadow(-34px 30px 30px rgba(0, 0, 0, .62)) saturate(1.04) contrast(1.03);
}

.person::before {
    background: radial-gradient(circle at 55% 45%, rgba(255, 106, 0, .28), rgba(190, 30, 0, .07) 52%, transparent 75%);
}

.badge {
    right: clamp(300px, 28vw, 540px);
    background: linear-gradient(180deg, rgba(12, 12, 12, .78), rgba(12, 12, 12, .46));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 26px 68px rgba(0, 0, 0, .44);
}

.gold-line {
    background: linear-gradient(90deg, transparent, #fff3df 10%, var(--orange) 38%, transparent);
    filter: drop-shadow(0 0 13px rgba(255, 90, 0, .38));
    opacity: .82;
}

.gold-dot {
    background: radial-gradient(circle at 32% 24%, #ffe3bf, var(--orange) 48%, #9a1800 100%);
    box-shadow: 0 0 28px rgba(255, 90, 0, .38);
}

.shape {
    background: linear-gradient(135deg, rgba(255, 106, 0, .32), rgba(90, 0, 0, .06));
    border: 1px solid rgba(255, 255, 255, .06);
}

.decor {
    opacity: .56;
}

@media (max-width: 1180px) {
    .copy {
        width: min(650px, 61vw);
    }

    .person {
        width: min(51vw, 610px);
    }
}

@media (max-width: 920px) {
    .sidebar {
        background: linear-gradient(90deg, #151515 0%, #0f0f0f 52%, #080808 100%);
    }

    .sidebar::before {
        inset: auto 0 0 0;
        width: auto;
        height: 4px;
    }

    .fusgo {
        background:
            radial-gradient(circle at 78% 18%, rgba(255, 106, 0, .20), transparent 18%),
            linear-gradient(180deg, #c92e00 0%, #761006 40%, #0b0b0b 80%);
    }

    .copy {
        width: 100%;
    }

    .person {
        width: min(560px, 83vw);
    }

    .badge {
        left: 28px;
        right: auto;
    }
}

@media (max-width: 620px) {
    .fusgo {
        min-height: 880px;
    }

    .copy {
        padding-top: 50px;
    }

    h1 {
        font-size: clamp(3rem, 13.5vw, 4.65rem);
        line-height: .90;
        letter-spacing: -.055em;
    }

    .person {
        width: 445px;
    }
}

/* Movimiento del personaje */

@media (min-width: 921px) {
    .person {
        --follow-x: 0px;
        --follow-y: 0px;
        transform: translate3d(var(--follow-x), var(--follow-y), 0);
        will-change: transform;
        backface-visibility: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {

    .person,
    .particle,
    .decor,
    .badge {
        animation: none !important;
    }
}

/* Buscador */

.search {
    position: relative;
    overflow: visible;
    z-index: 80;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    max-height: 345px;
    padding: 10px;
    overflow-y: auto;
    border-radius: 22px;
    color: var(--white);
    background: linear-gradient(180deg, rgba(14, 14, 14, .96), rgba(7, 7, 7, .92));
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
}

.search-suggestions.is-visible {
    display: grid;
    gap: 8px;
}

.suggestion-item {
    width: 100%;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 0;
    border-radius: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, .055);
    text-align: left;
    cursor: pointer;
    transition: background .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}

.suggestion-item:hover,
.suggestion-item:focus-visible {
    outline: none;
    transform: translateY(-1px);
    background: rgba(255, 90, 0, .18);
}

.suggestion-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--white);
    background: linear-gradient(180deg, var(--orange), var(--red));
    box-shadow: 0 12px 24px rgba(225, 51, 0, .28);
    font-size: .78rem;
    font-weight: 950;
}

.suggestion-text {
    min-width: 0;
}

.suggestion-title {
    display: block;
    overflow: hidden;
    color: var(--white);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .82rem;
    font-weight: 900;
    line-height: 1.25;
}

.suggestion-meta {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: rgba(255, 255, 255, .62);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .66rem;
    font-weight: 650;
}

.suggestion-open {
    color: rgba(255, 255, 255, .54);
    font-size: .78rem;
    font-weight: 900;
}

.suggestion-empty {
    padding: 12px 10px;
    color: rgba(255, 255, 255, .68);
    font-size: .76rem;
    line-height: 1.45;
    font-weight: 650;
}

@media (max-width: 920px) {
    .search-suggestions {
        left: auto;
        right: 0;
        width: min(330px, 86vw);
    }
}

/* Scroll y redes */

.search-suggestions {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 106, 0, .78) rgba(255, 255, 255, .055);
    padding-right: 8px;
}

.search-suggestions::-webkit-scrollbar {
    width: 8px;
}

.search-suggestions::-webkit-scrollbar-track {
    margin: 14px 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .045);
}

.search-suggestions::-webkit-scrollbar-thumb {
    border: 2px solid rgba(10, 10, 10, .94);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--orange), var(--red));
    box-shadow: 0 0 14px rgba(255, 90, 0, .34);
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8a22, #ff3d00);
    box-shadow: 0 0 18px rgba(255, 90, 0, .48);
}

.search-suggestions::-webkit-scrollbar-corner {
    background: transparent;
}

.socials a:hover {
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
    transform: translateY(-4px) scale(1.04);
}

.socials a:focus-visible {
    outline: 2px solid rgba(255, 106, 0, .75);
    outline-offset: 4px;
    background: transparent !important;
    box-shadow: none !important;
}

.socials a img {
    transition: transform .28s var(--ease), filter .28s var(--ease), opacity .28s var(--ease);
}

.socials a:hover img {
    transform: scale(1.06);
    filter: drop-shadow(0 10px 16px rgba(255, 90, 0, .28));
}

/* Secciones internas */

:root {
    --section-bg: #ffffff;
    --section-soft: #f3f3f5;
    --section-ink: #082d3a;
    --section-text: #1f2028;
    --section-muted: #5c6270;
    --section-cyan: #ffe6b0;
    --section-yellow: #ffd84d;
    --section-red: #ff3e3e;
    --section-orange: #ff5a00;
}

.content-sections {
    position: relative;
    z-index: 3;
    background: var(--section-bg);
    color: var(--section-text);
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
    overflow: hidden;
}

.content-section {
    position: relative;
    min-height: 640px;
    padding: clamp(78px, 9vw, 132px) clamp(24px, 7vw, 132px);
    display: grid;
    align-items: center;
    overflow: hidden;
}

.content-section.is-soft {
    background: var(--section-soft);
}

.content-section::before,
.content-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.content-section::before {
    width: 44vw;
    height: 44vw;
    min-width: 320px;
    min-height: 320px;
    border-radius: 48% 52% 44% 56% / 54% 42% 58% 46%;
    background: rgba(255, 213, 118, .30);
    filter: blur(.2px);
}

.content-section::after {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 62, 62, .12);
}

.section-grid {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
}

.section-grid.reverse {
    grid-template-columns: minmax(320px, 1fr) minmax(0, .95fr);
}

.section-grid.reverse .section-copy {
    order: 2;
}

.section-grid.reverse .section-art {
    order: 1;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--section-orange);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 950;
}

.section-kicker::before {
    content: "";
    width: 34px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--section-orange), var(--section-red));
    box-shadow: 0 8px 18px rgba(255, 90, 0, .22);
}

.section-title {
    margin: 0 0 26px;
    color: var(--section-ink);
    font-size: clamp(2.3rem, 4.2vw, 4.65rem);
    line-height: .94;
    letter-spacing: -.045em;
    /* text-transform: uppercase; */
    font-weight: 950;
}

.section-title em {
    display: block;
    font-style: italic;
    font-weight: 950;
    letter-spacing: -.02em;
}

.section-copy p {
    max-width: 660px;
    margin: 0 0 18px;
    color: var(--section-text);
    font-size: clamp(.96rem, 1.1vw, 1.08rem);
    line-height: 1.65;
    font-weight: 500;
}

.section-copy .muted {
    color: var(--section-muted);
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.section-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, var(--section-orange), var(--section-red));
    font-size: .9rem;
    font-weight: 900;
    box-shadow: 0 18px 32px rgba(255, 90, 0, .20);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.section-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 42px rgba(255, 90, 0, .28);
}

.section-btn.light {
    color: var(--section-ink);
    background: #ffffff;
    border: 1px solid rgba(8, 45, 58, .12);
    box-shadow: 0 14px 30px rgba(8, 45, 58, .08);
}

.section-art {
    position: relative;
    z-index: 2;
    min-height: 360px;
    display: grid;
    place-items: center;
}

.blob-stack {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 45% 55% 62% 38% / 48% 46% 54% 52%;
    filter: drop-shadow(0 24px 30px rgba(8, 45, 58, .08));
}

.blob.cyan {
    width: min(430px, 80%);
    height: min(430px, 80%);
    background: var(--section-cyan);
    transform: rotate(-12deg) translate(-20px, 12px);
}

.blob.yellow {
    width: min(330px, 60%);
    height: min(330px, 60%);
    background: var(--section-yellow);
    transform: rotate(14deg) translate(-150px, -80px);
}

.blob.red {
    width: min(310px, 54%);
    height: min(310px, 54%);
    background: var(--section-red);
    transform: rotate(18deg) translate(140px, 46px);
    opacity: .95;
}

.circle-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--section-yellow);
    box-shadow: 0 18px 35px rgba(255, 216, 77, .26);
}

.dot-a {
    width: 42px;
    height: 42px;
    top: 36px;
    right: 92px;
}

.dot-d {
    width: 18px;
    height: 18px;
    right: 80px;
    bottom: 86px;
    background: var(--section-cyan);
}

.art-card {
    position: relative;
    z-index: 2;
    width: min(390px, 78vw);
    min-height: 310px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 28px 70px rgba(8, 45, 58, .14);
    transform: rotate(-4deg);
    border: 1px solid rgba(8, 45, 58, .08);
    backdrop-filter: blur(8px);
}

.art-card.dark {
    background: #111217;
    color: #fff;
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.art-icon {
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    border-radius: 38px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--section-orange), var(--section-red));
    font-size: 4.6rem;
    box-shadow: 0 22px 42px rgba(255, 90, 0, .22);
}

.art-card h3 {
    margin-top: 24px;
    color: var(--section-ink);
    font-size: 1.5rem;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
}

.art-card.dark h3 {
    color: #ffffff;
}

.art-card p {
    max-width: 260px;
    margin-top: 8px;
    color: var(--section-muted);
    text-align: center;
    font-size: .9rem;
    line-height: 1.45;
    font-weight: 650;
}

.art-card.dark p {
    color: rgba(255, 255, 255, .72);
}

.wave-top {
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 92px;
    pointer-events: none;
    background: radial-gradient(80% 120px at 50% -45px, transparent 58%, var(--section-soft) 60%);
}

.wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 92px;
    pointer-events: none;
    background: radial-gradient(80% 120px at 50% 138px, transparent 58%, #fff 60%);
}

.about-section::before {
    right: -12vw;
    top: -10vw;
}

.about-section::after {
    right: 10vw;
    bottom: 6vw;
}

.episodes-section::before {
    left: -14vw;
    bottom: -18vw;
    background: rgba(255, 216, 77, .20);
}

.episodes-section::after {
    right: -40px;
    top: 90px;
    background: rgba(255, 213, 118, .28);
}

.categories-section::before {
    right: -16vw;
    bottom: -16vw;
    background: rgba(255, 62, 62, .10);
}

.categories-section::after {
    left: 8vw;
    top: 100px;
    background: rgba(255, 213, 118, .26);
}

.spotify-section::before {
    left: -14vw;
    top: -10vw;
    background: rgba(255, 213, 118, .22);
}

.spotify-section::after {
    right: 8vw;
    bottom: 70px;
    background: rgba(255, 216, 77, .18);
}

.cards-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cards-head {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    margin-bottom: 34px;
}

.cards-head .section-title {
    margin-bottom: 0;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.episode-card {
    position: relative;
    min-height: 265px;
    overflow: hidden;
    border-radius: 28px;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(255, 90, 0, .72), rgba(20, 8, 7, .94)),
        #111217;
    box-shadow: 0 24px 58px rgba(8, 45, 58, .14);
    text-decoration: none;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.episode-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -70px;
    top: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.episode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 70px rgba(255, 90, 0, .18);
}

.episode-card-inner {
    position: relative;
    z-index: 2;
    min-height: 265px;
    padding: 24px;
    display: grid;
    align-content: end;
}

.episode-play {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #ffffff;
    color: var(--section-orange);
    font-weight: 950;
}

.episode-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.14rem;
    line-height: 1.15;
    font-weight: 950;
}

.episode-card span {
    color: rgba(255, 255, 255, .74);
    font-size: .84rem;
    line-height: 1.45;
    font-weight: 650;
}

.social-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.platform-card {
    min-height: 180px;
    padding: 22px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--section-ink);
    background: #ffffff;
    border: 1px solid rgba(8, 45, 58, .08);
    box-shadow: 0 20px 42px rgba(8, 45, 58, .08);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(8, 45, 58, .13);
}

.platform-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 18px;
}

.platform-card strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 950;
}

.platform-card span {
    display: block;
    margin-top: 8px;
    color: var(--section-muted);
    font-size: .78rem;
    line-height: 1.45;
    font-weight: 650;
}

.contact-section {
    min-height: auto;
    padding-bottom: clamp(86px, 10vw, 140px);
    background:
        radial-gradient(circle at 16% 30%, rgba(255, 90, 0, .22), transparent 26%),
        radial-gradient(circle at 84% 70%, rgba(255, 213, 118, .28), transparent 26%),
        linear-gradient(135deg, #071923, #050505 72%);
    color: #ffffff;
}

.contact-section .section-title,
.contact-section .section-copy p {
    color: #ffffff;
}

.contact-section .section-copy .muted {
    color: rgba(255, 255, 255, .72);
}

.contact-panel {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    border-radius: 42px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .30);
    backdrop-filter: blur(14px);
}

.contact-panel .section-title {
    margin-bottom: 16px;
}

@media (max-width: 1080px) {

    .section-grid,
    .section-grid.reverse {
        grid-template-columns: 1fr;
    }

    .section-grid.reverse .section-copy,
    .section-grid.reverse .section-art {
        order: initial;
    }

    .episode-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .social-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 660px) {
    .content-section {
        min-height: auto;
        padding-block: 72px;
    }

    .section-title {
        font-size: clamp(2.1rem, 12vw, 3.25rem);
    }

    .section-art {
        min-height: 300px;
    }

    .episode-grid,
    .social-card-grid {
        grid-template-columns: 1fr;
    }

    .cards-head {
        display: block;
    }
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 90, 0, .72) rgba(5, 5, 5, .96);
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #050505;
}

body::-webkit-scrollbar-thumb {
    border: 2px solid #050505;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff6a00, #c82400);
}

/* Paleta de secciones */

:root {
    --section-bg: #fffaf6;
    --section-soft: #180706;
    --section-ink: #160d0d;
    --section-text: #211817;
    --section-muted: #6d5b55;
    --section-cyan: #ffe6b0;
    --section-yellow: #ffd36a;
    --section-red: #d93200;
    --section-orange: #ff5a00;
    --section-dark-red: #3a0705;
    --section-black: #070707;
    --section-cream: #fffaf6;
}

.content-sections {
    background: var(--section-cream);
}

.content-section {
    background: var(--section-cream);
}

.content-section.is-soft {
    padding-top: clamp(118px, 11vw, 170px);
    padding-bottom: clamp(118px, 11vw, 170px);
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 122, 0, .25), transparent 18%),
        radial-gradient(circle at 8% 70%, rgba(255, 90, 0, .18), transparent 26%),
        linear-gradient(180deg, #d83200 0%, #8d1305 42%, #280605 72%, #070707 100%);
}

.content-section.is-soft .section-title,
.content-section.is-soft .section-title em,
.content-section.is-soft .section-copy p,
.content-section.is-soft .cards-head p,
.content-section.is-soft .muted {
    color: rgba(255, 255, 255, .86) !important;
}

.content-section.is-soft .section-title {
    color: #ffffff !important;
    text-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}

.content-section.is-soft .section-kicker {
    color: #ffcfb1;
}

.content-section.is-soft .section-kicker::before {
    background: linear-gradient(90deg, #ffffff, var(--section-orange));
    box-shadow: 0 10px 28px rgba(255, 90, 0, .34);
}

.content-section.is-soft::before {
    background: rgba(255, 90, 0, .13) !important;
}

.content-section.is-soft::after {
    background: rgba(255, 255, 255, .08) !important;
}

.section-title {
    color: var(--section-ink);
    text-shadow: none;
}

.section-title em {
    color: var(--section-ink);
    font-style: italic;
}

.section-kicker {
    color: var(--section-orange);
}

.section-kicker::before {
    background: linear-gradient(90deg, var(--section-orange), var(--section-red));
}

.blob.cyan {
    background: linear-gradient(135deg, #ffe6b0, #ffd576);
    opacity: .94;
}

.blob.yellow {
    background: #ffd36a;
    opacity: .92;
}

.blob.red {
    background: linear-gradient(135deg, #ff3d00, #b71900);
}

.circle-dot {
    background: #ffd36a;
}

.dot-d {
    background: var(--section-orange);
}

.art-card {
    background: rgba(255, 250, 246, .86);
    box-shadow: 0 28px 74px rgba(40, 6, 5, .12);
}

.art-card.dark {
    background:
        radial-gradient(circle at 80% 14%, rgba(255, 90, 0, .24), transparent 32%),
        linear-gradient(180deg, #151515, #090909);
    border-color: rgba(255, 255, 255, .14);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.art-icon {
    background: linear-gradient(135deg, var(--section-orange), var(--section-red));
    box-shadow: 0 24px 46px rgba(255, 90, 0, .26);
}

.episode-card {
    border: 1px solid rgba(255, 255, 255, .13);
    background:
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, .13), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .04)),
        linear-gradient(180deg, #27100d, #090909);
    box-shadow: 0 26px 68px rgba(0, 0, 0, .26);
}

.episode-card::before {
    background: rgba(255, 90, 0, .22);
}

.episode-card:hover {
    box-shadow: 0 36px 78px rgba(255, 90, 0, .22);
}

.episode-play {
    color: #ffffff;
    background: linear-gradient(180deg, var(--section-orange), var(--section-red));
    box-shadow: 0 16px 34px rgba(255, 90, 0, .28);
}

.platform-card {
    background: #ffffff;
    border: 1px solid rgba(33, 24, 23, .08);
    box-shadow: 0 20px 48px rgba(58, 7, 5, .08);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 64px rgba(255, 90, 0, .13);
}

.wave-top,
.wave-bottom {
    height: clamp(86px, 8vw, 130px);
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
}

.wave-top {
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%23fffaf6' d='M0 0H1440V54C1200 126 1014 24 760 78C500 134 283 106 0 55Z'/%3E%3C/svg%3E");
}

.wave-bottom {
    bottom: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%23fffaf6' d='M0 86C248 20 488 120 748 62C1036 -2 1244 28 1440 80V140H0Z'/%3E%3C/svg%3E");
}

.episodes-section,
.spotify-section {
    overflow: hidden;
}

.episodes-section .cards-grid,
.spotify-section .section-grid {
    position: relative;
    z-index: 2;
}

.episodes-section::before {
    left: -12vw !important;
    bottom: -18vw !important;
    background: rgba(255, 90, 0, .16) !important;
}

.episodes-section::after {
    right: -70px !important;
    top: 120px !important;
    background: rgba(255, 255, 255, .08) !important;
}

.spotify-section {
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 122, 0, .20), transparent 23%),
        radial-gradient(circle at 86% 66%, rgba(255, 90, 0, .22), transparent 24%),
        linear-gradient(180deg, #070707 0%, #2b0604 42%, #8d1305 76%, #d83200 100%);
}

.spotify-section::before {
    background: rgba(255, 255, 255, .075) !important;
}

.spotify-section::after {
    background: rgba(255, 90, 0, .16) !important;
}

.section-btn.light {
    color: var(--section-ink);
    background: #fffaf6;
    border-color: rgba(255, 255, 255, .45);
}

.contact-section {
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 90, 0, .24), transparent 28%),
        radial-gradient(circle at 86% 74%, rgba(255, 122, 0, .14), transparent 28%),
        linear-gradient(135deg, #160d0d, #050505 72%);
}

@media (max-width: 660px) {
    .content-section.is-soft {
        padding-top: 108px;
        padding-bottom: 108px;
    }

    .wave-top,
    .wave-bottom {
        height: 82px;
    }
}

/* Episodios recientes */

.episodes-head-copy {
    display: grid;
    gap: 10px;
    max-width: 440px;
}

.episodes-head-copy .muted {
    max-width: 420px;
    margin: 0;
    color: var(--section-muted);
    font-weight: 600;
    line-height: 1.6;
}

.episode-card.is-loading {
    pointer-events: none;
}

.episode-card.has-thumbnail {
    background-image:
        linear-gradient(180deg, rgba(12, 5, 3, .08) 0%, rgba(26, 7, 3, .42) 42%, rgba(8, 3, 2, .96) 100%),
        var(--episode-thumb);
    background-size: cover;
    background-position: center;
}

.episode-card.has-thumbnail::before {
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 106, 0, .36), transparent 30%),
        linear-gradient(135deg, rgba(255, 90, 0, .16), transparent 48%);
}

.episode-card.has-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .22) 45%, rgba(0, 0, 0, .76) 100%);
    z-index: 1;
    pointer-events: none;
}

.episode-card.has-thumbnail .episode-card-inner {
    z-index: 3;
}

.episode-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .88);
    background: rgba(0, 0, 0, .44);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: .68rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.episode-card.has-thumbnail strong {
    text-shadow: 0 10px 25px rgba(0, 0, 0, .55);
}

.episode-card.has-thumbnail span:not(.episode-play):not(.episode-meta) {
    color: rgba(255, 255, 255, .82);
}

@media (max-width: 720px) {

    .episodes-head-copy,
    .episodes-head-copy .muted {
        max-width: none;
    }
}

/* Miniaturas y ondas */

.episodes-section {
    position: relative;
    padding-top: clamp(128px, 10vw, 168px) !important;
    padding-bottom: clamp(126px, 10vw, 160px) !important;
    background:
        radial-gradient(circle at 10% 88%, rgba(0, 0, 0, .34), transparent 28%),
        radial-gradient(circle at 92% 20%, rgba(255, 255, 255, .10), transparent 18%),
        linear-gradient(180deg, #d63200 0%, #9e1606 42%, #3a0705 76%, #080202 100%) !important;
}

.episodes-section .wave-top,
.episodes-section .wave-bottom {
    left: 0;
    right: 0;
    height: clamp(118px, 10vw, 170px);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent !important;
    opacity: 1;
    z-index: 1;
    filter: drop-shadow(0 18px 22px rgba(26, 6, 4, .10));
}

.episodes-section .wave-top {
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%23fffaf6' d='M0 0H1440V44C1238 102 1052 12 820 50C580 88 406 165 0 48Z'/%3E%3C/svg%3E") !important;
}

.episodes-section .wave-bottom {
    bottom: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%23fffaf6' d='M0 112C246 50 472 145 740 84C1018 20 1228 35 1440 94V180H0Z'/%3E%3C/svg%3E") !important;
    filter: drop-shadow(0 -18px 22px rgba(26, 6, 4, .10));
}

.episodes-section .cards-grid {
    position: relative;
    z-index: 3;
}

.episode-card {
    --episode-thumb: url("assets/logo-candle.png");
}

.episode-card.has-thumbnail {
    min-height: 315px;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(26, 7, 3, .44) 48%, rgba(5, 2, 1, .95) 100%),
        var(--episode-thumb) !important;
    background-size: cover, cover;
    background-position: center, center;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 28px 76px rgba(0, 0, 0, .28);
}

.episode-card.has-thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    border-radius: inherit;
    background:
        radial-gradient(circle at 84% 10%, rgba(255, 106, 0, .38), transparent 30%),
        linear-gradient(135deg, rgba(255, 90, 0, .16), transparent 46%);
    z-index: 1;
    pointer-events: none;
}

.episode-card.has-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, .20) 50%, rgba(0, 0, 0, .78) 100%);
}

.episode-card.has-thumbnail .episode-card-inner {
    min-height: 315px;
    z-index: 3;
    padding: 24px;
}

.episode-card.episode-card-fallback.has-thumbnail {
    background-image:
        linear-gradient(180deg, rgba(30, 8, 3, .08) 0%, rgba(20, 6, 3, .55) 50%, rgba(5, 2, 1, .96) 100%),
        var(--episode-thumb) !important;
    background-size: cover, min(150px, 42%) auto;
    background-position: center, center 34%;
    background-repeat: no-repeat;
}

.episode-card.has-thumbnail strong {
    color: #ffffff;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .68);
}

.episode-card.has-thumbnail span:not(.episode-play):not(.episode-meta) {
    color: rgba(255, 255, 255, .86);
    text-shadow: 0 8px 20px rgba(0, 0, 0, .55);
}

.episode-card.has-thumbnail .episode-play {
    z-index: 4;
    background: linear-gradient(180deg, #ff6a00, #ff3d00);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(255, 90, 0, .34);
}

.episode-meta {
    color: rgba(255, 255, 255, .90) !important;
    background: rgba(0, 0, 0, .46);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(10px);
}

.episode-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 38px 86px rgba(255, 90, 0, .22);
}

@media (max-width: 740px) {
    .episodes-section {
        padding-top: 118px !important;
        padding-bottom: 118px !important;
    }

    .episode-card.has-thumbnail,
    .episode-card.has-thumbnail .episode-card-inner {
        min-height: 290px;
    }
}

/* Footer */

/* Footer elegante claro con traducción y efectos suaves */

.site-footer {
    position: relative;
    z-index: 5;
    overflow: hidden;
    padding: clamp(24px, 6vw, 38px) 0 0;
    color: #18202a;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff8f4 52%, #ffffff 100%);
    border-top: 1px solid rgba(8, 45, 58, .08);
    isolation: isolate;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 106, 0, .045), transparent 32%, rgba(255, 106, 0, .035) 100%),
        radial-gradient(rgba(255, 106, 0, .10) .8px, transparent .8px);
    background-size: auto, 20px 20px;
    opacity: .55;
    mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

.site-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6a00, #ff3d00, #8f1200);
    box-shadow: 0 8px 22px rgba(255, 90, 0, .20);
}

/* Se eliminan los círculos visibles del footer */
.footer-glow,
.footer-orb,
.footer-orb-one,
.footer-orb-two {
    display: none !important;
}

.footer-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) auto auto;
    align-items: center;
    gap: clamp(22px, 4vw, 42px);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.footer-logo {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff, #fff4ed);
    border: 1px solid rgba(19, 19, 18, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        0 18px 36px rgba(8, 45, 58, .08),
        0 10px 26px rgba(255, 90, 0, .08);
    text-decoration: none;
    transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}

.footer-logo:hover {
    transform: translateY(-4px) rotate(-2deg) scale(1.03);
    border-color: rgba(255, 106, 0, .42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 24px 48px rgba(8, 45, 58, .12),
        0 0 28px rgba(255, 90, 0, .13);
}

.footer-logo img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(8, 45, 58, .14));
}

.footer-brand-copy {
    min-width: 0;
}

.footer-brand strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: 1;
    letter-spacing: .035em;
    font-weight: 950;
}

.footer-brand p {
    max-width: 540px;
    color: #5f6672;
    font-size: .88rem;
    line-height: 1.58;
    font-weight: 650;
}

.footer-contact {
    display: grid;
    gap: 9px;
    padding: 14px 18px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, #ffffff, #fff7f2);
    border: 1px solid rgba(8, 45, 58, .08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        0 16px 34px rgba(8, 45, 58, .07);
    transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.footer-contact:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: rgba(255, 106, 0, .30);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 22px 46px rgba(8, 45, 58, .10),
        0 0 24px rgba(255, 90, 0, .08);
}

.footer-contact span {
    color: rgba(17, 24, 39, .50);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 950;
}

.footer-contact a {
    width: max-content;
    max-width: 100%;
    color: #111827;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 850;
    transition: color .25s var(--ease), transform .25s var(--ease), text-shadow .25s var(--ease);
}

.footer-contact a:hover {
    color: var(--orange);
    transform: translateY(-1px);
    text-shadow: 0 8px 22px rgba(255, 90, 0, .16);
}

.footer-top-link {
    height: 48px;
    padding: 0 14px 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(180deg, #111827, #060709);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(8, 45, 58, .16);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), filter .28s var(--ease);
    white-space: nowrap;
}

.footer-top-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(180deg, var(--orange), var(--red));
    font-size: 1rem;
    line-height: 1;
    transition: transform .28s var(--ease);
}

.footer-top-link:hover {
    transform: translateY(-4px);
    filter: saturate(1.05);
    box-shadow: 0 26px 54px rgba(8, 45, 58, .22), 0 0 24px rgba(255, 90, 0, .12);
}

.footer-top-link:hover .footer-top-icon {
    transform: translateY(-2px);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 24px;
    display: flex;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(8, 45, 58, .09);
    color: rgba(17, 24, 39, .62);
    font-size: .78rem;
    line-height: 1.5;
    font-weight: 700;
}

.footer-bottom span {
    color: rgba(17, 24, 39, .66);
}

@media (max-width: 860px) {
    .site-footer {
        padding-top: 44px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 26px;
    }

    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand p {
        max-width: 560px;
    }

    .footer-contact {
        justify-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 520px) {

    .footer-inner,
    .footer-bottom {
        width: min(100% - 34px, 1180px);
    }

    .footer-logo {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .footer-top-link {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .footer-logo,
    .footer-contact,
    .footer-top-link,
    .footer-top-icon {
        transition: none !important;
    }
}


.scroll-top {
    position: fixed;
    right: clamp(18px, 2vw, 28px);
    bottom: clamp(18px, 2vw, 28px);
    z-index: 250;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(180deg, var(--orange), var(--red));
    box-shadow: 0 20px 45px rgba(0, 0, 0, .38), 0 0 24px rgba(255, 90, 0, .24);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.92);
    transition: opacity .28s var(--ease), visibility .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 26px 55px rgba(0, 0, 0, .44), 0 0 30px rgba(255, 90, 0, .32);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

@media (max-width: 860px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .footer-bottom {
        width: min(100% - 34px, 1180px);
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

/* Apoyo Patreon */

.support-section {
    background:
        radial-gradient(circle at 16% 34%, rgba(255, 90, 0, .24), transparent 28%),
        radial-gradient(circle at 82% 66%, rgba(255, 106, 0, .12), transparent 30%),
        linear-gradient(135deg, #180b08 0%, #080808 64%, #050505 100%) !important;
}

.support-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .045)),
        radial-gradient(circle at 12% 50%, rgba(255, 106, 0, .12), transparent 34%);
}

.support-panel .section-title em {
    color: rgba(255, 255, 255, .16);
    text-shadow: none;
}

.support-panel .muted {
    max-width: 720px;
    color: rgba(255, 255, 255, .76) !important;
    line-height: 1.62;
    font-weight: 650;
}

.patreon-btn {
    min-width: 214px;
    min-height: 58px;
    padding: 0 30px;
    border: 0 !important;
    border-radius: 18px !important;
    color: #080808 !important;
    background: linear-gradient(180deg, #ffffff, #f2f2f2) !important;
    box-shadow: 0 22px 44px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .78) !important;
    font-size: .94rem;
    font-weight: 950;
    letter-spacing: -.01em;
}

.patreon-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 58px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .85) !important;
}

@media (max-width: 820px) {
    .support-panel {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .support-panel .section-actions,
    .patreon-btn {
        width: 100%;
    }
}

/* Pantalla de carga */

body.is-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    color: var(--section-orange);
    background-color: #fff;
    /* Fondo alternativo */
    transition: opacity .55s var(--ease), visibility .55s var(--ease), transform .55s var(--ease);
}

.page-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .24;
    mask-image: radial-gradient(circle at 50% 50%, #000 0 48%, transparent 82%);
}

.page-loader::after {
    content: "";
    position: absolute;
    width: min(62vw, 720px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 0, .16), transparent 64%);
    filter: blur(8px);
    opacity: .9;
    animation: loaderGlow 2.6s ease-in-out infinite alternate;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    pointer-events: none;
}

.loader-card {
    position: relative;
    z-index: 2;
    width: min(360px, calc(100% - 42px));
    min-height: 260px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 18px;
    padding: 34px 28px;
    border-radius: 34px;
    background-color: #fff;
    /* background: linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .045)); */
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    text-align: center;
}

.loader-mark {
    position: relative;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    /* Fondo alternativo */
    border: 1px solid rgba(0, 0, 0, .58);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .38);
}

.loader-mark::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 34px;
    border: 3px solid transparent;
    border-top-color: #ff6a00;
    border-right-color: rgba(255, 255, 255, .88);
    animation: loaderSpin 1.05s linear infinite;
}

.loader-mark img {
    width: 74%;
    height: 74%;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .28));
}

.loader-card strong {
    display: block;
    margin-top: 4px;
    font-size: clamp(1.2rem, 2.1vw, 1.55rem);
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 950;
}

.loader-card span {
    display: block;
    color: black;
    font-size: .85rem;
    line-height: 1.5;
    font-weight: 650;
    margin-top: 5px;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(250%);
    }
}

@keyframes loaderGlow {
    from {
        transform: scale(.96);
        opacity: .62;
    }

    to {
        transform: scale(1.04);
        opacity: .95;
    }
}

/* Botones principales */

.btn,
.section-btn,
.section-btn.light,
.patreon-btn {
    min-width: 170px !important;
    min-height: 58px !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 30px !important;
    border: 1px solid rgba(8, 8, 8, .08) !important;
    border-radius: 20px !important;
    color: #080808 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%) !important;
    box-shadow: 0 22px 44px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .82) !important;
    text-decoration: none !important;
    text-align: center !important;
    font-size: .94rem !important;
    line-height: 1 !important;
    letter-spacing: -.01em !important;
    font-weight: 950 !important;
    cursor: pointer;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease) !important;
}

.btn:hover,
.section-btn:hover,
.section-btn.light:hover,
.patreon-btn:hover {
    transform: translateY(-4px) !important;
    background: linear-gradient(180deg, #ffffff 0%, #ececec 100%) !important;
    box-shadow: 0 30px 58px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .90) !important;
}

.btn:focus-visible,
.ghost:focus-visible,
.section-btn:focus-visible,
.section-btn.light:focus-visible,
.patreon-btn:focus-visible,
.scroll-top:focus-visible {
    outline: 3px solid rgba(255, 106, 0, .72);
    outline-offset: 4px;
}

.ghost img {
    width: 32px !important;
    height: 22px !important;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
}

.section-actions {
    align-items: center;
}

.scroll-top {
    color: #080808 !important;
    background: linear-gradient(180deg, #ffffff, #f2f2f2) !important;
    border: 1px solid rgba(8, 8, 8, .08) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .38), 0 0 24px rgba(255, 90, 0, .20) !important;
}

.scroll-top:hover {
    background: linear-gradient(180deg, #ffffff, #eaeaea) !important;
    box-shadow: 0 26px 55px rgba(0, 0, 0, .44), 0 0 30px rgba(255, 90, 0, .28) !important;
}

@media (max-width: 620px) {

    .btn,
    .ghost,
    .section-btn,
    .section-btn.light,
    .patreon-btn {
        width: 100% !important;
        max-width: 330px !important;
    }
}

/* Hover de botones */

@media (hover: hover) and (pointer: fine) {

    .btn,
    .section-btn,
    .section-btn.light,
    .patreon-btn {
        position: relative !important;
        overflow: hidden !important;
        isolation: isolate !important;
        background:
            linear-gradient(135deg, #ff6a00 0%, #d93200 48%, #8f1200 100%) left center / 0% 100% no-repeat,
            linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%) center / 100% 100% no-repeat !important;
        transition:
            transform .28s var(--ease),
            box-shadow .28s var(--ease),
            color .28s var(--ease),
            background-size .48s var(--ease) !important;
    }

    .btn::after,
    .section-btn::after,
    .section-btn.light::after,
    .patreon-btn::after {
        content: "";
        position: absolute;
        top: -40%;
        bottom: -40%;
        left: -55%;
        width: 38%;
        z-index: 1;
        pointer-events: none;
        opacity: 0;
        transform: skewX(-18deg) translateX(0);
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, .38),
                transparent);
        transition:
            transform .62s var(--ease),
            opacity .28s var(--ease);
    }

    .btn:hover,
    .section-btn:hover,
    .section-btn.light:hover,
    .patreon-btn:hover {
        color: #ffffff !important;
        background-size: 100% 100%, 100% 100% !important;
        border-color: rgba(255, 255, 255, .20) !important;
        transform: translateY(-4px) !important;
        box-shadow:
            0 30px 58px rgba(0, 0, 0, .38),
            0 0 34px rgba(255, 90, 0, .22),
            inset 0 1px 0 rgba(255, 255, 255, .22) !important;
    }

    .btn:hover::after,
    .section-btn:hover::after,
    .section-btn.light:hover::after,
    .patreon-btn:hover::after {
        opacity: 1;
        transform: skewX(-18deg) translateX(520%);
    }

    .ghost {
        position: relative !important;
        overflow: hidden !important;
        isolation: isolate !important;
        border-radius: 18px;
        transition:
            transform .28s var(--ease),
            color .28s var(--ease),
            text-shadow .28s var(--ease) !important;
    }

    .ghost::before {
        content: "";
        position: absolute;
        inset: -7px -12px;
        z-index: -1;
        border-radius: inherit;
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left center;
        background: linear-gradient(135deg, #ff6a00 0%, #d93200 52%, #8f1200 100%);
        box-shadow: 0 20px 42px rgba(225, 51, 0, .28);
        transition:
            transform .48s var(--ease),
            opacity .28s var(--ease);
    }

    .ghost::after {
        content: "";
        position: absolute;
        top: -60%;
        bottom: -60%;
        left: -50%;
        width: 34%;
        z-index: 0;
        pointer-events: none;
        opacity: 0;
        transform: skewX(-18deg) translateX(0);
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, .34),
                transparent);
        transition:
            transform .62s var(--ease),
            opacity .28s var(--ease);
    }

    .ghost:hover {
        color: #ffffff !important;
        transform: translateY(-3px) !important;
        text-shadow: 0 8px 20px rgba(0, 0, 0, .28);
    }

    .ghost:hover::before {
        opacity: 1;
        transform: scaleX(1);
    }

    .ghost:hover::after {
        opacity: 1;
        transform: skewX(-18deg) translateX(520%);
    }

    .ghost img {
        position: relative;
        z-index: 1;
    }
}

@media (prefers-reduced-motion: reduce) {

    .btn,
    .ghost,
    .section-btn,
    .section-btn.light,
    .patreon-btn {
        transition: none !important;
    }

    .btn::after,
    .ghost::before,
    .ghost::after,
    .section-btn::after,
    .section-btn.light::after,
    .patreon-btn::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Hover de botones */

@media (hover: hover) and (pointer: fine) {

    .btn,
    .section-btn,
    .section-btn.light,
    .patreon-btn {
        position: relative !important;
        overflow: hidden !important;
        isolation: isolate !important;
        color: #080808 !important;
        background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%) !important;
        transition:
            transform .28s var(--ease),
            box-shadow .28s var(--ease),
            color .18s ease .16s !important;
    }

    .btn::before,
    .section-btn::before,
    .section-btn.light::before,
    .patreon-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        border-radius: inherit;
        background: linear-gradient(135deg, #ff6a00 0%, #d93200 52%, #8f1200 100%);
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform .46s var(--ease);
    }

    .btn::after,
    .section-btn::after,
    .section-btn.light::after,
    .patreon-btn::after {
        content: "";
        position: absolute;
        top: -45%;
        bottom: -45%;
        left: -48%;
        width: 32%;
        z-index: 2;
        pointer-events: none;
        opacity: 0;
        transform: skewX(-18deg) translateX(0);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
        transition:
            transform .62s var(--ease),
            opacity .22s var(--ease);
    }

    .btn>.btn-reveal-label,
    .section-btn>.btn-reveal-label,
    .section-btn.light>.btn-reveal-label,
    .patreon-btn>.btn-reveal-label,
    .ghost>.btn-reveal-label {
        position: relative;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: max-content;
        max-width: 100%;
        pointer-events: none;
    }

    .btn:hover,
    .section-btn:hover,
    .section-btn.light:hover,
    .patreon-btn:hover {
        color: #ffffff !important;
        background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%) !important;
        border-color: rgba(255, 255, 255, .20) !important;
        transform: translateY(-4px) !important;
        box-shadow:
            0 30px 58px rgba(0, 0, 0, .38),
            0 0 34px rgba(255, 90, 0, .22),
            inset 0 1px 0 rgba(255, 255, 255, .22) !important;
    }

    .btn:hover::before,
    .section-btn:hover::before,
    .section-btn.light:hover::before,
    .patreon-btn:hover::before {
        transform: scaleX(1);
    }

    .btn:hover::after,
    .section-btn:hover::after,
    .section-btn.light:hover::after,
    .patreon-btn:hover::after {
        opacity: 1;
        transform: skewX(-18deg) translateX(520%);
    }

    .ghost {
        position: relative !important;
        overflow: hidden !important;
        isolation: isolate !important;
        border-radius: 18px;
        transition:
            transform .28s var(--ease),
            color .20s var(--ease),
            text-shadow .28s var(--ease) !important;
    }

    .ghost::before {
        content: "";
        position: absolute;
        inset: -7px -12px;
        z-index: 1;
        pointer-events: none;
        border-radius: inherit;
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left center;
        background: linear-gradient(135deg, #ff6a00 0%, #d93200 52%, #8f1200 100%);
        box-shadow: 0 20px 42px rgba(225, 51, 0, .28);
        transition:
            transform .46s var(--ease),
            opacity .22s var(--ease);
    }

    .ghost::after {
        content: "";
        position: absolute;
        top: -60%;
        bottom: -60%;
        left: -50%;
        width: 34%;
        z-index: 2;
        pointer-events: none;
        opacity: 0;
        transform: skewX(-18deg) translateX(0);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .30), transparent);
        transition:
            transform .62s var(--ease),
            opacity .22s var(--ease);
    }

    .ghost:hover {
        color: #ffffff !important;
        transform: translateY(-3px) !important;
        text-shadow: 0 8px 20px rgba(0, 0, 0, .28);
    }

    .ghost:hover::before {
        opacity: 1;
        transform: scaleX(1);
    }

    .ghost:hover::after {
        opacity: 1;
        transform: skewX(-18deg) translateX(520%);
    }

    .ghost img {
        position: relative;
        z-index: 4;
    }
}

/* Idiomas */

.topbar-tools {
    position: relative;
    z-index: 90;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 10px;
    overflow: visible;
}

.language-switcher {
    position: relative;
    flex: 0 0 auto;
    z-index: 95;
}

.language-toggle {
    height: 46px;
    min-width: 68px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .90);
    background: rgba(10, 10, 10, .68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 18px 44px rgba(0, 0, 0, .28);
    backdrop-filter: blur(15px);
    cursor: pointer;
    font-size: .82rem;
    font-weight: 950;
    letter-spacing: .08em;
    transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.language-toggle svg {
    width: 14px;
    height: 14px;
    opacity: .74;
    transition: transform .25s var(--ease);
}

.language-switcher.is-open .language-toggle,
.language-toggle:hover,
.language-toggle:focus-visible {
    color: #050505;
    background: #ffffff;
    border-color: rgba(255, 255, 255, .30);
    outline: none;
    transform: translateY(-1px);
}

.language-switcher.is-open .language-toggle svg {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 174px;
    display: grid;
    gap: 6px;
    padding: 9px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, rgba(14, 14, 14, .97), rgba(7, 7, 7, .93));
    box-shadow: 0 26px 66px rgba(0, 0, 0, .50), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity .22s var(--ease), visibility .22s var(--ease), transform .22s var(--ease);
}

.language-switcher.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-menu button {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px;
    border: 0;
    border-radius: 14px;
    color: rgba(255, 255, 255, .82);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: .78rem;
    font-weight: 850;
    transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}

.language-menu button::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: transparent;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
    outline: none;
    color: #ffffff;
    background: rgba(255, 90, 0, .18);
    transform: translateX(1px);
}

.language-menu button.is-active::after {
    background: linear-gradient(180deg, var(--orange), var(--red));
    box-shadow: 0 0 14px rgba(255, 90, 0, .45);
}

.language-menu button img {
    width: 20px;
}

@media (max-width: 920px) {
    .topbar-tools {
        gap: 8px;
    }

    .language-toggle {
        min-width: 58px;
        height: 42px;
        padding-inline: 10px;
        font-size: .74rem;
    }

    .language-menu {
        width: 164px;
    }
}

@media (max-width: 620px) {
    .topbar {
        gap: 12px;
    }

    .topbar-tools {
        max-width: calc(100vw - 88px);
    }

    .topbar-tools .search {
        width: min(170px, 46vw);
    }

    .language-toggle {
        min-width: 52px;
    }
}

/* Idiomas */

.language-menu button::after {
    content: none !important;
    display: none !important;
}

.language-menu button .language-name {
    min-width: 0;
    flex: 1 1 auto;
}

.language-current-flag,
.language-menu button .language-flag,
.language-menu button img {
    flex: 0 0 auto;
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    margin-left: auto;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .22),
        0 8px 16px rgba(0, 0, 0, .22);
}

.language-current-flag {
    margin-left: 2px;
}

.language-toggle {
    min-width: 94px;
}

.language-menu button.is-active .language-flag,
.language-menu button.is-active img {
    box-shadow:
        0 0 0 2px rgba(255, 106, 0, .70),
        0 0 16px rgba(255, 90, 0, .38);
}

@media (max-width: 760px) {
    .landing {
        min-height: auto;
        overflow: visible;
    }

    .fusgo {
        display: grid;
        grid-template-rows: auto auto auto;
        min-height: auto !important;
        overflow: hidden;
        padding-bottom: 46px;
    }

    .topbar {
        grid-row: 1;
        height: auto;
        min-height: 78px;
        padding: 18px 18px 0;
        align-items: flex-start;
    }

    .topbar-tools {
        max-width: calc(100vw - 92px);
    }

    .topbar-tools .search {
        width: min(210px, 47vw);
    }

    .language-toggle {
        min-width: 76px;
        height: 42px;
        padding-inline: 9px;
    }

    .language-current-flag {
        width: 21px;
        height: 14px;
    }

    .language-menu {
        width: min(190px, 78vw);
    }

    .person {
        grid-row: 2;
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        justify-self: center;
        width: min(420px, 78vw) !important;
        min-width: 0 !important;
        margin: 4px auto 0;
        opacity: 1;
        transform: none !important;
        z-index: 16;
        filter:
            drop-shadow(0 24px 28px rgba(0, 0, 0, .50)) saturate(1.04) contrast(1.03);
    }

    .person::before {
        width: 92%;
        height: 52%;
        right: 4%;
        bottom: 4%;
        opacity: .55;
    }

    .copy {
        grid-row: 3;
        width: 100% !important;
        max-width: none;
        padding: 20px 24px 0 !important;
        text-align: left;
        z-index: 18;
    }

    .ribbon {
        margin-top: 0;
        margin-bottom: 18px;
    }

    h1 {
        max-width: 100%;
    }

    .lead {
        max-width: 100%;
        margin-top: 22px;
    }

    .actions {
        width: 100%;
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .btn,
    .ghost {
        width: 100%;
        max-width: none;
        justify-content: center;
    }

    .ghost {
        min-height: 54px;
        padding: 0 22px;
        border-radius: 16px;
        background: rgba(0, 0, 0, .22);
        border: 1px solid rgba(255, 255, 255, .13);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .badge {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding-inline: 16px;
        gap: 10px;
    }

    .topbar-tools {
        gap: 8px;
        max-width: calc(100vw - 82px);
    }

    .topbar-tools .search {
        width: min(184px, 44vw);
    }

    .search input {
        font-size: .78rem;
    }

    .language-toggle {
        min-width: 70px;
        gap: 5px;
        padding-inline: 8px;
        font-size: .72rem;
    }

    .language-current-flag {
        width: 19px;
        height: 13px;
    }

    .person {
        width: min(360px, 82vw) !important;
        margin-top: 0;
    }

    .copy {
        padding-inline: 20px !important;
    }

    .ribbon {
        font-size: .96rem;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4.45rem);
    }

    .lead {
        font-size: .86rem;
        line-height: 1.65;
    }
}

/* Responsive móvil */

@media (max-width: 760px) {
    .landing {
        min-height: auto !important;
        overflow: visible !important;
    }

    .fusgo {
        display: grid !important;
        grid-template-rows: auto auto auto !important;
        min-height: auto !important;
        overflow: hidden !important;
        padding-bottom: 0 !important;
    }

    .topbar {
        grid-row: 1 !important;
        height: auto !important;
        min-height: 78px !important;
        padding: 18px 18px 0 !important;
        align-items: flex-start !important;
    }

    .copy {
        grid-row: 2 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 28px 24px 0 !important;
        text-align: left !important;
        z-index: 20 !important;
    }

    .ribbon {
        margin-top: 0 !important;
        margin-bottom: 18px !important;
    }

    h1 {
        max-width: 100% !important;
    }

    .lead {
        max-width: 100% !important;
        margin-top: 22px !important;
    }

    .actions {
        width: 100% !important;
        margin-top: 28px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 14px !important;
    }

    .btn,
    .ghost {
        width: 100% !important;
        max-width: none !important;
        justify-content: center !important;
    }

    .ghost {
        min-height: 54px !important;
        padding: 0 22px !important;
        border-radius: 16px !important;
        background: rgba(0, 0, 0, .22) !important;
        border: 1px solid rgba(255, 255, 255, .13) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    }

    .person {
        grid-row: 3 !important;
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        justify-self: center !important;
        align-self: end !important;
        width: min(440px, 84vw) !important;
        min-width: 0 !important;
        margin: 28px auto 0 !important;
        opacity: 1 !important;
        transform: none !important;
        z-index: 16 !important;
        filter:
            drop-shadow(0 24px 28px rgba(0, 0, 0, .50)) saturate(1.04) contrast(1.03) !important;
    }

    .person img {
        width: 100% !important;
        height: auto !important;
    }

    .person::before {
        width: 92% !important;
        height: 52% !important;
        right: 4% !important;
        bottom: 4% !important;
        opacity: .55 !important;
    }

    .badge {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding-inline: 16px !important;
        gap: 10px !important;
    }

    .topbar-tools {
        gap: 8px !important;
        max-width: calc(100vw - 82px) !important;
    }

    .topbar-tools .search {
        width: min(184px, 44vw) !important;
    }

    .copy {
        padding: 24px 20px 0 !important;
    }

    .person {
        width: min(390px, 88vw) !important;
        margin-top: 24px !important;
    }
}

/* Paleta amarilla */

:root {
    --section-cyan: #ffe6b0;
    --section-yellow: #ffd576;
    --section-yellow-soft: #fff1d6;
    --section-yellow-pale: #fff5e6;
}

/* Paleta amarilla */

.content-section:not(.is-soft)::before,
.about-section::before,
.categories-section::after,
.spotify-section::before {
    background: rgba(255, 213, 118, .30) !important;
}

.content-section:not(.is-soft)::after,
.about-section::after {
    background: rgba(255, 213, 118, .16) !important;
}

.blob.cyan {
    background: linear-gradient(135deg, #fff1d6 0%, #ffe6b0 52%, #ffd576 100%) !important;
    opacity: .88 !important;
}

.dot-d {
    background: linear-gradient(135deg, #fff1d6 0%, #ffd576 100%) !important;
    color: #160d0d !important;
}

.art-icon.alt {
    background: linear-gradient(135deg, #ffe6b0, #ffd576) !important;
    color: #160d0d !important;
}

/* Acerca de */

.about-section::before {
    background: rgba(255, 213, 118, .30) !important;
}

.about-section::after {
    background: rgba(255, 82, 60, .20) !important;
    box-shadow: 0 22px 55px rgba(255, 82, 60, .08);
}

/* Acerca de */

.about-creative {
    min-height: 760px;
    isolation: isolate;
    background:
        radial-gradient(circle at 83% 16%, rgba(255, 213, 118, .34), transparent 31%),
        radial-gradient(circle at 84% 82%, rgba(255, 82, 60, .12), transparent 22%),
        linear-gradient(135deg, #fffaf3 0%, #ffffff 47%, #fff4df 100%);
}

.about-creative::before {
    width: min(48vw, 720px) !important;
    height: min(48vw, 720px) !important;
    min-width: 420px !important;
    min-height: 420px !important;
    right: -15vw !important;
    top: -18vw !important;
    border-radius: 49% 51% 45% 55% / 52% 44% 56% 48% !important;
    background: rgba(255, 213, 118, .34) !important;
}

.about-creative::after {
    width: clamp(140px, 15vw, 235px) !important;
    height: clamp(140px, 15vw, 235px) !important;
    right: clamp(28px, 12vw, 210px) !important;
    bottom: clamp(34px, 7vw, 110px) !important;
    border-radius: 50% !important;
    background: rgba(255, 82, 60, .20) !important;
    box-shadow: 0 26px 70px rgba(255, 82, 60, .12) !important;
}

.about-orbit {
    position: absolute;
    z-index: 0;
    width: min(44vw, 560px);
    height: min(44vw, 560px);
    left: clamp(-180px, -9vw, -70px);
    bottom: -160px;
    border: 1px dashed rgba(255, 90, 0, .22);
    border-radius: 999px;
    transform: rotate(-18deg);
}

.about-orbit::before,
.about-orbit::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6a00, #ff5240);
    box-shadow: 0 18px 34px rgba(255, 82, 60, .18);
}

.about-orbit::before {
    width: 20px;
    height: 20px;
    top: 22%;
    right: 8%;
}

.about-orbit::after {
    width: 34px;
    height: 34px;
    left: 16%;
    bottom: 18%;
    background: linear-gradient(135deg, #ffd576, #fff1d6);
}

.about-noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .34;
    background-image:
        linear-gradient(rgba(8, 45, 58, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 45, 58, .045) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(90deg, #000 0 55%, transparent 92%);
}

.about-story-grid {
    width: min(1260px, 100%);
    grid-template-columns: minmax(360px, 1.05fr) minmax(320px, .95fr);
    gap: clamp(44px, 6.5vw, 104px);
}

.about-showcase {
    min-height: clamp(430px, 43vw, 620px);
    display: grid;
    place-items: center;
    perspective: 1100px;
}

.about-photo-frame {
    position: relative;
    width: min(600px, 100%);
    padding: clamp(12px, 1.5vw, 18px);
    overflow: hidden;
    border-radius: clamp(30px, 3.2vw, 46px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .03)),
        #d64220;
    box-shadow:
        0 34px 80px rgba(8, 45, 58, .18),
        0 18px 0 rgba(255, 213, 118, .30),
        inset 0 1px 0 rgba(255, 255, 255, .22);
    transform: rotate(-2.2deg) translateZ(0);
}

.about-photo-frame::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 2;
    pointer-events: none;
    border-radius: clamp(22px, 2.4vw, 34px);
    border: 1px solid rgba(255, 255, 255, .20);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18);
}

.about-photo-frame img {
    width: 100%;
    height: clamp(420px, 41vw, 560px);
    object-fit: cover;
    object-position: center;
    border-radius: clamp(22px, 2.4vw, 34px);
    filter: saturate(1.08) contrast(1.04) sepia(.04);
}

.photo-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 33%, rgba(255, 255, 255, .18) 45%, transparent 58%),
        radial-gradient(circle at 10% 12%, rgba(255, 213, 118, .18), transparent 35%);
    mix-blend-mode: screen;
}

.about-case-tag {
    position: absolute;
    top: clamp(24px, 3vw, 38px);
    left: clamp(24px, 3vw, 40px);
    z-index: 4;
    display: inline-grid;
    gap: 3px;
    padding: 11px 15px;
    border-radius: 16px;
    color: #fff;
    background: rgba(8, 8, 8, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.about-case-tag span {
    color: rgba(255, 255, 255, .68);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 850;
}

.about-case-tag strong {
    font-size: .94rem;
    letter-spacing: .08em;
    font-weight: 950;
}

.about-tape {
    position: absolute;
    z-index: 5;
    width: 118px;
    height: 34px;
    border-radius: 6px;
    background: rgba(255, 213, 118, .72);
    box-shadow: 0 12px 24px rgba(255, 213, 118, .18);
    mix-blend-mode: screen;
}

.tape-one {
    top: 8px;
    right: 62px;
    transform: rotate(8deg);
}

.tape-two {
    left: 48px;
    bottom: 14px;
    transform: rotate(-10deg);
    background: rgba(255, 82, 60, .28);
    box-shadow: 0 12px 24px rgba(255, 82, 60, .13);
}

.evidence-card-one {
    left: clamp(-18px, -1vw, 10px);
    bottom: clamp(28px, 4vw, 70px);
    transform: rotate(2.4deg);
}

.evidence-card-two {
    right: clamp(-22px, -1.4vw, 8px);
    top: clamp(48px, 7vw, 94px);
    transform: rotate(-2deg);
}

.about-copy {
    position: relative;
    padding: clamp(18px, 2vw, 32px) 0;
}

.about-copy .section-kicker {
    margin-bottom: 16px;
}

.about-copy .section-title {
    max-width: 680px;
    margin-bottom: 24px;
    color: #171113;
    text-shadow: 0 14px 34px rgba(255, 213, 118, .18);
}

.about-copy p {
    max-width: 670px;
    font-size: clamp(1rem, 1.1vw, 1.11rem);
    line-height: 1.76;
}

.about-highlight {
    position: relative;
    max-width: 670px;
    margin-top: 30px;
    padding: 22px 24px 22px 26px;
    overflow: hidden;
    border-radius: 28px;
    color: #000;
    box-shadow: 0 24px 55px rgba(23, 17, 19, .18);
}

.about-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd576, #ff5240);
}

.about-highlight span {
    display: block;
    margin-bottom: 8px;
    color: var(--section-orange);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 950;
}

.about-highlight strong {
    display: block;
    max-width: 560px;
    font-size: clamp(1.04rem, 1.3vw, 1.28rem);
    line-height: 1.42;
    font-weight: 900;
}

@media (max-width: 980px) {
    .about-creative {
        min-height: auto;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-copy {
        order: 1;
    }

    .about-showcase {
        order: 2;
        min-height: 560px;
    }

    .about-photo-frame {
        width: min(620px, 92vw);
    }

    .about-photo-frame img {
        height: min(560px, 88vw);
    }
}

@media (max-width: 680px) {
    .about-creative {
        padding-top: 68px;
        padding-bottom: 78px;
    }

    .about-showcase {
        min-height: 510px;
    }

    .evidence-card-one {
        left: 6px;
        bottom: 8px;
    }

    .evidence-card-two {
        right: 6px;
        top: 28px;
    }
}

@media (max-width: 460px) {
    .about-showcase {
        min-height: 455px;
    }

    .about-photo-frame {
        border-radius: 30px;
        transform: rotate(-1deg);
    }

    .about-photo-frame img {
        height: 390px;
    }

    .about-case-tag {
        top: 22px;
        left: 22px;
    }

    .about-tape {
        width: 82px;
        height: 26px;
    }

    .about-highlight {
        padding: 20px 20px 20px 22px;
        border-radius: 22px;
    }
}

/* Categorías */

.categories-section {
    padding-top: clamp(86px, 9vw, 130px) !important;
    padding-bottom: clamp(92px, 9vw, 148px) !important;
}

.categories-section .cards-grid {
    width: min(1390px, calc(100% - clamp(32px, 7vw, 164px)));
}

.category-showcase {
    position: relative;
    z-index: 3;
    margin-top: clamp(40px, 5vw, 68px);
}

.category-showcase-track {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 34px);
    align-items: stretch;
}

.category-slide {
    min-width: 0;
    list-style: none;
}

.category-slide-card {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(315px, 23.7vw, 414px);
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: clamp(26px, 2.2vw, 34px);
    color: #ffffff;
    text-decoration: none;
    background:
        radial-gradient(circle at 70% 16%, rgba(255, 106, 0, .18), transparent 36%),
        #120706;
    border: 1px solid rgba(33, 24, 23, .12);
    box-shadow: 0 28px 68px rgba(58, 7, 5, .14);
    isolation: isolate;
    transform: translateZ(0);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.category-slide-card::before,
.category-slide-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.category-slide-card::before {
    z-index: 2;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 106, 0, .20), transparent 30%),
        linear-gradient(135deg, rgba(255, 90, 0, .10), transparent 48%);
    mix-blend-mode: screen;
    opacity: .62;
}

.category-slide-card::after {
    z-index: 3;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .00) 0%, rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .88) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .02) 56%);
}

.category-slide-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 106, 0, .22);
    box-shadow: 0 38px 86px rgba(255, 90, 0, .18);
}

.category-slide-card img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    background: #120706;
    filter: saturate(1.04) contrast(1.04);
    transform: scale(1.001);
    transition: transform .45s var(--ease), filter .45s var(--ease);
}

/* Ajuste de imágenes */

.category-slide:nth-child(1) .category-slide-card img {
    object-position: center center;
}

.category-slide:nth-child(2) .category-slide-card img {
    object-position: center center;
}

.category-slide:nth-child(3) .category-slide-card img {
    object-position: 62% center;
}

.category-slide-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.1) contrast(1.06);
}

.category-slide-content {
    position: absolute;
    left: clamp(22px, 2.2vw, 32px);
    right: clamp(22px, 2.2vw, 32px);
    bottom: clamp(22px, 2.2vw, 32px);
    z-index: 5;
    display: grid;
    gap: 10px;
}

.category-slide-content strong {
    display: block;
    color: #ffffff;
    font-size: clamp(1.18rem, 1.55vw, 1.72rem);
    line-height: 1.04;
    letter-spacing: -.025em;
    font-weight: 950;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .70);
}

.category-slide-content p {
    max-width: 92%;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(.78rem, .92vw, .95rem);
    line-height: 1.42;
    font-weight: 750;
    text-shadow: 0 8px 20px rgba(0, 0, 0, .62);
}

@media (max-width: 1180px) {
    .categories-section .cards-grid {
        width: min(980px, calc(100% - 42px));
    }

    .category-showcase-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .category-slide-card {
        height: clamp(270px, 27vw, 330px);
    }
}

@media (max-width: 920px) {
    .categories-section .cards-grid {
        width: min(680px, calc(100% - 36px));
    }

    .category-showcase-track {
        grid-template-columns: 1fr;
    }

    .category-slide-card {
        height: clamp(300px, 56vw, 390px);
        border-radius: 28px;
    }
}

@media (max-width: 620px) {
    .category-showcase {
        margin-top: 30px;
    }

    .categories-section .cards-grid {
        width: min(100%, calc(100% - 28px));
    }

    .category-slide-card {
        height: clamp(265px, 72vw, 335px);
        border-radius: 24px;
    }

    .category-slide-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .category-slide-content p {
        max-width: 100%;
        font-size: .74rem;
    }
}



/* Miniaturas tipo episodio */
.category-showcase-track {
    gap: clamp(22px, 2.6vw, 38px);
}

.category-slide-card {
    height: clamp(300px, 22.7vw, 365px) !important;
    min-height: 300px !important;
    aspect-ratio: auto !important;
    background: #080403;
    border-radius: clamp(28px, 2vw, 34px);
    box-shadow: 0 26px 70px rgba(65, 14, 8, .14);
}

.category-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
    background: #080403;
    transform: scale(1.02) !important;
}

.category-slide:nth-child(1) .category-slide-card img {
    object-position: center 42% !important;
}

.category-slide:nth-child(2) .category-slide-card img {
    object-position: center 46% !important;
}

.category-slide:nth-child(3) .category-slide-card img {
    object-position: 58% center !important;
}

.category-slide-card:hover img {
    transform: scale(1.06) !important;
    filter: saturate(1.08) contrast(1.05);
}

.category-slide-card::before {
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02) 0%, rgba(0, 0, 0, .05) 42%, rgba(0, 0, 0, .48) 72%, rgba(0, 0, 0, .90) 100%);
    mix-blend-mode: normal;
    opacity: 1;
}

.category-slide-card::after {
    z-index: 3;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .06) 54%, rgba(0, 0, 0, .18) 100%);
    opacity: .92;
}

.category-slide-content {
    left: clamp(22px, 2vw, 30px);
    right: clamp(22px, 2vw, 30px);
    bottom: clamp(26px, 2.1vw, 34px);
    max-width: 86%;
    gap: 9px;
}

.category-slide-content strong {
    font-size: clamp(1.35rem, 1.7vw, 1.85rem);
    line-height: .98;
    max-width: 96%;
}

.category-slide-content p {
    max-width: 88%;
    font-size: clamp(.84rem, .94vw, 1rem);
    line-height: 1.34;
}

@media (max-width: 1180px) {
    .category-slide-card {
        height: clamp(260px, 25vw, 315px) !important;
        min-height: 260px !important;
    }

    .category-slide-content {
        max-width: 92%;
    }
}

@media (max-width: 920px) {
    .category-slide-card {
        height: clamp(310px, 56vw, 410px) !important;
        min-height: 310px !important;
    }

    .category-slide-content {
        max-width: 88%;
    }
}

@media (max-width: 620px) {
    .category-slide-card {
        height: clamp(270px, 72vw, 350px) !important;
        min-height: 270px !important;
    }

    .category-slide-content {
        left: 20px;
        right: 20px;
        bottom: 22px;
        max-width: calc(100% - 40px);
    }

    .category-slide-content strong {
        font-size: clamp(1.14rem, 7vw, 1.5rem);
    }

    .category-slide-content p {
        max-width: 94%;
        font-size: .76rem;
    }
}

/* Apoyo FUSGO actualizado: estilo integrado con sección Spotify */

.support-section {
    position: relative;
    min-height: auto;
    padding-top: clamp(92px, 10vw, 150px);
    padding-bottom: clamp(96px, 11vw, 160px);
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 106, 0, .22), transparent 30%),
        radial-gradient(circle at 84% 70%, rgba(80, 8, 4, .42), transparent 32%),
        linear-gradient(135deg, #d92b00 0%, #a71900 32%, #4b0704 66%, #120202 100%) !important;
    isolation: isolate;
}

.support-section::before {
    content: "";
    position: absolute;
    width: min(48vw, 720px);
    aspect-ratio: 1;
    left: clamp(-230px, -12vw, -90px);
    top: clamp(-120px, -8vw, -60px);
    z-index: 0;
    border-radius: 46% 54% 63% 37% / 45% 48% 52% 55%;
    background:
        radial-gradient(circle at 45% 45%, rgba(255, 222, 142, .62), rgba(255, 198, 82, .28) 45%, rgba(255, 122, 0, .14) 67%, transparent 78%);
    opacity: .92;
    pointer-events: none;
}

.support-section::after {
    content: "";
    position: absolute;
    width: min(24vw, 360px);
    aspect-ratio: 1;
    right: clamp(-120px, -5vw, -35px);
    bottom: clamp(20px, 6vw, 82px);
    z-index: 0;
    border-radius: 54% 46% 42% 58% / 48% 52% 48% 52%;
    background: rgba(255, 255, 255, .13);
    opacity: .42;
    pointer-events: none;
}

.support-soft-blob,
.support-soft-blob-two,
.support-soft-line {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.support-soft-blob {
    width: min(29vw, 440px);
    aspect-ratio: 1.18;
    left: clamp(130px, 17vw, 300px);
    top: clamp(130px, 15vw, 220px);
    border-radius: 52% 48% 61% 39% / 48% 54% 46% 52%;
    background: rgba(255, 223, 160, .44);
    transform: rotate(-13deg);
    opacity: .78;
}

.support-soft-blob-two {
    width: min(21vw, 330px);
    aspect-ratio: 1.2;
    left: clamp(360px, 42vw, 760px);
    bottom: clamp(70px, 8vw, 130px);
    border-radius: 54% 46% 45% 55% / 55% 44% 56% 45%;
    background: rgba(255, 90, 0, .46);
    transform: rotate(9deg);
    opacity: .82;
}

.support-soft-line {
    width: min(54vw, 860px);
    height: 1px;
    left: 6%;
    bottom: 11%;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 120, .42), transparent);
    transform: rotate(-6deg);
    opacity: .65;
}

.support-panel {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, .92fr) minmax(0, 1fr) !important;
    gap: clamp(42px, 7vw, 100px);
    align-items: center;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.support-panel::before,
.support-panel::after {
    display: none !important;
}

.support-copy {
    position: relative;
    z-index: 3;
    align-self: center;
    order: 2;
}

.support-copy .section-kicker {
    color: rgba(255, 255, 255, .88) !important;
    text-shadow: none;
}

.support-copy .section-kicker::before {
    background: linear-gradient(90deg, #fff3df, #ff6a00);
    box-shadow: 0 10px 24px rgba(255, 255, 255, .18);
}

.support-copy .section-title {
    max-width: 680px;
    margin-bottom: 24px !important;
    color: #ffffff !important;
    font-size: clamp(3.1rem, 5.4vw, 6.4rem);
    line-height: .88;
    letter-spacing: -.06em;
    text-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.support-copy .section-title em {
    display: block;
    color: rgba(255, 255, 255, .78) !important;
    font-style: italic;
    text-shadow: none;
}

.support-copy .muted {
    max-width: 650px;
    margin-bottom: 22px !important;
    color: rgba(255, 255, 255, .86) !important;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.72;
    font-weight: 650;
}

.support-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin: 30px 0 34px;
}

.support-mini-card {
    min-height: 102px;
    padding: 18px;
    display: grid;
    align-content: start;
    border-radius: 26px;
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 18px 42px rgba(0, 0, 0, .10);
    backdrop-filter: blur(10px);
}

.support-mini-card i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 12px;
    color: #120202;
    background: #ffffff;
    font-style: normal;
    font-size: .74rem;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
}

.support-mini-card strong {
    display: block;
    color: #ffffff;
    font-size: .86rem;
    line-height: 1.2;
    font-weight: 950;
}

.support-mini-card span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: .74rem;
    line-height: 1.42;
    font-weight: 650;
}

.support-copy .section-actions {
    margin-top: 0;
}

.patreon-btn {
    min-width: 214px;
    min-height: 58px;
    padding: 0 30px;
    border: 0 !important;
    border-radius: 18px !important;
    color: #120202 !important;
    background: linear-gradient(180deg, #ffffff, #f1f1f1) !important;
    box-shadow: 0 22px 44px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .88) !important;
    font-size: .94rem;
    font-weight: 950;
    letter-spacing: -.01em;
}

.patreon-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 58px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .88) !important;
}

.support-case-card {
    position: relative;
    z-index: 3;
    order: 1;
    width: min(440px, 100%);
    min-height: 420px;
    justify-self: center;
    display: grid;
    place-items: center;
    padding: clamp(22px, 3vw, 34px);
    overflow: visible;
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 14%, rgba(255, 106, 0, .30), transparent 34%),
        linear-gradient(135deg, rgba(10, 10, 10, .96), rgba(18, 18, 18, .88));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .30);
    transform: rotate(-4deg);
}

.support-case-card::before {
    content: "";
    position: absolute;
    width: 124px;
    height: 124px;
    right: -42px;
    top: -42px;
    border-radius: 32px;
    background: linear-gradient(180deg, #ff6a00, #d92b00);
    box-shadow: 0 24px 48px rgba(70, 8, 2, .28);
    transform: rotate(9deg);
    opacity: .95;
}

.support-case-card::after {
    content: "";
    position: absolute;
    inset: -12px;
    z-index: -1;
    border-radius: 42px;
    background: rgba(255, 255, 255, .10);
    transform: rotate(5deg);
    opacity: .58;
}

.support-case-screen {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1.12;
    display: grid;
    align-content: end;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .74)),
        #111111;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.support-case-screen img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transform: scale(1.02);
}

.support-case-overlay {
    position: relative;
    z-index: 2;
    padding: 22px;
}

.support-case-overlay span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #120202;
    background: #ffffff;
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 950;
}

.support-case-overlay strong {
    display: block;
    color: #ffffff;
    font-size: clamp(1.25rem, 2.2vw, 1.9rem);
    line-height: 1;
    font-weight: 950;
}

.support-case-overlay p {
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: .8rem;
    line-height: 1.45;
    font-weight: 650;
    text-align: left;
}

@media (max-width: 1080px) {
    .support-panel {
        grid-template-columns: 1fr !important;
    }

    .support-copy,
    .support-case-card {
        order: initial;
    }

    .support-copy {
        text-align: left;
    }

    .support-case-card {
        justify-self: start;
        transform: rotate(-2deg);
    }

    .support-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .support-section {
        padding-top: 76px;
        padding-bottom: 88px;
    }

    .support-copy .section-title {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .support-benefits {
        margin-block: 24px 28px;
    }

    .support-case-card {
        width: 100%;
        min-height: 340px;
        border-radius: 28px;
    }
}

@media (max-width: 520px) {
    .support-case-card {
        min-height: 310px;
        padding: 20px;
        transform: none;
    }

    .support-case-card::before {
        width: 82px;
        height: 82px;
        right: -26px;
        top: -26px;
    }

    .patreon-btn {
        width: 100%;
    }
}

/* Animaciones al hacer scroll */
:root {
    --reveal-ease: cubic-bezier(.22, .86, .22, 1);
}

html.reveal-enabled .scroll-reveal {
    opacity: 0;
    filter: blur(4px);
    transition:
        opacity .85s var(--reveal-ease),
        transform .85s var(--reveal-ease),
        filter .85s var(--reveal-ease);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform, filter;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

html.reveal-enabled .scroll-reveal[data-reveal="slide-up"] {
    transform: translate3d(0, 34px, 0);
}

html.reveal-enabled .scroll-reveal[data-reveal="slide-down"] {
    transform: translate3d(0, -30px, 0);
}

html.reveal-enabled .scroll-reveal[data-reveal="slide-left"] {
    transform: translate3d(44px, 0, 0);
}

html.reveal-enabled .scroll-reveal[data-reveal="slide-right"] {
    transform: translate3d(-44px, 0, 0);
}

html.reveal-enabled .scroll-reveal[data-reveal="zoom-in"] {
    transform: scale(.96);
}

html.reveal-enabled .scroll-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
}

html.reveal-enabled .scroll-reveal.is-visible[data-reveal="slide-up"],
html.reveal-enabled .scroll-reveal.is-visible[data-reveal="slide-down"],
html.reveal-enabled .scroll-reveal.is-visible[data-reveal="slide-left"],
html.reveal-enabled .scroll-reveal.is-visible[data-reveal="slide-right"],
html.reveal-enabled .scroll-reveal.is-visible[data-reveal="zoom-in"] {
    transform: translate3d(0, 0, 0) scale(1);
}

html.reveal-enabled .episode-card.scroll-reveal.is-visible:hover {
    transform: translateY(-8px);
}

html.reveal-enabled .platform-card.scroll-reveal.is-visible:hover {
    transform: translateY(-6px);
}

html.reveal-enabled .category-slide-card.scroll-reveal.is-visible:hover {
    transform: translateY(-8px) scale(1.01);
}

html.reveal-enabled .section-btn.scroll-reveal.is-visible:hover,
html.reveal-enabled .patreon-btn.scroll-reveal.is-visible:hover {
    transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
    html.reveal-enabled .scroll-reveal {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Responsive del hero */

/* Escritorio */
@media (min-width: 921px) {
    .landing {
        min-height: 100svh !important;
        grid-template-columns: var(--sidebar) minmax(0, 1fr) !important;
        overflow: hidden !important;
    }

    .fusgo {
        min-height: 100svh !important;
        overflow: hidden !important;
    }

    /* Barra superior: se mantiene arriba, pero sin ocupar altura excesiva. */
    .topbar {
        height: auto !important;
        min-height: clamp(82px, 10vh, 112px) !important;
        padding: clamp(24px, 4vh, 42px) clamp(28px, 4vw, 68px) 0 !important;
    }

    /* Bloque de texto: controla el ancho para que no invada la imagen. */
    .copy {
        width: min(700px, 52vw) !important;
        padding-left: clamp(58px, 6.8vw, 126px) !important;
        padding-top: clamp(72px, 9vh, 120px) !important;
        z-index: 20 !important;
    }

    .ribbon {
        margin-top: 0 !important;
        font-size: clamp(1.1rem, 1.9vw, 1.75rem) !important;
    }

    h1 {
        font-size: clamp(5rem, 6.9vw, 8.25rem) !important;
        line-height: .88 !important;
        letter-spacing: -.066em !important;
    }

    .lead {
        max-width: 650px !important;
        font-size: clamp(.9rem, 1vw, 1.05rem) !important;
    }

    .actions {
        margin-top: clamp(34px, 5vh, 48px) !important;
    }

    /* Imagen del presentador */
    .person {
        position: absolute !important;
        /* Ajuste fino del margen */
        right: clamp(-54px, -2.6vw, -12px) !important;
        bottom: clamp(-22px, -2vw, -6px) !important;
        width: clamp(510px, 39vw, 650px) !important;
        min-width: 0 !important;
        z-index: 16 !important;
        pointer-events: none !important;

        --follow-x: 0px;
        --follow-y: 0px;
        --person-drop: clamp(26px, 3vh, 46px);

        transform: translate3d(var(--follow-x),
                calc(var(--follow-y) + var(--person-drop)),
                0) !important;

        will-change: transform;
        backface-visibility: hidden;
    }

    /* Tarjeta de YouTube: se mantiene cerca del presentador. */
    .badge {
        right: clamp(250px, 27vw, 520px) !important;
        bottom: clamp(70px, 10vh, 116px) !important;
    }
}

/* Laptops medianas */
@media (min-width: 921px) and (max-width: 1440px) {
    .copy {
        width: min(630px, 51vw) !important;
        padding-left: clamp(50px, 6vw, 86px) !important;
        padding-top: clamp(68px, 8vh, 98px) !important;
    }

    h1 {
        font-size: clamp(4.5rem, 7vw, 6.8rem) !important;
    }

    .lead {
        max-width: 560px !important;
    }

    .person {
        /* Ajuste para laptops */
        right: clamp(-48px, -2.4vw, -12px) !important;
        width: clamp(500px, 38vw, 585px) !important;
    }

    .badge {
        right: clamp(230px, 25vw, 370px) !important;
    }
}

/* Tablets y móviles */
@media (max-width: 920px) {
    .landing {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .sidebar {
        height: auto !important;
        min-height: 84px !important;
        flex-direction: row !important;
        padding: 12px 18px !important;
    }

    .sidebar::before {
        inset: auto 0 0 0 !important;
        width: auto !important;
        height: 4px !important;
    }

    .brand {
        grid-template-columns: auto auto !important;
        align-items: center !important;
        text-align: left !important;
    }

    .brand-mark {
        width: 56px !important;
        border-radius: 18px !important;
    }

    .socials {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .socials a {
        margin: 0 !important;
    }

    .fusgo {
        display: grid !important;
        grid-template-rows: auto auto auto !important;
        min-height: auto !important;
        overflow: hidden !important;
        padding-bottom: 0 !important;
    }

    .topbar {
        grid-row: 1 !important;
        height: auto !important;
        min-height: 74px !important;
        padding: 16px 18px 0 !important;
        align-items: flex-start !important;
    }

    .copy {
        grid-row: 2 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 24px 22px 0 !important;
        text-align: left !important;
        z-index: 20 !important;
    }

    .ribbon {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
    }

    h1 {
        max-width: 100% !important;
        font-size: clamp(3.1rem, 12.5vw, 5.2rem) !important;
        line-height: .9 !important;
    }

    .lead {
        max-width: 100% !important;
        margin-top: 20px !important;
        line-height: 1.65 !important;
    }

    /* Botones en móvil: ancho completo para que se vean ordenados. */
    .actions {
        width: 100% !important;
        margin-top: 22px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    .btn,
    .ghost {
        width: 100% !important;
        max-width: none !important;
        justify-content: center !important;
    }

    .ghost {
        min-height: 54px !important;
        padding: 0 22px !important;
        border-radius: 16px !important;
        background: rgba(0, 0, 0, .22) !important;
        border: 1px solid rgba(255, 255, 255, .13) !important;
    }

    /* Imagen en móvil */
    .person {
        grid-row: 3 !important;
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        justify-self: center !important;
        align-self: end !important;
        width: min(430px, 88vw) !important;
        min-width: 0 !important;
        margin: 10px auto -8px !important;
        opacity: 1 !important;
        transform: none !important;
        z-index: 16 !important;
        filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .50)) saturate(1.04) contrast(1.03) !important;
    }

    .person img {
        width: 100% !important;
        height: auto !important;
    }

    /* En móvil se oculta para liberar espacio y evitar montajes visuales. */
    .badge {
        display: none !important;
    }
}

/* Celulares pequeños */
@media (max-width: 520px) {
    .sidebar {
        padding-inline: 14px !important;
    }

    .brand-mark {
        width: 52px !important;
    }

    .socials {
        gap: 5px !important;
    }

    .socials a {
        width: 29px !important;
        height: 29px !important;
    }

    .topbar {
        padding: 14px 16px 0 !important;
        gap: 10px !important;
    }

    .topbar-tools {
        gap: 8px !important;
        max-width: calc(100vw - 82px) !important;
    }

    .topbar-tools .search {
        width: min(184px, 44vw) !important;
    }

    .copy {
        padding: 20px 20px 0 !important;
    }

    .ribbon {
        font-size: .95rem !important;
    }

    h1 {
        font-size: clamp(3rem, 14.5vw, 4.35rem) !important;
    }

    .lead {
        font-size: .85rem !important;
    }

    .actions {
        margin-top: 20px !important;
        gap: 10px !important;
    }

    .person {
        width: min(390px, 92vw) !important;
        margin-top: 6px !important;
        margin-bottom: -10px !important;
    }
}

/* Celulares angostos */
@media (max-width: 380px) {
    .topbar-tools .search {
        width: min(160px, 42vw) !important;
    }

    .language-toggle {
        min-width: 64px !important;
    }

    .person {
        width: min(360px, 94vw) !important;
        margin-top: 4px !important;
    }
}

/* Menos movimiento */
@media (prefers-reduced-motion: reduce) {

    .person,
    .particle,
    .decor,
    .badge,
    .scroll-reveal {
        animation: none !important;
        transition: none !important;
    }
}

/* Ajuste final en PC */

@media (min-width: 921px) {
    .person {
        /* Margen del presentador */
        right: clamp(-30px, -1.6vw, 8px) !important;

        /* Altura del presentador */
        bottom: clamp(-12px, -1vw, 4px) !important;
        --person-drop: clamp(-4px, .7vh, 10px) !important;
    }

    .badge {
        /* Tarjeta de YouTube */
        right: clamp(265px, 28vw, 535px) !important;
    }
}

@media (min-width: 921px) and (max-width: 1440px) {
    .person {
        /* Ajuste para laptops */
        right: clamp(-26px, -1.35vw, 6px) !important;
        bottom: clamp(-10px, -.8vw, 5px) !important;
        --person-drop: clamp(-6px, .5vh, 8px) !important;
    }

    .badge {
        /* Placa ajustada */
        right: clamp(245px, 26vw, 385px) !important;
    }
}

/* Presentador en escritorio */

/* Pantallas de escritorio, laptops y PC */
@media (min-width: 921px) {
    .person {
        /* Separación lateral */
        right: clamp(24px, 2.4vw, 46px) !important;

        /* Base inferior */
        bottom: clamp(-28px, -2vw, -10px) !important;

        /* Bajada del presentador */
        --person-drop: clamp(40px, 5vh, 68px) !important;

        /* Movimiento conservado */
        transform: translate3d(var(--follow-x, 0px),
                calc(var(--follow-y, 0px) + var(--person-drop)),
                0) !important;
    }
}

/* Ajuste para laptops */
@media (min-width: 921px) and (max-width: 1440px) {
    .person {
        /* Ajuste para laptops */
        right: clamp(22px, 2.2vw, 36px) !important;
        bottom: clamp(-30px, -2.2vw, -12px) !important;
        --person-drop: clamp(46px, 5.4vh, 72px) !important;
    }
}

/* Ajuste suave para monitores grandes */
@media (min-width: 1441px) {
    .person {
        /* Monitores grandes */
        right: clamp(28px, 2vw, 58px) !important;
        --person-drop: clamp(38px, 4.6vh, 66px) !important;
    }
}


@media (min-width: 1141px) and (max-width: 1640px) {

    #inicio {
        margin-top: 40px;
    }

}


/* Rotación suave de la imagen de Acerca de */
.about-photo-frame img,
.about-case-tag strong {
    transition: opacity .65s var(--ease), transform .65s var(--ease), filter .65s var(--ease);
    will-change: opacity, transform, filter;
}

.about-photo-frame.is-changing img {
    opacity: 0;
    transform: scale(1.025);
    filter: saturate(1.08) contrast(1.04) sepia(.04) blur(4px);
}

.about-photo-frame.is-changing .about-case-tag strong {
    opacity: 0;
    transform: translateY(10px);
}

.about-photo-frame.is-clickable img {
    cursor: pointer;
}

.about-photo-frame.is-clickable:not(.is-changing) img:hover {
    transform: scale(1.012);
    filter: saturate(1.1) contrast(1.05) sepia(.04);
}