@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RalewayLocal';
    src: url('../fonts/Raleway-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RalewayLocal';
    src: url('../fonts/Raleway-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RalewayLocal';
    src: url('../fonts/Raleway-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/Coolvetica Rg.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --orange: #f15a24;
    --orange-dark: #b83a00;
    --orange-hover: #8a2c00;
    --orange-mid: #ff7a2f;
    --orange-soft: #ffb36b;
    --orange-pale: #ffe1cc;

    /* Mantengo --red como alias para no romper todo el CSS existente */
    --red: var(--orange);

    --dark: #141414;
    --gray: #f3f4f6;
    --text: #272727;
    --muted: #666;
    --white: #fff;
    --container: 1120px;
    --font-main: 'Raleway', Arial, Helvetica, sans-serif;
}

body,
button,
input,
textarea,
select,
a,
p,
span,
li,
label,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Raleway', Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

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

a {
    color: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

/* ============================= */
/* HEADER PRINCIPAL - NUEVO NAV */
/* ============================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(241, 241, 241, 0.96);
    border-bottom: 1px solid #e7e7e7;
    backdrop-filter: blur(10px);
}

.header-content {
    position: relative;
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
}

.header-menu {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 26px;
    width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 4;
}

.brand-logo {
    width: 96px;
    height: auto;
    object-fit: contain;
}

/* Links centrales */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    color: #111111;
    text-decoration: none;
    text-transform: none;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f15a24;
    border-color: #f15a24;
}

.main-nav a:hover {
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 8px;
    background: #f15a24;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    /*box-shadow: 0 10px 22px rgba(241, 90, 36, 0.20);*/
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.header-button:hover {
    background: #b83a00;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(184, 58, 0, 0.26);
}

/* Botón hamburguesa */

.menu-toggle {
    display: none;
    border: none;
    background: #f15a24;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 4;
}

/* ============================= */
/* RESPONSIVE HEADER */
/* ============================= */

@media (max-width: 1100px) {
    .main-nav {
        gap: 22px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .header-button {
        padding: 10px 13px;
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .header-content {
        min-height: 76px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .brand-logo {
        width: 86px;
    }

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

    .header-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        z-index: 20;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 12px;
        background: #ffffff;
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    }

    .header-menu.is-open {
        display: grid;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }

    .main-nav a {
        width: 100%;
        padding: 15px 16px;
        border-bottom: 1px solid #eeeeee;
        font-size: 15px;
        text-align: left;
    }

    .main-nav a.active,
    .main-nav a:hover {
        border-color: #eeeeee;
        color: #f15a24;
        transform: none;
    }

    .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 12px;
    }

    .header-button {
        width: 100%;
        min-height: 44px;
        font-size: 12px;
        border-radius: 10px;
    }
}

@media (max-width: 520px) {
    .header-content {
        min-height: 70px;
    }

    .brand-logo {
        width: 78px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 23px;
    }

    .header-menu {
        left: 12px;
        right: 12px;
        border-radius: 16px;
    }

    .header-actions {
        grid-template-columns: 1fr;
    }

    .main-nav a {
        padding: 14px;
        font-size: 14px;
    }

    .header-button {
        min-height: 42px;
    }
}

/* =========================================================
   HERO INICIO - CARRUSEL FULL WIDTH CON LOGO Y TEXTO
========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 800px;
    overflow: hidden;
    background: #111111;
}

.hero-slider__track {
    position: relative;
    width: 100%;
    min-height: 800px;
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    transition:
        opacity 0.9s ease,
        visibility 0.9s ease,
        transform 5s ease;
}

.hero-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Fondo */

.hero-slider__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Capa oscura para que se lea mejor el logo/texto */
.hero-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.36) 45%,
            rgba(0, 0, 0, 0.22) 100%
        );
}

/* Contenido encima */

.hero-slider__content {
    position: relative;
    z-index: 3;
    width: min(100% - 32px, 1120px);
    min-height: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 70px;
}

.hero-slider__logo {
    width: min(100%, 330px);
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.hero-slider__content h1 {
    margin: 0;
    color: #ffffff;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.6;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: -2px;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

/* Puntos inferiores */

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-slider__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.hero-slider__dots button.is-active {
    width: 34px;
    background: #f15a24;
}

/* Flechas laterales del hero */

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.92);
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.hero-slider__arrow:hover {
    background: #d94800;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.hero-slider__arrow--prev {
    left: 34px;
}

.hero-slider__arrow--next {
    right: 34px;
}

/* Tablet */

@media (max-width: 900px) {
    .hero-slider,
    .hero-slider__track {
        min-height: 560px;
    }

    .hero-slider__content {
        min-height: 560px;
        padding-bottom: 56px;
    }

    .hero-slider__logo {
        width: 230px;
        margin-bottom: 18px;
    }

    .hero-slider__content h1 {
        font-size: clamp(42px, 9vw, 68px);
    }

    .hero-slider__arrow {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .hero-slider__arrow--prev {
        left: 20px;
    }

    .hero-slider__arrow--next {
        right: 20px;
    }
}

/* Celular */

@media (max-width: 640px) {
    .hero-slider,
    .hero-slider__track {
        min-height: 430px;
    }

    .hero-slider__content {
        min-height: 430px;
        align-items: center;
        text-align: center;
        padding-bottom: 48px;
    }

    .hero-slider__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.48),
                rgba(0, 0, 0, 0.34)
            );
    }

    .hero-slider__logo {
        width: 170px;
        margin-bottom: 14px;
    }

    .hero-slider__content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-slider__dots {
        bottom: 16px;
    }

    .hero-slider__arrow {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .hero-slider__arrow--prev {
        left: 12px;
    }

    .hero-slider__arrow--next {
        right: 12px;
    }

    .hero-slider__dots {
        bottom: 14px;
    }
}

/* Celular pequeño */

@media (max-width: 420px) {
    .hero-slider,
    .hero-slider__track {
        min-height: 380px;
    }

    .hero-slider__content {
        min-height: 380px;
    }

    .hero-slider__logo {
        width: 145px;
    }

    .hero-slider__content h1 {
        font-size: 34px;
    }

    .hero-slider__arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .hero-slider__arrow--prev {
        left: 8px;
    }

    .hero-slider__arrow--next {
        right: 8px;
    }
}

/* =========================================================
   SECCIÓN YA TOKA
========================================================= */

.yatoka-section {
    position: relative;
    overflow: hidden;
    min-height: 900px;
    padding: 88px 0 110px;
    display: flex;
    align-items: center;
}

/* Fondo naranja curvo */
.yatoka-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: calc(100vw + 160px);
    height: 100%;
    transform: translateX(-50%);
    background-image: url('../images/web/yatoka/fondo-duo-ya-toka.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.yatoka-container {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 1080px);
    margin: 0 auto;
}

.yatoka-main {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    min-height: 560px;
}

/* Logo + texto */

.yatoka-brand {
    position: relative;
    z-index: 5;
    align-self: center;
    justify-self: center;
    text-align: left;
    transform: translate(150px, -28px);
}

.yatoka-logo {
    width: min(100%, 300px);
    height: auto;
}

.yatoka-brand h2 {
    margin: 0;
    color: #ffffff;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 3.5vw, 39px);
    line-height: 1;
    font-weight: 600;
}

/* Keiko + estrellas */

.yatoka-person {
    position: relative;
    z-index: 4;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.yatoka-star-white {
    position: absolute;
    left: -4px;
    top: 72px;
    z-index: 1;
    width: 155px;
    height: auto;
    pointer-events: none;

    animation: yatokaLogoRotateRev 8s linear infinite;
    transform-origin: center center;
}

@keyframes yatokaLogoRotateRev {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.yatoka-star {
    position: absolute;
    right: 190px;
    bottom: 140px;
    z-index: 1;
    width: 170px;
    height: auto;
    pointer-events: none;

    animation: yatokaLogoRotate 8s linear infinite;
    transform-origin: center center;
}

.yatoka-star-logo {
    position: absolute;
    right: 177px;
    bottom: 405px;
    z-index: 2;
    width: 130px;
    height: auto;
    pointer-events: none;
}

@keyframes yatokaLogoRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.yatoka-keiko-slider {
    position: relative;
    z-index: 3;
    width: min(100%, 430px);
    height: 535px;
    transform: translateX(-130px) scale(1);
    transform-origin: bottom center;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
    will-change: transform;
}

.yatoka-keiko {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: bottom center;
}

.yatoka-keiko-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.985);
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 0.8s ease;
}

.yatoka-keiko-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.yatoka-person:hover .yatoka-keiko-slider {
    transform: translateX(-130px) scale(1.08);
    filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.22));
}

/* Cuadro blanco */

.yatoka-message {
    position: relative;
    z-index: 6;
    width: min(100%, 620px);
    margin: -22px auto 0;
    padding: 34px 42px 52px;
    background: #ffffff;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.13);
}

.yatoka-message h3 {
    max-width: 520px;
    margin: 0 auto;
    color: #f15a24;
    font-size: clamp(44px, 4.6vw, 66px);
    font-family: Coolvetica, Arial, Helvetica, sans-serif;
    line-height: 0.9;
    font-weight: 900;
    text-transform: lowercase;
}

.yatoka-button {
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 54px;
    padding: 12px 28px;
    border-radius: 8px;
    background: #ff5a00;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.yatoka-button:hover {
    transform: translateX(-50%) translateY(-3px);
    background: #d94800;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* Tablet / iPad */
@media (max-width: 900px) {
    .yatoka-section {
        min-height: auto;
        padding: 58px 0 78px;
    }

    .yatoka-section::before {
        width: calc(100vw + 180px);
        height: 100%;
        background-size: 100% 100%;
        background-position: center top;
    }

    .yatoka-container {
        width: min(100% - 30px, 680px);
    }

    .yatoka-main {
        grid-template-columns: 0.9fr 1.1fr;
        min-height: 360px;
        align-items: center;
    }

    .yatoka-brand {
        justify-self: center;
        align-self: center;
        text-align: left;
        transform: translate(0, -10px);
    }

    .yatoka-logo {
        width: 170px;
        margin-bottom: 12px;
    }

    .yatoka-brand h2 {
        font-size: 22px;
        white-space: nowrap;
    }

    .yatoka-person {
        min-height: 360px;
        justify-content: center;
    }

    .yatoka-star-white {
        left: 18px;
        top: 34px;
        width: 92px;
    }

    .yatoka-star {
        right: -2px;
        bottom: 82px;
        width: 112px;
    }

    .yatoka-star-logo {
        right: 26px;
        bottom: 110px;
        width: 56px;
    }

    .yatoka-keiko-slider {
        width: min(100%, 285px);
        height: 350px;
        transform: translateX(-18px) scale(1);
    }

    .yatoka-person:hover .yatoka-keiko-slider {
        transform: translateX(-18px) scale(1.08);
    }

    .yatoka-message {
        width: min(100%, 460px);
        margin-top: -10px;
        padding: 24px 30px 40px;
    }

    .yatoka-message h3 {
        font-size: 34px;
    }

    .yatoka-button {
        min-width: 126px;
        min-height: 46px;
        bottom: -23px;
        font-size: 12px;
    }
}

/* Celular */
@media (max-width: 560px) {
    .yatoka-section {
        padding: 42px 0 70px;
    }

    .yatoka-section::before {
        width: calc(100vw + 210px);
        height: 520px;
        background-size: 100% 100%;
        background-position: center top;
    }

    .yatoka-container {
        width: min(100% - 24px, 390px);
    }

    .yatoka-main {
        grid-template-columns: 0.78fr 1.22fr;
        min-height: 285px;
    }

    .yatoka-brand {
        transform: translate(0, -6px);
    }

    .yatoka-logo {
        width: 130px;
        margin-bottom: 8px;
    }

    .yatoka-brand h2 {
        font-size: 18px;
    }

    .yatoka-person {
        min-height: 285px;
    }

    .yatoka-star-white {
        left: 0;
        top: 12px;
        width: 78px;
    }

    .yatoka-star {
        right: -12px;
        bottom: 56px;
        width: 88px;
    }

    .yatoka-star-logo {
        right: 10px;
        bottom: 78px;
        width: 44px;
    }

    .yatoka-keiko-slider {
        width: min(100%, 230px);
        height: 280px;
        transform: translateX(0) scale(1);
    }

    .yatoka-person:hover .yatoka-keiko-slider {
        transform: translateX(0) scale(1.035);
    }

    .yatoka-message {
        width: min(100%, 300px);
        margin-top: -8px;
        padding: 20px 20px 34px;
        border-radius: 16px;
    }

    .yatoka-message h3 {
        font-size: 28px;
    }

    .yatoka-button {
        min-width: 112px;
        min-height: 44px;
        bottom: -22px;
        font-size: 12px;
    }
}


/*-------------------------------*/

.hero-section {
    padding: 70px 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
        repeating-linear-gradient(90deg, #ffffff 0, #ffffff 18px, #f3f3f3 18px, #f3f3f3 20px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 52px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
}

.eyebrow-light {
    color: var(--white);
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -2px;
    font-weight: 900;
}

.hero-copy p,
.page-hero p {
    max-width: 620px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
    margin: 22px 0 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--dark);
    color: var(--dark);
}

.hero-image {
    background: var(--red);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.section-padding {
    padding: 72px 0;
}

.section-gray {
    background: var(--gray);
}

.intro-grid,
.cards-grid,
.gallery-grid,
.testimonials-grid,
.steps-grid {
    display: grid;
    gap: 22px;
}

.intro-grid {
    grid-template-columns: repeat(3, 1fr);
}

.intro-card,
.plan-card,
.testimonial-card,
.step-card,
.content-list article {
    background: var(--white);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.intro-card span,
.step-card span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-weight: 900;
    margin-bottom: 18px;
}

.intro-card h3,
.plan-card h2,
.step-card h2,
.content-list h3 {
    margin: 0 0 10px;
    color: var(--dark);
}

.intro-card p,
.plan-card p,
.step-card p,
.content-list p,
.testimonial-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.featured-section {
    background: var(--gray);
}

.featured-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    background: var(--white);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.featured-box h2,
.split-section h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1;
    color: var(--dark);
}

.featured-box p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 17px;
}

.featured-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 22px;
}

.page-hero {
    padding: 86px 0;
    background: var(--gray);
}

.page-hero-red {
    background: var(--red);
    color: var(--white);
}

.page-hero-red h1,
.page-hero-red p {
    color: var(--white);
}

.cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

.plan-card {
    padding: 0;
    overflow: hidden;
}

.plan-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.plan-card div {
    padding: 22px;
}

.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
}

.testimonials-grid,
.steps-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card p {
    font-size: 18px;
    margin-bottom: 18px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: var(--muted);
    margin-top: 4px;
}

.split-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
}

.content-list {
    display: grid;
    gap: 18px;
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 34px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-content p {
    margin: 8px 0 0;
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .hero-grid,
    .featured-box,
    .split-section {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .cards-grid,
    .gallery-grid,
    .testimonials-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-section,
    .page-hero,
    .section-padding {
        padding: 48px 0;
    }

    .intro-grid,
    .cards-grid,
    .gallery-grid,
    .testimonials-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .featured-box {
        padding: 22px;
    }

    .gallery-grid img,
    .featured-image img {
        height: 260px;
    }
}

/* ============================= */
/* SECCIÓN TU REGIÓN / MAPA PERÚ */
/* ============================= */

.region-section {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #ffffff;
}

.region-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../images/web/fondo-region.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: 0;
}

.region-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    z-index: 1;
}

.region-overlay {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.region-overlay {
    min-height: 820px;
    display: flex;
    align-items: center;
}

.region-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 48px;
}

.region-copy h2 {
    margin: 0 0 18px;
    color: #111111;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    font-weight: 500;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
}

.region-copy p {
    max-width: 520px;
    margin: 0;
    color: #555555;
    font-size: 20px;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    line-height: 1.5;
    font-weight: 600;
}

.region-map-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.peru-map {
    display: block;
    width: min(100%, 540px);
    height: auto;
    max-width: 100%;
}

/* Departamentos del SVG */
.map-department {
    fill: #f15a24 !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    cursor: pointer;
    pointer-events: all;
    transition: fill 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.map-department:nth-child(2n) {
    fill: #b83a00 !important;
}

.map-department:nth-child(3n) {
    fill: #ff7a2f !important;
}

.map-department:nth-child(4n) {
    fill: #ffb36b !important;
}

.map-department:hover {
    fill: #8a2c00 !important;
    filter: brightness(1.15);
    opacity: 0.95;
}

/* Tooltip del nombre del departamento */
.map-tooltip {
    position: fixed;
    z-index: 9999;
    display: none;
    padding: 8px 14px;
    background: #111111;
    color: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    pointer-events: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.map-tooltip.is-visible {
    display: block;
}

/* =========================================================
   MODAL REGIÓN - DISEÑO TIPO SECCIÓN
========================================================= */

.region-modal {
    position: fixed;
    inset: 0;
    z-index: 180;
    display: none;
}

.region-modal.is-active {
    display: block;
}

.region-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(2px);
}

.region-modal__content--wide {
    position: relative;
    width: min(100% - 32px, 1080px);
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
    padding: 58px 56px;
    background: #f1f1f1;
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
    animation: modalIn 0.25s ease;
}

/* Botón cerrar */

.region-modal__close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease;
}

.region-modal__close:hover {
    transform: scale(1.08);
    background: #b83a00;
}

/* Layout general */

.region-modal-layout {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    align-items: center;
    gap: 58px;
}

.region-modal-left {
    min-width: 0;
}

/* Textos izquierda */

.region-modal__label {
    display: inline-flex;
    margin-bottom: 14px;
    color: #f15a24;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.region-modal-left h2 {
    max-width: 480px;
    margin: 0 0 20px;
    color: #111111;
    font-size: clamp(42px, 5vw, 64px);
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -1.4px;
}

.region-modal-left p {
    max-width: 470px;
    margin: 0 0 30px;
    color: #666666;
    font-size: 17px;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    line-height: 1.55;
    font-weight: 700;
}

/* Imagen debajo del título */

.region-modal-image {
    width: min(100%, 460px);
    overflow: hidden;
    border-radius: 22px;
    background: #dddddd;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.15);
}

.region-modal-image img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.region-modal-image:hover img {
    transform: scale(1.045);
    filter: brightness(1.03);
}

/* Cards derecha */

.region-modal-cards {
    display: grid;
    gap: 18px;
}

.region-info-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px 26px;
    background: #e4e4e4;
    border-radius: 16px;
    border: 1px solid transparent;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.region-info-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: rgba(241, 90, 36, 0.18);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Iconos pequeños */

.region-info-card__icon {
    width: 15px;
    height: 15px;
    margin-top: 5px;
    background: #888888;
    flex-shrink: 0;
}

.region-info-card__icon--circle {
    border-radius: 50%;
}

.region-info-card__icon--diamond {
    transform: rotate(45deg);
}

.region-info-card__icon--triangle {
    width: 0;
    height: 0;
    margin-top: 6px;
    background: transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #888888;
}

/* Texto cards */

.region-info-card h3 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 22px;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    line-height: 1.1;
    font-weight: 500;
}

.region-info-card p {
    margin: 0;
    color: #666666;
    font-size: 15.5px;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    line-height: 1.5;
    font-weight: 600;
}

/* Tablet */

@media (max-width: 900px) {
    .region-modal__content--wide {
        padding: 56px 34px 38px;
    }

    .region-modal-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .region-modal-left {
        text-align: center;
    }

    .region-modal-left h2,
    .region-modal-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .region-modal-image {
        margin: 0 auto;
    }

    .region-modal-cards {
        width: min(100%, 640px);
        margin: 0 auto;
    }
}

/* Celular */

@media (max-width: 560px) {
    .region-modal__content--wide {
        width: calc(100% - 22px);
        max-height: 92vh;
        margin: 4vh auto;
        padding: 54px 20px 26px;
        border-radius: 18px;
    }

    .region-modal__close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .region-modal__label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .region-modal-left h2 {
        font-size: 34px;
        letter-spacing: -0.6px;
    }

    .region-modal-left p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 22px;
    }

    .region-modal-image {
        border-radius: 16px;
    }

    .region-modal-image img {
        height: 220px;
    }

    .region-modal-cards {
        gap: 14px;
    }

    .region-info-card {
        padding: 18px;
        border-radius: 14px;
        gap: 13px;
    }

    .region-info-card h3 {
        font-size: 19px;
    }

    .region-info-card p {
        font-size: 14.5px;
        font-weight: 500;
    }
}

/* ============================= */
/* TABLET HORIZONTAL */
/* ============================= */

@media (max-width: 1024px) {
    .region-section,
    .region-overlay {
        min-height: auto;
    }

    .region-overlay {
        padding: 72px 0;
    }

    .region-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .region-copy h2 {
        font-size: clamp(42px, 8vw, 64px);
    }

    .region-copy p {
        max-width: 680px;
        margin: 0 auto;
        font-size: 19px;
    }

    .region-map-wrapper {
        margin-top: 10px;
    }

    .peru-map {
        width: min(100%, 460px);
    }
}

/* ============================= */
/* TABLET VERTICAL */
/* ============================= */

@media (max-width: 768px) {
    .region-section,
    .region-overlay {
        min-height: auto;
    }

    .region-overlay {
        padding: 48px 0 56px;
    }

    .region-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .region-copy h2 {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .region-copy p {
        max-width: 330px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.45;
    }

    .region-map-wrapper {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .peru-map {
        width: 100% !important;
        max-width: 260px !important;
        height: auto !important;
    }
}

/* ============================= */
/* CELULAR */
/* ============================= */

@media (max-width: 520px) {
    .region-overlay {
        padding: 38px 0 46px;
    }

    .region-grid {
        gap: 22px;
    }

    .region-copy h2 {
        font-size: 36px;
    }

    .region-copy p {
        max-width: 300px;
        font-size: 14.5px;
    }

    .region-map-wrapper {
        max-width: 220px;
    }

    .peru-map {
        max-width: 220px !important;
    }
}

/* ============================= */
/* CELULAR PEQUEÑO */
/* ============================= */

@media (max-width: 390px) {
    .region-map-wrapper {
        max-width: 200px;
    }

    .peru-map {
        max-width: 200px !important;
    }

    .region-copy h2 {
        font-size: 34px;
    }

    .region-copy p {
        font-size: 14px;
    }
}

/* ============================= */
/* INICIO - CONOCE LO QUE YA TOKA */
/* ============================= */

.order-proposals-section {
    position: relative;
    overflow: hidden;
    background-color: #ef5f17;
    padding: 76px 0 86px;
}

/* Textura suave para que no se vea plano */
.order-proposals-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #ef5f17;
    pointer-events: none;
}

/* Línea superior para separar de la sección anterior */
.order-proposals-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: min(100% - 48px, 1120px);
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #ff5a00, transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.order-proposals-section > .container {
    position: relative;
    z-index: 1;
}

.order-proposals-header {
    margin-bottom: 34px;
}

.order-proposals-header h2 {
    margin: 0;
    color: #ffffff;
    text-align: center;
    font-size: clamp(42px, 6vw, 64px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -1.5px;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    text-shadow: 0 6px 18px rgba(120, 40, 0, 0.28);
}

/* Carrusel */

.order-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.order-carousel__viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.order-carousel__viewport.is-dragging {
    cursor: grabbing;
}

.order-carousel__track {
    display: flex;
    gap: 48px; /* separa una propuesta completa de la siguiente */
    width: max-content;
    transform: translate3d(0, 0, 0);
    transition: none !important;
    will-change: transform;
}

/* Cada slide del carrusel */

.order-card {
    flex: 0 0 790px;
    width: 790px;
    max-width: 790px;
    display: grid;
    grid-template-columns: 1.38fr 0.95fr;
    gap: 4px; /* acerca imagen + texto de la misma propuesta */
    align-items: stretch;
    min-height: 250px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

.order-card:visited,
.order-card:hover,
.order-card:focus {
    color: inherit;
    text-decoration: none;
}

.order-card:focus-visible {
    outline: 4px solid rgba(255, 255, 255, 0.65);
    outline-offset: 6px;
    border-radius: 28px;
}

/* Card imagen */

.order-card__media {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border-radius: 24px;
    background: #111111;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    isolation: isolate;
}

.order-card__media > img:not(.order-card__logo) {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    /*filter: brightness(0.78) saturate(1.06);*/
    pointer-events: none;
    -webkit-user-drag: none;
}

.order-card__media-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    color: #ffffff;
}

.order-card__media-content::before {
    content: "";
    position: absolute;
    left: -24px;
    right: -24px;
    bottom: -22px;
    height: 150px;
    z-index: -1;
    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.82)
        );
}

.order-card__logo {
    width: auto;
    max-width: 110px;
    max-height: 60px;
    height: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 8px;
    pointer-events: none;
}

.order-card__media-content h3 {
    margin: 0;
    color: #ffffff;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 0.95;
    font-weight: 500;
    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.5);
}

/* Card texto */

.order-card__info {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 30px 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.order-card__info h3 {
    margin: 0 0 16px;
    color: #f15a24;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 0.95;
    font-weight: 500;
}

.order-card__info p {
    margin: 0;
    color: #111111;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.order-card__info ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-card__info li {
    position: relative;
    padding-left: 18px;
    color: #111111;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.order-card__info li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b30f00;
}

/* Hover uniforme sin agrandar */

.order-card__media::after,
.order-card__info::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.36) 45%,
            transparent 70%
        );
    transform: translateX(-130%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.order-card:hover .order-card__media,
.order-card:hover .order-card__info {
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.order-card:hover .order-card__media::after,
.order-card:hover .order-card__info::after {
    transform: translateX(130%);
}

.order-card:hover .order-card__media > img:not(.order-card__logo) {
    filter: brightness(0.68) saturate(1.1);
}

.order-card:hover .order-card__info {
    background: #fff8df;
}

/* Dots */

.order-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.order-carousel__dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.order-carousel__dot.is-active {
    width: 32px;
    background: #ffffff;
}

/* Evitar selección */

.order-carousel,
.order-carousel *,
.order-card,
.order-card * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.order-card img {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* =========================================================
   PROPUESTAS - ANCLAS DESDE EL CARRUSEL
========================================================= */

.proposal-pair {
    scroll-margin-top: 110px;
}

.proposal-pair.is-target {
    animation: proposalTargetPulse 1.4s ease;
}

@keyframes proposalTargetPulse {
    0% {
        filter: brightness(1);
        transform: scale(1);
    }

    35% {
        filter: brightness(1.08);
        transform: scale(1.015);
    }

    100% {
        filter: brightness(1);
        transform: scale(1);
    }
}

/* Tablet */

@media (max-width: 1024px) {
    .order-proposals-section {
        padding: 64px 0 74px;
    }

    .order-carousel__track {
        gap: 36px;
    }

    .order-card {
        flex: 0 0 730px;
        width: 730px;
        max-width: 730px;
        grid-template-columns: 1.25fr 1fr;
        gap: 6px;
    }

    .order-card__media,
    .order-card__info {
        min-height: 240px;
    }

    .proposal-pair {
        scroll-margin-top: 96px;
    }
}

/* Celular */

@media (max-width: 700px) {
    .order-proposals-section {
        padding: 52px 0 60px;
    }

    .order-proposals-header {
        margin-bottom: 28px;
    }

    .order-proposals-header h2 {
        font-size: 38px;
        text-align: center;
    }

    .order-carousel__viewport {
        padding-left: 16px;
        padding-right: 16px;
    }

    .order-carousel__track {
        gap: 22px;
    }

    .order-card {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .order-card__media {
        min-height: 220px;
        border-radius: 20px;
    }

    .order-card__info {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 20px;
    }

    .order-card__media-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .order-card__logo {
        max-width: 96px;
        max-height: 54px;
    }

    .order-card__media-content h3 {
        font-size: 31px;
    }

    .order-card__info h3 {
        font-size: 30px;
    }

    .order-card__info li,
    .order-card__info p {
        font-size: 14px;
    }

    .proposal-pair {
        scroll-margin-top: 86px;
    }
}

/* Celular pequeño */

@media (max-width: 420px) {
    .order-card__media {
        min-height: 205px;
    }

    .order-card__media-content h3 {
        font-size: 28px;
    }

    .order-card__info h3 {
        font-size: 27px;
    }

    .order-proposals-header h2 {
        font-size: 34px;
    }
}


/* ============================= */
/* GALERÍA DE ÁLBUMES */
/* ============================= */

.region-gallery-section {
    background: #ffffff;
    padding: 72px 0 82px;
}

.region-gallery-header {
    max-width: 680px;
    margin-bottom: 34px;
}

.region-gallery-header span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #f15a24;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.region-gallery-header h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
    font-weight: 500;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
}

.region-gallery-header p {
    margin: 14px 0 0;
    color: #666666;
    font-size: 17px;
    line-height: 1.5;
}

/* ============================= */
/* GRID BASE */
/* ============================= */

.region-gallery-grid {
    display: grid;
    gap: 24px;
}

.region-album-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: none;
    border-radius: 16px;
    background: #eeeeee;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.region-album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.13);
}

.region-album-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.region-album-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.78);
}

/* ============================= */
/* OVERLAY */
/* ============================= */

.region-album-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    color: #ffffff;
    text-align: left;
    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.86)
    );
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.region-album-card:hover .region-album-card__overlay {
    transform: translateY(0);
    opacity: 1;
}

.region-album-card__overlay span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f15a24;
    font-size: 12px;
    font-weight: 900;
}

.region-album-card__overlay h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    line-height: 1.1;
    font-weight: 500;
}

.region-album-card__overlay p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* ============================= */
/* 1 ÁLBUM */
/* ============================= */

.region-gallery-grid.album-count-1 {
    grid-template-columns: minmax(280px, 620px);
    justify-content: center;
}

.region-gallery-grid.album-count-1 .region-album-card {
    height: 360px;
}

/* ============================= */
/* 2 ÁLBUMES */
/* ============================= */

.region-gallery-grid.album-count-2 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.region-gallery-grid.album-count-2 .region-album-card {
    height: 280px;
}

/* ============================= */
/* 3 ÁLBUMES */
/* ============================= */

.region-gallery-grid.album-count-3 {
    grid-template-columns: repeat(3, 1fr);
}

.region-gallery-grid.album-count-3 .region-album-card {
    height: 250px;
}

/* ============================= */
/* 4 ÁLBUMES: 2 ARRIBA Y 2 ABAJO */
/* ============================= */

.region-gallery-grid.album-count-4 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.region-gallery-grid.album-count-4 .region-album-card {
    height: 270px;
}

/* ============================= */
/* 5 ÁLBUMES:
   2 IZQUIERDA, 1 GRANDE CENTRO, 2 DERECHA
/* ============================= */

.region-gallery-grid.album-count-5 {
    grid-template-columns: 1fr 1.15fr 1fr;
    grid-template-rows: repeat(2, 230px);
}

.region-gallery-grid.album-count-5 .region-album-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.region-gallery-grid.album-count-5 .region-album-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.region-gallery-grid.album-count-5 .region-album-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.region-gallery-grid.album-count-5 .region-album-card:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
}

.region-gallery-grid.album-count-5 .region-album-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

/* ============================= */
/* 6 ÁLBUMES */
/* ============================= */

.region-gallery-grid.album-count-6 {
    grid-template-columns: repeat(3, 1fr);
}

.region-gallery-grid.album-count-6 .region-album-card {
    height: 240px;
}

/* ============================= */
/* MÁS DE 6 ÁLBUMES: MOSAICO AUTOMÁTICO */
/* ============================= */

.region-gallery-grid.album-count-many {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 18px;
    grid-auto-flow: dense;
}

.region-gallery-grid.album-count-many .region-album-card {
    grid-column: span 4;
    grid-row: span 11;
}

.region-gallery-grid.album-count-many .region-album-card:nth-child(6n + 4) {
    grid-row: span 18;
}

.region-gallery-grid.album-count-many .region-album-card:nth-child(6n + 5),
.region-gallery-grid.album-count-many .region-album-card:nth-child(6n + 6) {
    grid-row: span 11;
}

/* ============================= */
/* MODAL ÁLBUM */
/* ============================= */

.album-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
}

.album-modal.is-active {
    display: block;
}

.album-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.album-modal__content {
    position: relative;
    width: min(100% - 32px, 980px);
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    animation: modalIn 0.25s ease;
}

.album-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.album-modal__header {
    padding-right: 54px;
    margin-bottom: 18px;
}

.album-modal__header span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #f15a24;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.album-modal__header h2 {
    margin: 0;
    color: #111111;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.album-modal__header p {
    margin: 10px 0 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
}

.album-modal__viewer {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    background: #111111;
}

.album-modal__viewer img {
    width: 100%;
    max-height: 560px;
    display: block;
    object-fit: contain;
    background: #111111;
}

.album-modal__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(241, 90, 36, 0.92);
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.album-modal__nav--prev {
    left: 16px;
}

.album-modal__nav--next {
    right: 16px;
}

.album-modal__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 4px;
    overflow-x: auto;
}

.album-thumb {
    flex: 0 0 86px;
    height: 64px;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: #eeeeee;
    cursor: pointer;
}

.album-thumb.is-active {
    border-color: #f15a24;
}

.album-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================= */
/* RESPONSIVE TABLET */
/* ============================= */

@media (max-width: 900px) {
    .region-gallery-section {
        padding: 60px 0 68px;
    }

    .region-gallery-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .region-gallery-grid,
    .region-gallery-grid.album-count-1,
    .region-gallery-grid.album-count-2,
    .region-gallery-grid.album-count-3,
    .region-gallery-grid.album-count-4,
    .region-gallery-grid.album-count-5,
    .region-gallery-grid.album-count-6,
    .region-gallery-grid.album-count-many {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: auto;
        gap: 18px;
    }

    .region-gallery-grid.album-count-5 .region-album-card:nth-child(n),
    .region-gallery-grid.album-count-many .region-album-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .region-gallery-grid .region-album-card,
    .region-gallery-grid.album-count-1 .region-album-card,
    .region-gallery-grid.album-count-2 .region-album-card,
    .region-gallery-grid.album-count-3 .region-album-card,
    .region-gallery-grid.album-count-4 .region-album-card,
    .region-gallery-grid.album-count-5 .region-album-card,
    .region-gallery-grid.album-count-6 .region-album-card,
    .region-gallery-grid.album-count-many .region-album-card {
        height: 230px;
    }

    .region-gallery-grid.album-count-5 .region-album-card:nth-child(3) {
        grid-column: span 2;
        height: 340px;
    }

    .album-modal__content {
        padding: 24px;
    }

    .album-modal__viewer img {
        max-height: 480px;
    }
}

/* ============================= */
/* RESPONSIVE CELULAR */
/* ============================= */

@media (max-width: 560px) {
    .region-gallery-section {
        padding: 44px 0 52px;
    }

    .region-gallery-header h2 {
        font-size: 34px;
    }

    .region-gallery-header p {
        font-size: 15px;
    }

    .region-gallery-grid,
    .region-gallery-grid.album-count-1,
    .region-gallery-grid.album-count-2,
    .region-gallery-grid.album-count-3,
    .region-gallery-grid.album-count-4,
    .region-gallery-grid.album-count-5,
    .region-gallery-grid.album-count-6,
    .region-gallery-grid.album-count-many {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .region-gallery-grid.album-count-5 .region-album-card:nth-child(n),
    .region-gallery-grid.album-count-many .region-album-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .region-gallery-grid .region-album-card,
    .region-gallery-grid.album-count-1 .region-album-card,
    .region-gallery-grid.album-count-2 .region-album-card,
    .region-gallery-grid.album-count-3 .region-album-card,
    .region-gallery-grid.album-count-4 .region-album-card,
    .region-gallery-grid.album-count-5 .region-album-card,
    .region-gallery-grid.album-count-6 .region-album-card,
    .region-gallery-grid.album-count-many .region-album-card {
        height: 230px;
        border-radius: 14px;
    }

    .region-gallery-grid.album-count-5 .region-album-card:nth-child(3),
    .region-gallery-grid.album-count-many .region-album-card:nth-child(4n) {
        height: 340px;
    }

    .region-album-card__overlay {
        transform: translateY(0);
        opacity: 1;
        padding: 18px;
    }

    .region-album-card__overlay h3 {
        font-size: 20px;
    }

    .region-album-card__overlay p {
        font-size: 13.5px;
    }

    .album-modal__content {
        width: calc(100% - 22px);
        max-height: 92vh;
        margin: 4vh auto;
        padding: 18px;
        border-radius: 18px;
    }

    .album-modal__close {
        top: 12px;
        right: 12px;
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .album-modal__header {
        padding-right: 44px;
    }

    .album-modal__header h2 {
        font-size: 26px;
    }

    .album-modal__header p {
        font-size: 14.5px;
    }

    .album-modal__viewer {
        border-radius: 14px;
    }

    .album-modal__viewer img {
        max-height: 420px;
    }

    .album-modal__nav {
        width: 42px;
        height: 42px;
        font-size: 34px;
    }

    .album-modal__nav--prev {
        left: 10px;
    }

    .album-modal__nav--next {
        right: 10px;
    }

    .album-thumb {
        flex-basis: 72px;
        height: 54px;
    }
}


/* ============================= */
/* HEADER PRINCIPAL */
/* ============================= */

.site-header {
    background: rgba(241, 241, 241);
}

.header-content {
    min-height: 70px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 96px;
    height: auto;
    object-fit: contain;
}

.brand span {
    display: none;
}

/* ============================= */
/* HERO PRINCIPAL */
/* ============================= */

.hero-main__title-image {
    width: min(100%, 470px);
    height: auto;
}

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

.hero-main .btn {
    min-height: 46px;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 18px;
    font-weight: 800;
}

.hero-main .btn-primary {
    background: #f15a24;
    border: 2px solid #f15a24;
    color: #ffffff;
}

.hero-main .btn-outline {
    background: rgba(255, 255, 255, 0.72);
    border: 2px solid #cfcfcf;
    color: #111111;
}

/* ============================= */
/* RESPONSIVE HERO */
/* ============================= */

@media (max-width: 1024px) {

    .hero-main__title-image {
        width: min(100%, 410px);
    }
}

@media (max-width: 900px) {
    .header-content {
        min-height: 76px;
    }

    .brand-logo {
        width: 86px;
    }

    .hero-main__title-image {
        width: min(100%, 390px);
        margin-bottom: 16px;
    }

    .hero-main .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {

    .hero-main__title-image {
        width: min(100%, 315px);
    }

    .hero-main .btn {
        min-height: 42px;
        padding: 10px 14px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .hero-main__title-image {
        width: min(100%, 285px);
    }

    .hero-actions {
        gap: 10px;
    }
}


/* ============================= */
/* PROPUESTAS QUE YA TOKA IMPULSAR */
/* ============================= */

/*.axis-section {*/
/*    background: #fff1bf;*/
/*    padding: 54px 0 64px;*/
/*}*/

/*.axis-header {*/
/*    margin-bottom: 34px;*/
/*    text-align: center;*/
/*}*/

/*.axis-header h2 {*/
/*    margin: 0;*/
/*    color: #b30f00;*/
/*    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;*/
/*    font-size: clamp(28px, 4vw, 70px);*/
/*    line-height: 1.1;*/
/*    font-weight: 500;*/
/*    letter-spacing: -1px;*/
/*}*/

/*.axis-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, minmax(220px, 1fr));*/
/*    gap: 22px;*/
/*    max-width: 980px;*/
/*    margin: 0 auto;*/
/*}*/

/*.axis-card {*/
/*    position: relative;*/
/*    display: grid;*/
/*    grid-template-columns: auto 1fr;*/
/*    align-items: start;*/
/*    gap: 14px;*/
/*    min-height: 230px;*/
/*    padding: 24px 24px 22px;*/
/*    background: #ffffff;*/
/*    border: none;*/
/*    border-radius: 18px;*/
/*    text-decoration: none;*/
/*    color: #111111;*/
/*    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);*/
/*    cursor: pointer;*/
/*    transition:*/
/*        transform 0.25s ease,*/
/*        box-shadow 0.25s ease,*/
/*        background 0.25s ease,*/
/*        color 0.25s ease;*/
/*}*/

/*.axis-card:hover {*/
/*    background: #a93400;*/
/*    color: #ffffff;*/
/*    transform: translateY(-6px);*/
/*    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);*/
/*}*/

/*!* Círculo con ícono *!*/
/*.axis-card__icon {*/
/*    width: 48px;*/
/*    height: 48px;*/
/*    display: grid;*/
/*    place-items: center;*/
/*    border-radius: 50%;*/
/*    background: #ff5a00;*/
/*    flex-shrink: 0;*/
/*    transition:*/
/*        background 0.25s ease,*/
/*        transform 0.25s ease;*/
/*}*/

/*.axis-card__icon img {*/
/*    width: 28px;*/
/*    height: 28px;*/
/*    display: block;*/
/*    object-fit: contain;*/
/*    transition:*/
/*        transform 0.25s ease,*/
/*        filter 0.25s ease;*/
/*}*/

/*.axis-card:hover .axis-card__icon {*/
/*    background: #ffffff;*/
/*    transform: scale(1.04);*/
/*}*/

/*.axis-card:hover .axis-card__icon img {*/
/*    transform: scale(1.08);*/
/*}*/

/*!* Contenido *!*/
/*.axis-card__content h3 {*/
/*    margin: 4px 0 10px;*/
/*    color: #ff5a00;*/
/*    font-family: 'Raleway', Arial, Helvetica, sans-serif;*/
/*    font-size: 26px;*/
/*    line-height: 1;*/
/*    font-weight: 900;*/
/*    transition: color 0.25s ease;*/
/*}*/

/*.axis-card__content p {*/
/*    margin: 0;*/
/*    color: #222222;*/
/*    font-family: 'Raleway', Arial, Helvetica, sans-serif;*/
/*    font-size: 15px;*/
/*    line-height: 1.38;*/
/*    font-weight: 500;*/
/*    transition: color 0.25s ease;*/
/*}*/

/*.axis-card:hover .axis-card__content h3 {*/
/*    color: #ffffff;*/
/*}*/

/*.axis-card:hover .axis-card__content p {*/
/*    color: rgba(255, 255, 255, 0.92);*/
/*}*/

/*!* Ocultamos flecha para este diseño *!*/
/*.axis-card__arrow {*/
/*    display: none;*/
/*}*/

/*!* Tablet *!*/
/*@media (max-width: 900px) {*/
/*    .axis-section {*/
/*        padding: 48px 0 58px;*/
/*    }*/

/*    .axis-grid {*/
/*        grid-template-columns: repeat(2, minmax(220px, 1fr));*/
/*        max-width: 680px;*/
/*        gap: 18px;*/
/*    }*/

/*    .axis-card {*/
/*        min-height: 210px;*/
/*    }*/
/*}*/

/*!* Celular *!*/
/*@media (max-width: 640px) {*/
/*    .axis-section {*/
/*        padding: 42px 0 50px;*/
/*    }*/

/*    .axis-header {*/
/*        margin-bottom: 28px;*/
/*    }*/

/*    .axis-header h2 {*/
/*        font-size: 34px;*/
/*    }*/

/*    .axis-grid {*/
/*        grid-template-columns: 1fr;*/
/*        max-width: 360px;*/
/*        gap: 16px;*/
/*    }*/

/*    .axis-card {*/
/*        min-height: auto;*/
/*        padding: 22px;*/
/*        border-radius: 16px;*/
/*    }*/

/*    .axis-card__icon {*/
/*        width: 44px;*/
/*        height: 44px;*/
/*    }*/

/*    .axis-card__icon img {*/
/*        width: 25px;*/
/*        height: 25px;*/
/*    }*/

/*    .axis-card__content h3 {*/
/*        font-size: 24px;*/
/*    }*/

/*    .axis-card__content p {*/
/*        font-size: 14px;*/
/*    }*/
/*}*/


/* ============================= */
/* ORDEN PARA AYACUCHO */
/* ============================= */

.region-detail-section {
    background: #f1f1f1;
    padding: 86px 0 96px;
}

.region-detail-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: start;
    gap: 70px;
}

.region-detail-left h2 {
    margin: 0 0 34px;
    color: #111111;
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1;
    font-weight: 900;
}

.region-detail-image {
    --move-x: 0px;
    --move-y: 0px;

    width: min(100%, 440px);
    overflow: visible;
    cursor: pointer;
}

.region-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
    transform:
        translate(
            calc(var(--move-x) * -1),
            calc(var(--move-y) * -1)
        );
    transition: transform 0.14s ease-out, box-shadow 0.25s ease;
    will-change: transform;
}

.region-detail-image:hover img {
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.22);
}

.region-detail-list {
    display: grid;
    gap: 18px;
}

.region-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 22px 24px;
    background: #e4e4e4;
    border-radius: 16px;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.region-detail-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.region-detail-card__icon {
    width: 15px;
    height: 15px;
    margin-top: 4px;
    background: #888888;
    flex-shrink: 0;
}

.region-detail-card__icon--circle {
    border-radius: 50%;
}

.region-detail-card__icon--diamond {
    transform: rotate(45deg);
}

.region-detail-card__icon--triangle {
    width: 0;
    height: 0;
    margin-top: 6px;
    background: transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 14px solid #888888;
}

.region-detail-card h3 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
}

.region-detail-card p {
    margin: 0;
    color: #666666;
    font-size: 15.5px;
    line-height: 1.45;
    font-weight: 600;
}

/* Tablet */
@media (max-width: 900px) {
    .region-detail-section {
        padding: 70px 0 78px;
    }

    .region-detail-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .region-detail-left {
        text-align: center;
    }

    .region-detail-left h2 {
        margin-bottom: 26px;
    }

    .region-detail-image {
        margin: 0 auto;
        width: min(100%, 390px);
    }

    .region-detail-list {
        max-width: 620px;
        margin: 0 auto;
    }
}

/* Celular */
@media (max-width: 560px) {
    .region-detail-section {
        padding: 54px 0 62px;
    }

    .region-detail-grid {
        gap: 32px;
    }

    .region-detail-left h2 {
        font-size: 34px;
        margin-bottom: 22px;
    }

    .region-detail-image {
        width: min(100%, 300px);
    }

    .region-detail-image img {
        border-radius: 16px;
    }

    .region-detail-card {
        padding: 18px;
        border-radius: 14px;
    }

    .region-detail-card h3 {
        font-size: 19px;
    }

    .region-detail-card p {
        font-size: 14.5px;
        font-weight: 500;
    }
}

/* Celular pequeño */
@media (max-width: 390px) {
    .region-detail-left h2 {
        font-size: 31px;
    }

    .region-detail-image {
        width: min(100%, 270px);
    }

    .region-detail-card {
        gap: 12px;
        padding: 16px;
    }
}


/* ============================= */
/* ESCUCHAMOS AL PERÚ - INICIO */
/* ============================= */

.listen-section {
    background: #ffffff;
    padding: 76px 0 82px;
}

.listen-header {
    margin-bottom: 42px;
}

.listen-header h2 {
    margin: 0;
    color: #111111;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1;
    font-weight: 500;
}

.listen-header p {
    margin: 16px 0 0;
    color: #6b6b6b;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.listen-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px 30px 28px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.listen-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 90, 36, 0.25);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.listen-card__quote {
    margin: 0;
    color: #111111;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
    font-style: italic;
}

.listen-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 46px;
}

.listen-card__avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 900;
}

.listen-card__avatar--orange {
    background: #ffe5d6;
    color: #ff7a3d;
}

.listen-card__avatar--blue {
    background: #e8edff;
    color: #4f73ff;
}

.listen-card__avatar--green {
    background: #e5f6dc;
    color: #68b84f;
}

.listen-card h3 {
    margin: 0 0 4px;
    color: #111111;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 900;
}

.listen-card span {
    display: block;
    color: #6c6c6c;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 900px) {
    .listen-section {
        padding: 64px 0 70px;
    }

    .listen-header {
        text-align: center;
    }

    .listen-card {
        min-height: 230px;
    }
}

/* Celular */
@media (max-width: 640px) {
    .listen-section {
        padding: 52px 0 58px;
    }

    .listen-header {
        margin-bottom: 30px;
    }

    .listen-header h2 {
        font-size: 36px;
    }

    .listen-header p {
        font-size: 16px;
    }

    .listen-card {
        min-height: auto;
        padding: 26px 24px;
    }

    .listen-card__quote {
        font-size: 16px;
    }

    .listen-card__footer {
        margin-top: 34px;
    }
}

/* Celular pequeño */
@media (max-width: 390px) {
    .listen-header h2 {
        font-size: 32px;
    }

    .listen-card {
        padding: 24px 20px;
    }
}

/* =========================================================
   ESCUCHAMOS AL PERÚ - CARRUSEL AUTOMÁTICO
========================================================= */

.listen-carousel {
    width: 100%;
    overflow: hidden;
}

.listen-carousel__viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.listen-carousel__viewport.is-dragging {
    cursor: grabbing;
}

.listen-carousel .listen-grid {
    display: flex;
    grid-template-columns: none;
    gap: 30px;
    width: max-content;
    max-width: none;
    margin: 0;
    transform: translate3d(0, 0, 0);
    transition: none !important;
    will-change: transform;
}

.listen-carousel .listen-card {
    flex: 0 0 306px;
    width: 306px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.listen-carousel .listen-card,
.listen-carousel .listen-card * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Tablet */
@media (max-width: 900px) {
    .listen-carousel .listen-grid {
        gap: 22px;
    }

    .listen-carousel .listen-card {
        flex-basis: 300px;
        width: 300px;
    }
}

/* Celular */
@media (max-width: 640px) {
    .listen-carousel .listen-grid {
        gap: 18px;
    }

    .listen-carousel .listen-card {
        flex-basis: calc(100vw - 64px);
        width: calc(100vw - 64px);
        min-height: 220px;
    }
}

/* Celular pequeño */
@media (max-width: 390px) {
    .listen-carousel .listen-card {
        flex-basis: calc(100vw - 48px);
        width: calc(100vw - 48px);
    }
}


/* ============================= */
/* FOOTER */
/* ============================= */

.site-footer {
    position: relative;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fff7e8 48%,
            #ffffff 100%
        );
    color: #111111;
    padding: 38px 0;
    border-top: 6px solid #ff5a00;
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo {
    width: 170px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Botón al centro */

.footer-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-plan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 10px;
    background: #ff5a00;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    /*box-shadow: 0 12px 26px rgba(255, 90, 0, 0.28);*/
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-plan-button:hover {
    background: #20110d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(32, 17, 13, 0.25);
}

/* Redes */

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-social__link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.footer-social__link svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    display: block;
}

.footer-social__link:hover {
    transform: translateY(-4px) scale(1.05);
    filter: brightness(1.06);
}

/* Facebook */
.footer-social__link--facebook {
    background: #1877f2;
    box-shadow: 0 8px 18px rgba(24, 119, 242, 0.32);
}

/* TikTok */
.footer-social__link--tiktok {
    background: #111111;
    box-shadow:
        -3px 0 0 #25f4ee,
        3px 0 0 #fe2c55,
        0 8px 18px rgba(0, 0, 0, 0.28);
}

/* Instagram */
.footer-social__link--instagram {
    background:
        radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
    box-shadow: 0 8px 18px rgba(214, 41, 118, 0.32);
}

/* Tablet / Celular */
@media (max-width: 768px) {
    .site-footer {
        padding: 34px 0;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-brand,
    .footer-action,
    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        width: 150px;
    }

    .footer-plan-button {
        min-height: 44px;
        padding: 12px 18px;
        font-size: 13px;
    }
}


/* ================================================= */
/* PÁGINA DETALLE DE EJES - YA TOKA */
/* ================================================= */

.proposal-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
    background: #ff5a00;
}

.proposal-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 0;
    height: 100%;
    background-image: var(--proposal-bg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
}

.proposal-hero > .container {
    position: relative;
    z-index: 1;
}

.proposal-hero__content {
    text-align: center;
}

.proposal-hero h1 {
    max-width: 980px;
    margin: 0 auto;
    color: #ffffff;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.4px;
}

.proposal-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 22px 0 28px;
}

.proposal-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 8px 15px;
    border-radius: 7px;
    background: #ffffff;
    color: #f15a24;
    text-decoration: none;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.proposal-tab:hover {
    transform: translateY(-2px);
}

.proposal-tab.is-active {
    background: #7a2a00;
    color: #ffffff;
}

/* Imagen principal */

.proposal-hero__image {
    width: min(100%, 960px);
    margin: 0 auto -1px;
    padding: 9px 9px 0;
    border-radius: 22px 22px 0 0;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.proposal-hero__image img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 16px 16px 0 0;
}

/* ================================================= */
/* CONTENIDO */
/* ================================================= */

.proposal-content-section {
    background: #ffffff;
    padding: 64px 0 86px;
}

.proposal-content-header {
    margin-bottom: 36px;
}

.proposal-content-header h2 {
    margin: 0;
    color: #f15a24;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
}

.proposal-content-header p {
    margin: 14px 0 0;
    color: #777777;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.35;
    font-weight: 500;
}

.proposal-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.proposal-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.proposal-card--clickable {
    cursor: pointer;
}

.proposal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 90, 36, 0.28);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

.proposal-card__image {
    height: 225px;
    overflow: hidden;
    background: #eeeeee;
}

.proposal-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.proposal-card:hover .proposal-card__image img {
    transform: scale(1.06);
}

.proposal-card__body {
    padding: 22px 22px 24px;
}

.proposal-card__body h3 {
    margin: 0 0 12px;
    color: #111111;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.12;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proposal-card__body p {
    margin: 0;
    color: #686868;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 500;
    white-space: pre-line;
}

.proposal-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: #111111;
    text-decoration: none;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.proposal-card__link span {
    transition: transform 0.25s ease;
}

.proposal-card__link:hover {
    color: #f15a24;
}

.proposal-card__link:hover span {
    transform: translateX(4px);
}

/* ================================================= */
/* MODAL SIMPLE DE PROPUESTA */
/* ================================================= */

.proposal-modal {
    position: fixed;
    inset: 0;
    z-index: 320;
    display: none;
}

.proposal-modal.is-active {
    display: block;
}

.proposal-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.proposal-modal__content {
    position: relative;
    width: min(100% - 32px, 980px);
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
    padding: 28px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    animation: modalIn 0.25s ease;
}

.proposal-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.proposal-modal__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: stretch;
}

.proposal-modal__image {
    overflow: hidden;
    border-radius: 18px;
    background: #eeeeee;
    min-height: 420px;
}

.proposal-modal__image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.proposal-modal__info {
    padding: 22px 12px 22px 0;
}

.proposal-modal__info span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #f15a24;
    font-size: 13px;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.proposal-modal__info h2 {
    margin: 0 0 18px;
    color: #111111;
    font-size: clamp(32px, 4vw, 48px);
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    line-height: 0.98;
    font-weight: 900;
}

.proposal-modal__info p {
    margin: 0;
    color: #5f5f5f;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
    white-space: pre-line;
}

.proposal-modal__additional {
    margin-top: -20px !important;
    padding-top: 20px;
    white-space: pre-line;
}

.proposal-modal__info strong {
    color: #111111;
    font-weight: 900;
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */

@media (max-width: 1024px) {
    .proposal-hero {
        padding-top: 58px;
    }

    .proposal-hero__image img {
        height: 360px;
    }

    .proposal-card-grid {
        gap: 22px;
    }

    .proposal-card__image {
        height: 205px;
    }
}

@media (max-width: 900px) {
    .proposal-hero h1 {
        max-width: 720px;
    }

    .proposal-hero__image {
        width: min(100%, 820px);
    }

    .proposal-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proposal-modal__grid {
        grid-template-columns: 1fr;
    }

    .proposal-modal__image {
        min-height: auto;
    }

    .proposal-modal__image img {
        min-height: auto;
        height: 340px;
    }

    .proposal-modal__info {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .proposal-hero {
        padding: 44px 0 0;
    }

    .proposal-hero h1 {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .proposal-tabs {
        flex-wrap: wrap;
        margin: 20px 0 24px;
    }

    .proposal-tab {
        min-height: 29px;
        padding: 8px 12px;
        font-size: 10.5px;
    }

    .proposal-hero__image {
        padding: 7px 7px 0;
        border-radius: 18px 18px 0 0;
    }

    .proposal-hero__image img {
        height: 235px;
        border-radius: 13px 13px 0 0;
    }

    .proposal-content-section {
        padding: 50px 0 60px;
    }

    .proposal-content-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .proposal-content-header h2 {
        font-size: 32px;
    }

    .proposal-content-header p {
        font-size: 16.5px;
    }

    .proposal-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .proposal-card__image {
        height: 215px;
    }

    .proposal-modal__content {
        width: calc(100% - 22px);
        margin: 4vh auto;
        padding: 18px;
        border-radius: 18px;
    }

    .proposal-modal__close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .proposal-modal__image img {
        height: 240px;
    }

    .proposal-modal__info h2 {
        font-size: 30px;
    }

    .proposal-modal__info p {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .proposal-hero h1 {
        font-size: 29px;
    }

    .proposal-hero__image img {
        height: 210px;
    }

    .proposal-card__body {
        padding: 20px;
    }

    .proposal-card__body h3 {
        font-size: 17px;
    }
}

/* =========================================================
   TRANSICIÓN INICIAL / LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #ffffff;
    pointer-events: all;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.page-loader__logo {
    position: relative;
    z-index: 3;
    width: 150px;
    opacity: 0;
    transform: scale(0.88);
    animation: loaderLogoIn 0.75s ease forwards;
}

.page-loader__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.page-loader__wipe {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #f15a24;
    transform: translateX(-110%);
    animation: loaderWipe 1.15s ease-in-out 0.65s forwards;
}

.page-loader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader.is-loaded .page-loader__logo {
    animation: loaderLogoOut 0.35s ease forwards;
}

body.is-loading {
    overflow: hidden;
}

@keyframes loaderLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loaderLogoOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@keyframes loaderWipe {
    0% {
        transform: translateX(-110%);
    }

    45% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(110%);
    }
}

/* Celular */
@media (max-width: 640px) {
    .page-loader__logo {
        width: 120px;
    }
}


/* =========================================================
   PÁGINA ESCUCHAMOS AL PERÚ
========================================================= */

.listen-page-hero {
    background: #f1f1f1;
    padding: 86px 0 54px;
}

.listen-page-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #111111;
    font-size: clamp(44px, 6vw, 76px);
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -1.6px;
}

.listen-page-hero h1 span {
    color: #ff5a00;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
}

.listen-page-hero p {
    max-width: 680px;
    margin: 20px 0 0;
    color: #666666;
    font-size: 20px;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    line-height: 1.45;
    font-weight: 600;
}

.listen-videos-section {
    background: #ffffff;
    padding: 58px 0 92px;
}

.listen-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 72px 32px;
}

.listen-video-card {
    cursor: pointer;
}

.listen-video-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f2f2f2;
    aspect-ratio: 9 / 16;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.listen-video-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
}

.listen-video-card:hover .listen-video-card__image img {
    transform: scale(1.035);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
    filter: brightness(0.94);
}

.listen-video-card__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 42px;
    opacity: 0;
    transform: scale(0.85);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.listen-video-card:hover .listen-video-card__play {
    opacity: 1;
    transform: scale(1);
}

.listen-video-card__body {
    padding-top: 18px;
}

.listen-video-card__body h2 {
    margin: 0 0 6px;
    color: #111111;
    font-size: 18px;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.listen-video-card__body h3 {
    margin: 0 0 10px;
    color: #f15a24;
    font-size: 15px;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    line-height: 1.25;
    font-weight: 900;
    text-transform: uppercase;
}

.listen-video-card__body p {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.45;
}

/* =========================================================
   MODAL DE VIDEO
========================================================= */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
}

.video-modal.is-active {
    display: block;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(3px);
}

.video-modal__content {
    position: relative;
    width: min(100% - 32px, 920px);
    margin: 6vh auto;
    padding: 26px;
    background: #111111;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    animation: modalIn 0.25s ease;
}

.video-modal__close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.video-modal__close:hover {
    transform: scale(1.08);
    background: #b83a00;
}

.video-modal h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
}

.video-modal__frame {
    overflow: hidden;
    border-radius: 16px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.video-modal__frame video,
.video-modal__frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    background: #000000;
}

/* Tablet */

@media (max-width: 900px) {
    .listen-page-hero {
        text-align: center;
        padding: 70px 0 44px;
    }

    .listen-page-hero h1,
    .listen-page-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .listen-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 24px;
    }
}

/* Celular */

@media (max-width: 640px) {
    .listen-page-hero {
        padding: 54px 0 36px;
    }

    .listen-page-hero h1 {
        font-size: 38px;
    }

    .listen-page-hero p {
        font-size: 16px;
    }

    .listen-videos-section {
        padding: 42px 0 64px;
    }

    .listen-videos-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .listen-video-card__image {
        aspect-ratio: 9 / 16;
    }

    .video-modal__content {
        width: calc(100% - 22px);
        margin: 8vh auto;
        padding: 18px;
        border-radius: 18px;
    }

    .video-modal__close {
        top: -14px;
        right: -8px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .video-modal h2 {
        font-size: 20px;
    }

    .video-modal__frame {
        border-radius: 12px;
    }
}

/* =========================================================
   MODAL PROMOCIONAL INICIO
========================================================= */

.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
}

.promo-modal.is-active {
    display: block;
}

.promo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.promo-modal__content {
    position: relative;
    width: auto;
    max-width: min(92vw, 620px);
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    animation: promoModalIn 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal__image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 48px);
    display: block;
    object-fit: contain;
}

.promo-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f15a24;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.promo-modal__close:hover {
    transform: scale(1.08);
    background: #b83a00;
}

@keyframes promoModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 560px) {
    .promo-modal__content {
        max-width: calc(100vw - 24px);
        max-height: calc(100vh - 32px);
        margin: 16px auto;
        border-radius: 18px;
    }

    .promo-modal__image {
        max-height: calc(100vh - 32px);
    }

    .promo-modal__close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 24px;
    }
}


/* =========================================================
   PÁGINA EQUIPO - YA TOKA
========================================================= */

.team-hero {
    position: relative;
    overflow: hidden;
    background: #fff1bf;
    min-height: 560px;
    padding: 70px 0 0;
}

.team-hero__bg {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 1;
    height: 100%;
    background-image: url('../images/web/yatoka/fondo-naranja-solo-.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.team-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 20;
    height: 230px;
    background: #fff1bf;
    pointer-events: none;

    clip-path: polygon(
        0 30%,
        5% 34%,
        10% 39%,
        15% 44%,
        20% 49%,
        25% 54%,
        30% 59%,
        35% 63%,
        40% 66%,
        45% 68%,
        50% 69%,
        55% 68%,
        60% 66%,
        65% 63%,
        70% 59%,
        75% 54%,
        80% 49%,
        85% 44%,
        90% 39%,
        95% 34%,
        100% 30%,
        100% 100%,
        0 100%
    );
}

.team-hero .container {
    position: relative;
    z-index: 2;
}

.team-hero__layout {
    top: -50px;
    position: relative;
    min-height: 490px;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: end;
}

.team-hero__title {
    position: relative;
    z-index: 6;
    align-self: center;
    padding-bottom: 86px;
}

.team-hero__title h1 {
    margin: 0;
    color: #ffffff;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 6vw, 74px);
    line-height: 0.78;
    font-weight: 500;
    letter-spacing: 2px;
}

.team-hero__title h1 span {
    display: block;
    font-size: 1.6em;
    line-height: 0.82;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
}

.team-hero__people {
    position: relative;
    min-height: 490px;
    overflow: visible;
}

.team-hero__star {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.team-hero__star--left {
    left: -10%;
    bottom: 78px;
    width: 150px;
}

.team-hero__star--right {
    right: -2%;
    top: 66px;
    width: 170px;
}

.team-hero__person {
    position: absolute;
    bottom: 0;
    height: min(100%, 455px);
    opacity: 0;
    transform: translateY(24px);
    transform-origin: bottom center;
    animation: teamHeroPersonIn 0.85s ease forwards;
    cursor: pointer;
}

.team-hero__person-img {
    width: auto;
    height: 100%;
    display: block;
    object-fit: contain;
    transform: scale(1);
    transform-origin: bottom center;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
    will-change: transform;
    pointer-events: none;
}

.team-hero__person:hover {
    z-index: 30;
}

.team-hero__person:hover .team-hero__person-img {
    transform: scale(1.08);
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.24));
}

.team-hero__person--keiko {
    left: 0;
    z-index: 4;
    animation-delay: 0.15s;
}

.team-hero__person--lucho {
    left: 20%;
    z-index: 3;
    animation-delay: 0.55s;
}

.team-hero__person--miki {
    right: 0;
    z-index: 2;
    animation-delay: 0.95s;
}

@keyframes teamHeroPersonIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   PERFIL PRINCIPAL
========================================================= */

.team-profile {
    position: relative;
    background: #fff1bf;
    padding: 46px 0 44px;
}

.team-main-carousel {
    position: relative;
}

.team-main-carousel__viewport {
    position: relative;
    overflow: hidden;
}

.team-profile__title {
    margin-bottom: 46px;
    text-align: center;
}

.team-profile__title h2 {
    margin: 0;
    color: #111111;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.team-profile__title h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 6px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: #ff5a00;
}

.team-profile-slide {
    display: none;
    opacity: 0;
}

.team-profile-slide.is-active {
    display: block;
    opacity: 1;
}

.team-profile-slide.is-active .team-profile__copy {
    animation: teamMainCopyIn 0.7s ease both;
}

.team-profile-slide.is-active .team-profile__photo {
    animation: teamMainPhotoIn 0.7s ease both;
}

.team-profile__grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 54px;
    max-width: 920px;
    margin: 0 auto;
}

.team-profile__copy h1 {
    margin: 0 0 8px;
    color: #f15a24;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2px;
}

.team-profile__copy span {
    display: inline-flex;
    margin: 0 0 16px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #9b1300;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.team-profile__copy p {
    max-width: 390px;
    margin: 0;
    color: #111111;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 14.5px;
    line-height: 1.45;
    font-weight: 500;
}

.team-profile__photo {
    overflow: hidden;
    width: min(100%, 360px);
    margin-left: auto;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.team-profile__photo img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: contain;
    object-position: bottom center;
}

.team-profile-dots,
.team-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.team-profile-dots {
    margin-top: 34px;
}

.team-profile-dots button,
.team-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #9d9d9d;
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.team-profile-dots button.is-active,
.team-dots button.is-active {
    width: 22px;
    background: #5c5c5c;
}

@keyframes teamMainCopyIn {
    from {
        opacity: 0;
        transform: translateX(-44px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes teamMainPhotoIn {
    from {
        opacity: 0;
        transform: translateX(44px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================================
   FRANJA SLOGAN
========================================================= */

.team-slogan {
    position: relative;
    overflow: hidden;
    background: #ff5a00;
    padding: 32px 0;
    text-align: center;
}

.team-slogan::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url('../images/web/yatoka/Recurso 9ya toka.png');
    background-size: cover;
    background-position: center;
}

.team-slogan .container {
    position: relative;
    z-index: 1;
}

.team-slogan h2 {
    margin: 0;
    color: #ffffff;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1;
    font-weight: 900;
}

/* =========================================================
   EQUIPOS POR ÁREA - SECCIONES ESTÁTICAS
========================================================= */

.team-area {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 70px 0 86px;
}

.team-area-list {
    display: grid;
    gap: 86px;
}

/* Cada bloque de equipo */

.team-area-block {
    position: relative;
    overflow: visible;
    padding: 52px 42px 62px;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
}

.team-area-block:nth-child(even) {
    background: #fff7db;
}

.team-area-block::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 28px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 90, 0, 0.08);
    pointer-events: none;
}

.team-area-block::after {
    content: "";
    position: absolute;
    left: 42px;
    bottom: 24px;
    width: 110px;
    height: 8px;
    border-radius: 999px;
    background: #ff5a00;
    opacity: 0.18;
    pointer-events: none;
}

/* Header */

.team-area__header {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 52px;
}

.team-area__header h2 {
    margin: 0;
    color: #111111;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -1.4px;
}

.team-area__header h2 span {
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    color: #f15a24;
}

.team-area__header p {
    max-width: 820px;
    margin: 12px 0 0;
    color: #222222;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 15.5px;
    line-height: 1.45;
    font-weight: 500;
}

/* =========================================================
   MIEMBROS DINÁMICOS
========================================================= */

.team-members {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: end;
    justify-content: center;
    gap: 34px;
    width: 100%;
    margin: 0 auto;
    padding-top: 42px;
}

/* 1 miembro */
.team-members-count-1 {
    grid-template-columns: minmax(220px, 300px);
    max-width: 340px;
}

/* 2 miembros */
.team-members-count-2 {
    grid-template-columns: repeat(2, minmax(210px, 270px));
    max-width: 620px;
}

/* 3 miembros */
.team-members-count-3 {
    grid-template-columns: repeat(3, minmax(190px, 250px));
    max-width: 830px;
}

/* 4 miembros */
.team-members-count-4 {
    grid-template-columns: repeat(4, minmax(170px, 230px));
    max-width: 1030px;
}

/* 5 miembros */
.team-members-count-5 {
    grid-template-columns: repeat(5, minmax(150px, 205px));
    max-width: 1120px;
}

/* 6 o más */
.team-members-count-many {
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    max-width: 1120px;
}

/* Card miembro */

.team-member-card {
    position: relative;
    text-align: center;
    outline: none;
}

.team-member-card.has-info {
    cursor: pointer;
}

.team-member-card__image {
    overflow: hidden;
    height: 310px;
    border-radius: 24px;
    background: #fff1bf;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.team-member-card:hover .team-member-card__image,
.team-member-card:focus .team-member-card__image,
.team-member-card.is-open .team-member-card__image {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    filter: brightness(1.02);
}

.team-member-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.team-member-card h3 {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: -18px auto 0;
    padding: 8px 14px;
    border-radius: 6px;
    background: #ff5a00;
    color: #ffffff;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}

/* =========================================================
   CUADRO DE PENSAMIENTO
========================================================= */

/*.team-members {*/
/*    padding-top: 175px; !* espacio para que el globo no tape el título *!*/
/*}*/

.team-member-card__bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 24px);
    z-index: 40;
    width: 430px;
    max-height: none;
    overflow: visible;
    padding: 22px 24px;
    border-radius: 22px;
    background: #ffffff;
    color: #222222;
    text-align: left;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px) scale(0.96);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

/* Bolitas del pensamiento */
.team-member-card__bubble::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    transform: translateX(-50%);
    box-shadow:
        -18px 16px 0 -8px #ffffff,
        18px 16px 0 -9px #ffffff;
}

.team-member-card__bubble p {
    margin: 0;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 15.5px;
    line-height: 1.5;
    font-weight: 600;
    white-space: pre-line;
}

/* Desktop: hover / focus */
.team-member-card.has-info:hover .team-member-card__bubble,
.team-member-card.has-info:focus .team-member-card__bubble,
.team-member-card.has-info.is-open .team-member-card__bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* =========================================================
   RESPONSIVE EQUIPOS POR ÁREA
========================================================= */

@media (max-width: 1024px) {
    .team-area {
        padding: 62px 0 76px;
    }

    .team-area-list {
        gap: 72px;
    }

    .team-area-block {
        padding: 44px 30px 54px;
        border-radius: 28px;
    }

    .team-area__header {
        margin-bottom: 44px;
    }

    .team-members,
    .team-members-count-1,
    .team-members-count-2,
    .team-members-count-3,
    .team-members-count-4,
    .team-members-count-5,
    .team-members-count-many {
        grid-template-columns: repeat(2, minmax(180px, 250px));
        max-width: 580px;
        gap: 36px 32px;
        padding-top: 0;
    }

    .team-members-count-1 {
        grid-template-columns: minmax(220px, 300px);
        max-width: 340px;
    }

    .team-member-card {
        align-self: start;
    }

    .team-member-card__image {
        height: 285px;
    }

    .team-members-count-3 .team-member-card:nth-child(2) .team-member-card__image,
    .team-members-count-3 .team-member-card:nth-child(2):hover .team-member-card__image,
    .team-members-count-3 .team-member-card:nth-child(2):focus .team-member-card__image,
    .team-members-count-3 .team-member-card:nth-child(2).is-open .team-member-card__image {
        transform: none;
    }

    .team-member-card:hover .team-member-card__image,
    .team-member-card:focus .team-member-card__image,
    .team-member-card.is-open .team-member-card__image {
        transform: translateY(-5px);
    }

    /* En tablet el cuadro se despliega dentro del flujo para mostrar todo el texto */
    .team-member-card__bubble {
        position: static;
        width: 100%;
        max-height: none;
        overflow: visible;
        display: none;
        margin: 0 0 16px;
        padding: 18px 20px;
        border-radius: 18px;
        background: #ffffff;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
    }

    .team-member-card__bubble::before {
        display: none;
    }

    .team-member-card__bubble p {
        margin: 0;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 600;
        white-space: pre-line;
    }

    .team-member-card.has-info:hover .team-member-card__bubble,
    .team-member-card.has-info:focus .team-member-card__bubble {
        transform: none;
    }

    .team-member-card.has-info.is-open .team-member-card__bubble {
        display: block;
    }
}

@media (max-width: 640px) {
    .team-area {
        padding: 46px 0 62px;
    }

    .team-area-list {
        gap: 48px;
    }

    .team-hero::after{
        height: 350px;
    }

    .team-profile__title {
        margin-bottom: 32px;
    }

    .team-profile__title h2 {
        font-size: 36px;
    }

    .team-profile__title h2::after {
        width: 86px;
        height: 5px;
        margin-top: 14px;
    }

    .team-area-block {
        padding: 34px 20px 42px;
        border-radius: 24px;
    }

    .team-area-block::before {
        width: 70px;
        height: 70px;
        top: 18px;
        right: 18px;
    }

    .team-area-block::after {
        left: 24px;
        bottom: 18px;
        width: 80px;
    }

    .team-area__header {
        margin-bottom: 30px;
        text-align: left;
    }

    .team-area__header h2 {
        font-size: 34px;
        line-height: 0.98;
    }

    .team-area__header p {
        font-size: 13.5px;
        line-height: 1.45;
    }

    .team-members,
    .team-members-count-1,
    .team-members-count-2,
    .team-members-count-3,
    .team-members-count-4,
    .team-members-count-5,
    .team-members-count-many {
        grid-template-columns: 1fr;
        max-width: 280px;
        gap: 32px;
        padding-top: 0;
    }

    .team-hero__person--lucho,
    .team-hero__person--miki{
        display: none;
    }

    .team-member-card__image {
        height: 285px;
    }

    .team-member-card h3 {
        font-size: 13px;
    }

    /* En celular el cuadro se muestra al tocar la card */
    .team-member-card__bubble {
        position: static;
        width: 100%;
        max-height: none;
        overflow: visible;
        display: none;
        margin: 0 0 14px;
        padding: 16px 17px;
        border-radius: 16px;
        background: #ffffff;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    }

    .team-member-card__bubble::before {
        display: none;
    }

    .team-member-card__bubble p {
        margin: 0;
        font-size: 14.5px;
        line-height: 1.5;
        font-weight: 600;
        white-space: pre-line;
    }

    .team-member-card.has-info:hover .team-member-card__bubble,
    .team-member-card.has-info:focus .team-member-card__bubble {
        transform: none;
    }

    .team-member-card.has-info.is-open .team-member-card__bubble {
        display: block;
    }
}

@media (max-width: 390px) {
    .team-area-block {
        padding: 30px 16px 38px;
    }

    .team-area__header h2 {
        font-size: 31px;
    }

    .team-area__header p {
        font-size: 13px;
    }

    .team-members,
    .team-members-count-1,
    .team-members-count-2,
    .team-members-count-3,
    .team-members-count-4,
    .team-members-count-5,
    .team-members-count-many {
        max-width: 260px;
        gap: 30px;
    }

    .team-member-card__image {
        height: 270px;
    }

    .team-member-card__bubble {
        padding: 15px 16px;
    }

    .team-member-card__bubble p {
        font-size: 14.2px;
        line-height: 1.48;
    }
}


/* =========================================================
   PÁGINA PROPUESTAS - DISEÑO VERTICAL
========================================================= */

.proposals-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 56px 0 86px;
    background: #ff9f00;
}

/* Fondo que acompaña todo el alto del contenido */
.proposals-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image: url('../images/web/propuestas/fondo-degradado.png');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;

    pointer-events: none;
}

.proposals-container {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

/* Título */

.proposals-heading {
    width: min(100%, 700px);
    margin: 0 auto 40px;
    padding: 20px 28px;
    background: #f15a24;
    border: 4px solid #ffcd2e;
    border-radius: 24px;
    box-shadow:
        0 8px 0 #d71920,
        0 22px 42px rgba(0, 0, 0, 0.16);
    text-align: center;
}

.proposals-heading h1 {
    margin: 0;
    color: #ffffff;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.8px;
}

/* Lista */

.proposals-list {
    display: grid;
    gap: 22px;
}

.proposal-pair {
    display: grid;
    grid-template-columns: 1.45fr 0.95fr;
    align-items: stretch;
    gap: 18px;
}

.proposal-pair.is-reverse {
    grid-template-columns: 0.95fr 1.45fr;
}

.proposal-pair.is-reverse .proposal-media-card {
    order: 2;
}

.proposal-pair.is-reverse .proposal-info-card {
    order: 1;
}

/* Card imagen */

.proposal-media-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border-radius: 22px;
    background: #111111;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
    isolation: isolate;
    transition:
        box-shadow 0.28s ease,
        filter 0.28s ease;
}

.proposal-media-card::after,
.proposal-info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.38) 45%,
            transparent 70%
        );
    transform: translateX(-130%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

/* Imagen principal: llena todo el card */
.proposal-media-card > img:not(.proposal-media-card__logo) {
    position: absolute;
    inset: 0;
    z-index: 1;

    width: 100%;
    height: 100%;
    min-height: 100%;

    display: block;
    object-fit: cover;
    object-position: center center;

    border-radius: inherit;
}

.proposal-media-card__content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    color: #ffffff;
}

.proposal-media-card__content::before {
    content: "";
    position: absolute;
    left: -24px;
    right: -24px;
    bottom: -22px;
    height: 145px;
    z-index: -1;
    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.78)
        );
}

.proposal-media-card__logo {
    width: 84px;
    height: auto;
    display: block;
    margin-bottom: 6px;
}

.proposal-media-card h2 {
    margin: 0;
    color: #ffffff;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 0.95;
    font-weight: 500;
    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.5);
}

/* Card texto */

.proposal-info-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 26px 24px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    transition:
        box-shadow 0.28s ease,
        background 0.28s ease,
        color 0.28s ease;
}

.proposal-info-card h3 {
    margin: 0 0 14px;
    color: #f15a24;
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 0.95;
    font-weight: 500;
}

.proposal-info-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.proposal-info-card li {
    position: relative;
    padding-left: 17px;
    color: #111111;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 14.3px;
    line-height: 1.35;
}

.proposal-info-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b30f00;
}

/* Hover igual para todos, sin agrandar */

.proposal-pair:hover .proposal-media-card,
.proposal-pair:hover .proposal-info-card {
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
}

.proposal-pair:hover .proposal-media-card::after,
.proposal-pair:hover .proposal-info-card::after {
    transform: translateX(130%);
}

.proposal-pair:hover .proposal-info-card {
    background: #fff8df;
}

/* Tablet */

@media (max-width: 900px) {
    .proposals-page {
        padding: 48px 0 70px;
    }

    .proposals-page::before {
        background-size: cover;
        background-position: center top;
    }

    .proposals-container {
        max-width: 720px;
    }

    .proposal-pair,
    .proposal-pair.is-reverse {
        grid-template-columns: 1.35fr 1fr;
        gap: 16px;
    }

    .proposal-pair.is-reverse .proposal-media-card {
        order: 1;
    }

    .proposal-pair.is-reverse .proposal-info-card {
        order: 2;
    }

    .proposal-media-card,
    .proposal-info-card {
        min-height: 200px;
    }
}

/* Celular */

@media (max-width: 640px) {
    .proposals-page {
        padding: 38px 0 54px;
    }

    .proposals-heading {
        margin-bottom: 30px;
        padding: 18px 20px;
        border-radius: 20px;
    }

    .proposals-heading h1 {
        font-size: 34px;
    }

    .proposal-pair,
    .proposal-pair.is-reverse {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .proposal-pair.is-reverse .proposal-media-card,
    .proposal-pair.is-reverse .proposal-info-card {
        order: initial;
    }

    .proposal-media-card {
        min-height: 220px;
    }

    .proposal-media-card img:not(.proposal-media-card__logo) {
        min-height: 220px;
    }

    .proposal-info-card {
        min-height: auto;
        padding: 22px;
    }

    .proposal-media-card__content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .proposal-media-card__logo {
        width: 74px;
    }

    .proposal-media-card h2 {
        font-size: 30px;
    }

    .proposal-info-card h3 {
        font-size: 28px;
    }

    .proposal-info-card li {
        font-size: 14px;
    }
}

/* Celular pequeño */

@media (max-width: 390px) {
    .proposals-heading h1 {
        font-size: 30px;
    }

    .proposal-media-card {
        min-height: 205px;
    }

    .proposal-media-card img:not(.proposal-media-card__logo) {
        min-height: 205px;
    }

    .proposal-media-card h2 {
        font-size: 27px;
    }
}
