/************************************************************************************
FONT
*************************************************************************************/

@font-face {
    font-family: "Bebas";
    src: url("../assets/fonts/bebas-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Comedik";
    src: url("../assets/fonts/comedik-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/************************************************************************************
RESET
*************************************************************************************/
@charset "UTF-8";

:root {
    /* Base del sistema */
    --font-family-raw: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;

    /* Familias que usaremos en el sitio */
    --font-family-base: var(--font-family-raw);
    /* textos */
    --font-family-heading: "Bebas", var(--font-family-raw);
    /* títulos */
    --font-family-accent: "Comedik", var(--font-family-raw);
    /* acentos */
    --black: #161d26;
    --red: #eb4545;
    --yellow: #ffcd0d;
    --white: #ffffff;
    --gris: #c2c2c2;
    --gris-oscuro: #424342;
}

html {
    /* overscroll-behavior: none; */
}

body {
    min-height: 100vh;
    font-size: 16px;
    font-family: var(--font-family-raw);
    color: var(--black);
    fill: var(--black);
    font-weight: normal;
    /* opcional */
    line-height: 1.3em;
    /* opcional */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    /* opcional */
    font-smooth: always;
    /* opcional */
    -webkit-font-smoothing: antialiased;
    /* opcional */
    -moz-osx-font-smoothing: grayscale;
    background-image: url("../assets/bg.jpg");
    background-repeat: repeat;
    background-size: auto;
    background-position: 0 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
}

/* Títulos principales (Schabo) */
h1,
h2,
h3,
.heading {
    font-family: var(--font-family-heading);
}

/* Textos tipo garabato / acento (Comedik) */
.tagline,
.handwriting,
.accent {
    font-family: var(--font-family-accent);
}


@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation: none !important;
        animation: none !important;
        -webkit-transition: none !important;
        transition: none !important;
    }
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: baseline;
}

img,
picture,
video,
iframe,
figure {
    max-width: 100%;
    width: 100%;
    display: block;
    /* opcional 
  -o-object-fit: cover;
  object-fit: cover;*/
    -o-object-position: center center;
    object-position: center center;
}

a {
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
}

p a {
    display: inline;
    font-size: 18px;
    line-height: 20px;
}

li {
    list-style-type: none;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
    font-size: 16px;
    font-style: inherit;
    line-height: 20px;
    text-decoration: none;
    color: inherit;
    word-break: break-word;
    hyphens: initial;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

form,
input,
textarea,
select,
label {
    font-family: inherit;
    font-size: inherit;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    background-color: transparent;
    color: inherit;
    display: block;
}

table,
tr,
td {
    border-collapse: collapse;
    border-spacing: 0;
}

svg {
    width: 100%;
    display: block;
    fill: currentColor;
}

::selection {
    background: transparent;
    color: inherit;
}

::-webkit-scrollbar {
    width: 0px;
    scrollbar-width: thin;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}



/************************************************************************************
PANEL LATERAL MENÚ
*************************************************************************************/

.site-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

.site-menu-panel.is-open {
    pointer-events: auto;
    opacity: 1;
}

.site-menu-panel__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* cajón lateral */
.site-menu-panel__drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 100%);
    background-color: #11151c;
    box-shadow: -6px 0 18px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
}

.site-menu-panel.is-open .site-menu-panel__drawer {
    transform: translateX(0);
}

/* botón cerrar */
.site-menu-panel__close {
    position: absolute;
    top: 1.3rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 2px solid var(--yellow);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.site-menu-panel__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--yellow);
    border-radius: 999px;
}

.site-menu-panel__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-menu-panel__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* contenido */
.site-menu-panel__body {
    margin-top: 1.5rem;
    padding-top: 1.8rem;
    overflow-y: none;
}

.site-menu-panel__header {
    margin-bottom: 2.5rem;
}

.site-menu-panel__title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--gris);
    line-height: 1;
}

.site-menu-panel__intro {
    font-size: 1.3rem;
    line-height: 1.1;
    color: var(--yellow);
}

.site-menu-panel__contacts {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.site-menu-panel__item-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--gris);
    display: block;
    margin-bottom: 0.15rem;
}

.site-menu-panel__item-link {
    font-family: var(--font-family-heading);
    font-size: 1.3rem;
    color: var(--white);
}

/* bloqueo de scroll cuando menú está abierto */
html.has-menu-open,
body.has-menu-open {
    overflow: hidden;
}



/************************************************************************************
HERO TOP – TU VEHÍCULO, TU ESTILO, TU MARCA
*************************************************************************************/

.line-top {
    background: var(--yellow);
    width: 100%;
    display: block;
    height: 5px;
}

.hero {
    position: relative;
    padding: 2rem 1.5rem 4rem;

}

.hero {
    background-size: 60%;
}

.hero__inner {
    max-width: 950px;
    margin: 0 auto;
}

/* TOP: logo + botón menú */
.hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

/* logos */
.hero__logo {
    position: relative;
}

.hero__logo-img {
    display: block;
    height: auto;
    max-width: 260px;
}

/* versión grande desktop, chica mobile */
.hero__logo-img--large {
    display: block;
}

.hero__logo-img--small {
    display: none;
    max-width: 120px;
}

/* botón menú */
.hero__menu-btn {
    color: var(--yellow);
    cursor: pointer;
    width: 100px;
    height: 40px;
}

.hero__menu-lines {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.hero__menu-lines span {
    width: 16px;
    height: 2px;
    background-color: var(--black);
    display: block;
    border-radius: 999px;
}

.hero__menu-label {
    letter-spacing: 0.06em;
}

/* MAIN: fotos + textos */
.hero__main {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: stretch;
}

/* columna imágenes */
.hero__media {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 45%;
}

.hero__photo {
    overflow: hidden;
}

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

/* foto lateral */
.hero__photo--secondary {
    width: 190px;
    border-radius: 30px 6px 30px 6px;
    margin-top: 110px;
    aspect-ratio: 1 / 2.2 auto;
}

/* foto principal */
.hero__photo--primary {
    position: relative;
    max-width: 320px;
    border-radius: 6px;
    aspect-ratio: 1;
}

/* icono rojo */
.hero__mark {
    position: absolute;
    left: 12%;
    bottom: -24px;
    width: 90px;
}

.hero__mark .icon-hero-mark {
    width: 100%;
    height: auto;
    display: block;
}

/* columna contenido */
.hero__content {
    flex: 1 1 auto;
    max-width: 55%;
    position: relative;
}

.hero__title {
    font-family: var(--font-family-heading);
    font-size: 6rem;
    line-height: 0.85;
    text-transform: uppercase;
    color: #e5e5e5;
}

.hero__lowrider {
    position: absolute;
    right: -10px;
    top: 130px;
}

.hero__lowrider img {
    display: block;
    max-width: 120px;
    height: auto;
}

.hero__subtitle {
    font-size: 1.7rem;
    line-height: initial;
    color: var(--yellow);
    transform: rotate(-4deg);
    position: absolute;
    bottom: -10px;
    width: 600px;
    right: 20px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {

    .hero__photo--primary {
        width: 360px;
    }

    .hero__photo--secondary {
        width: 160px;
        margin-bottom: 40px;
    }

    .hero__mark {
        width: 80px;
        bottom: -20px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 1.5rem 1.25rem 3rem;
    }

    .hero__media {
        order: 1;
    }

    .hero__content {
        order: 2;
        max-width: none;
    }

    .hero__title {
        font-size: 4rem;
    }

    ::selection {
        background: transparent;

        color: inherit;
    }

    .hero__lowrider {
        right: 20px;
        top: 110px;
    }

    .hero__lowrider img {
        max-width: 100px;
    }

    .hero__subtitle {
        font-size: 1.4rem;
        bottom: 30px;
        width: 520px;
        right: 20px;
    }
}

@media (max-width: 640px) {
    .hero__main {
        flex-direction: column;
        margin-top: 0px;
    }

    .hero__media {
        max-width: 100%;
    }

    .hero__logo-img--large {
        display: none;
    }

    .hero__logo-img--small {
        display: block;
    }

    .hero__top {
        align-items: center;
    }

    .hero__logo {
        width: 70px;
    }

    .hero__lowrider {
        top: 80px;
        right: 0px;
    }

    .hero__photo--primary {
        width: 100%;
        max-width: 360px;
    }

    .hero__photo--secondary {
        margin-bottom: 0px;
        margin-top: 0;
    }

    .hero__title {
        font-size: 3.8rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        width: 100%;
        position: initial;
        margin-top: 30px;
    }
}

/************************************************************************************
BLOQUE PERFORMANCE VISUAL SIN LÍMITES
*************************************************************************************/

.performance-block {
    padding: 5rem 1.5rem 4rem;
    color: var(--white);
}

.performance-block__inner {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: baseline;
}

/* COLUMNA FOTOS */
.performance-block__images {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1.25rem;
    flex: 0 0 260px;
}

.performance-block__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    width: 90%;
}

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

/* radios distintos para cada foto (ajusta a gusto) */
.performance-block__image--top {
    border-radius: 3px 40px 3px 3px;
}

.performance-block__image--middle {
    border-radius: 60px 3px 3px 3px;
}

.performance-block__image--bottom {
    border-radius: 3px 3px 3px 40px;
}

/* COLUMNA TEXTO / BADGE */
.performance-block__content {
    position: relative;
    flex: 1 1 auto;
}

.performance-block__title {
    font-family: var(--font-family-heading);
    font-size: 6rem;
    line-height: 0.9;
    text-transform: uppercase;
    color: #e5e5e5;
    max-width: 18ch;
    /* limita el ancho del bloque */
}

/* flecha (SVG sprite) */
.performance-block__arrow {
    position: absolute;
    right: 0;
    top: -6rem;
    width: 100px;
}

.performance-block__arrow .icon-performance-arrow {
    width: 60px;
    height: 200px;
    display: block;
    color: var(--gris);
}

/* badge “Más de una década” */
.performance-block__badge {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(-30%, -60%);
}

.performance-block__badge img {
    max-width: 260px;
    width: 45vw;
    height: auto;
    display: block;
}

/* texto inferior */
.performance-block__footnote {
    margin: 6rem auto 0 0;
    text-align: left;
    font-size: 1.1rem;
    color: var(--gris);
    max-width: 80%;
    line-height: 1.2;
    display: block;
    position: relative;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .performance-block__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    /* 3 imágenes en fila arriba, como comentaste */
    .performance-block__images {
        flex-direction: row;
        justify-content: flex-start;
        flex: 1 1 auto;
        padding: 0 2rem;
    }

    .performance-block__content {
        width: 100%;
        position: relative;
        padding: 0 2rem;
    }

    .performance-block__image {
        width: 80%;
    }

    .performance-block__title {
        font-size: 5rem;
        max-width: none;
    }

    .performance-block__arrow {
        display: none;
    }

    .performance-block__badge {
        transform: translate(-40px, -60%);
    }

    .performance-block__badge img {
        max-width: 240px;
    }

    .performance-block__footnote {
        margin-top: 2.5rem;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .performance-block {
        padding: 4rem 1.25rem 3rem;
    }

    .performance-block__images {
        gap: .7rem;
        padding: 0;
    }

    .performance-block__image {
        width: auto !important;
        border-radius: 3px !important;
    }

    .performance-block__title {
        font-size: 3rem;
    }

    .performance-block__content {
        padding: .5rem;
    }

    .performance-block__footnote {
        font-size: 1rem;
    }

    .performance-block__badge img {
        max-width: 140px;
    }

    .performance-block__badge {
        transform: translate(-20px, -80%);
    }
}

@media (max-width: 380px) {
  .performance-block__badge {
    transform: translate(-20px, -130%);
  }
}

/************************************************************************************
BLOQUE STEPS – GRAFICAS PREMIUM
*************************************************************************************/

.steps-block {
    padding: 5rem 1.5rem 4rem;
    color: var(--white);
}

.steps-block__inner {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

/* lado izquierdo */
.steps-block__left {
    flex: 1 1 50%;
}

.steps-block__hero-img {
    max-width: 430px;
    width: 100%;
    height: auto;
    display: block;
}

/* lado derecho */
.steps-block__right {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.steps-block__steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* cada step */
.steps-block__step {
    opacity: 0.35;
    transform: translateX(0);
    transition:
        opacity 0.35s ease-out,
        transform 0.35s ease-out;
}

/* estado activo (se manejará por JS) */
.steps-block__step.is-active {
    opacity: 1;
    transform: translateX(0);
}

/* etiqueta STEP */
.steps-block__step-label {
    font-family: var(--font-family-accent);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

/* texto del step */
.steps-block__step-text {
    font-family: var(--font-family-heading);
    font-size: 2.3rem;
    line-height: .9;
    text-transform: uppercase;
    color: #e5e5e5;
}

/* CTA */
.steps-block__cta {
    margin-top: 1.5rem;
    text-align: center;
}

.steps-block__cta-link {
    display: inline-block;
}

.steps-block__cta-link .icon-cta-button {
    width: 220px;
    max-width: 80vw;
    height: 80px;
    display: block;
    color: var(--yellow);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .steps-block {
        padding: 4rem 1.25rem 3.5rem;
    }

    .steps-block__hero-img {
        max-width: 380px;
    }

    .steps-block__step-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .steps-block__hero-img {
        max-width: 320px;
    }

    .steps-block__left,
    .steps-block__right {
        flex: 1 1 100%;
        width: 100%;
    }

    .steps-block__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-block__steps {
        flex-direction: initial;
        justify-content: space-between;
        gap: 1rem;
    }

    .steps-block__step-label {
        font-size: 1.3rem;
    }

    .steps-block__step-text {
        font-size: 1.3rem;
    }
}

/************************************************************************************
NUESTRO TRABAJO – GALERÍA SLIDER (SPLIDE)
*************************************************************************************/

/* Header con PNG centrado */
.work-gallery__header {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.work-gallery__cta img {
    display: block;
    max-width: 260px;
    width: 40vw;
    height: auto;
}

/* ===== WORK GALLERY – BASE FUNCIONAL ===== */

.work-gallery {
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.work-gallery__slider {
    overflow: hidden;
    width: 100%;
}

.work-gallery__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.work-gallery__item {
    flex: 0 0 auto;
    width: 240px;
    overflow: hidden;
    border-radius: 6px;
    /* Safari-friendly */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.work-gallery__img {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 6px;
    /* Safari-friendly */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* Descalce alternado */
.work-gallery__item:nth-child(odd) {
    margin-top: 35px;
}

.work-gallery__item:nth-child(even) {
    margin-top: -35px;
}

@media (max-width: 900px) {
    .work-gallery {
        padding: 3rem 0 3rem;
    }

    .work-gallery__cta img {
        width: 50vw;
    }

    .work-gallery__item {
        width: 200px;
    }
}


/************************************************************************************
SERVICIOS – LISTADO
*************************************************************************************/

.services-list {
    padding: 3rem 5rem;
}

.services-list__inner {
    max-width: 950px;
    margin: 0 auto;
}

/* Header */
.services-list__header {
    display: flex;
    color: var(--red);
    margin-bottom: 3rem;
    width: 100%;
    justify-content: end;
}

.services-list__header-icon {
    margin-right: 10%;
}

.services-list__header-icon svg {
    width: 230px;
    height: auto;
    display: block;
}

.services-list__header-text {
    font-family: var(--font-family-accent);
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #ff4242;
    /* rojo del diseño, ajusta si tienes var */
}

/* Lista de servicios */
.services-list__items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Cada ítem */
.services-list__item {
    position: relative;
    margin: 0 auto;

}

.services-list__number {
    position: absolute;
    left: -3%;
    top: -2%;
}

/* aquí el ajuste clave */
.services-list__number-inner {
    display: inline-block;
    /* 👈 que se comporte como caja */
    font-family: var(--font-family-accent);
    font-size: 2rem;
    color: var(--yellow);
    transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    /* por si acaso en Safari/WebKit */
    transform-origin: center center;
    /* opcional: centro de giro */
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000;
}

/* Contenido del ítem */
.services-list__content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.services-list__title {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    line-height: 1;
    text-transform: uppercase;
    color: #e5e5e5;
}

.services-list__description {
    font-family: var(--font-family-accent);
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--yellow);
    text-transform: uppercase;
    max-width: 42rem;
    /* opcional para que no se vaya eterno */
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .services-list {
        padding: 4rem 1.5rem 3rem;
    }

    .services-list__header {
        margin-bottom: 2.5rem;
    }

    .services-list__item {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .services-list__title {
        font-size: 2.1rem;
    }

    .services-list__description {
        font-size: 1rem;
    }

    .services-list__number {
        left: -1%;
    }
}

/************************************************************************************
CINTA WSP – SLIDE CONTINUO (Safari-safe)
*************************************************************************************/

.wsp-tape {
    --wsp-tape-speed: 0.65;
    /* px por frame aprox (JS) */
    --wsp-tape-tile-width: 500px;
    /* ancho real del PNG */
    --wsp-tape-tile-height: 147px;
    /* alto real del PNG */
    margin: 4rem 0 2rem;
}

.wsp-tape__link {
    display: block;
    text-decoration: none;
}

.wsp-tape__inner {
    position: relative;
    overflow: hidden;
    transform: rotate(-4deg);
    transform-origin: center;
    background: var(--yellow);
    margin: 0 -10px;
}

/* Track real (lo mueve el JS con translate3d) */
.wsp-tape__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;

    height: var(--wsp-tape-tile-height);

    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* Cada “tile” */
.wsp-tape__item {
    flex: 0 0 auto;
    width: var(--wsp-tape-tile-width);
    height: var(--wsp-tape-tile-height);

    background-image: var(--wsp-tape-img);
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: var(--wsp-tape-tile-width) var(--wsp-tape-tile-height);
}

/* Responsive */
@media (max-width: 768px) {
    .wsp-tape {
        margin: 3rem 0;
    }

    .wsp-tape {
        --wsp-tape-tile-width: 380px;
        --wsp-tape-tile-height: 110px;
    }
}


/************************************************************************************
READY CTA (LISTO PARA COMENZAR)
*************************************************************************************/

.ready-cta {
    position: relative;
    padding: 5rem 2rem 0;
}

.ready-cta__grid {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: end;
}

/* columnas principales */
.ready-cta__col {
    display: flex;
}

.ready-cta__col--main {
    flex: 2 1 60%;
    gap: .7rem;
    align-items: center;
}

.ready-cta__col--side {
    flex: 1 1 30%;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
    justify-content: end;
}

/* flecha izquierda */
.ready-cta__arrow-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    margin-top: -70px;
}

.ready-cta__arrow-left {
    width: 3.5rem;
    height: auto;
    fill: var(--yellow);
}

/* bloque texto principal */
.ready-cta__text-block {
    flex: 1 1 auto;
    gap: 5rem;
    display: flex;
    flex-direction: column;
}

/* texto superior amarillo */
.ready-cta__label {
    font-family: var(--font-family-accent);
    font-size: 1.4rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--yellow);
    display: inline-block;
    transform: rotate(-2deg);
    margin-bottom: 1rem;
}

/* título + signo rojo en flex */
.ready-cta__title {
    font-family: var(--font-family-heading);
    display: flex;
}

.ready-cta__title div span {
    font-size: 5rem;
    line-height: .85;
    text-transform: uppercase;
    color: var(--gris);
    display: flex;
    flex-wrap: wrap;
    gap: 0.1em;
    align-items: flex-end;
}

/* signo rojo ¿?! */
.ready-cta__sign {
    display: inline-flex;
    align-items: flex-end;
    transform: translateY(0.1em);
    margin-left: -35px;
    margin-bottom: -10px;
}

.ready-cta__sign svg {
    width: 5.5rem;
    height: auto;
    color: var(--red);
    transform: rotate(4deg);
    filter: drop-shadow(-6px 1px 0px var(--black));
}

/* columna lateral derecha */
.ready-cta__side-text {
    font-family: var(--font-family-accent);
    font-size: 1.1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--yellow);
    display: inline-block;
    transform: rotate(-2deg);
}

.ready-cta__meetup {
    position: relative;
    display: flex;
    flex-direction: column;
}

.ready-cta__meetup-text {
    font-family: var(--font-family-accent);
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--yellow);
    display: inline-block;
    line-height: initial;
    text-align: end;
}

/* subrayado SVG */
.ready-cta__underline {
    position: relative;
    display: flex;
    justify-content: end;
}

.ready-cta__underline svg {
    width: 70%;
    height: 20px;
    display: block;
    fill: var(--gris);
    margin-right: -20px;
}

/* fila botón */
.ready-cta__button-row {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
}

.ready-cta__btn {
    display: inline-block;
}

.ready-cta__btn .icon-cta-button {
    width: 260px;
    max-width: 80vw;
    height: auto;
    display: block;
    color: var(--yellow);
}

/* --------- RESPONSIVE --------- */

@media (max-width: 768px) {
    .ready-cta {
        padding: 4rem 1.25rem 0rem;
        text-align: center;
    }

    .ready-cta__grid {
        flex-direction: column;
        align-items: center;
    }

    .ready-cta__col--main {
        flex: 1 1 100%;
        justify-content: center;
        gap: 0;
    }

    /* ocultamos columna lateral en mobile */
    .ready-cta__col--side {
        display: none;
    }

    .ready-cta__label {
        text-align: left;
        width: 70%;
    }
}

@media (min-width: 1024px) {
    .ready-cta {
        padding: 6rem 5rem 0rem;
    }
}

@media (max-width: 520px) {
    .ready-cta__title div span {
        font-size: 3.5rem;
    }

    .ready-cta__label {
        font-size: 1.2rem;
        line-height: 1.1;
        width: 90%;
    }

    .ready-cta__text-block {
        gap: 3rem;
    }

    .ready-cta__button-row {
        margin: 0 auto 0;
    }

}


/************************************************************************************
FOOTER
*************************************************************************************/

.site-footer {
    font-family: var(--font-family-base);
    color: var(--black);
}

/* Bloque amarillo principal */
.footer-top {
    position: relative;
    padding: 3rem 1.5rem 2.5rem;
    background-color: var(--yellow);
    overflow: hidden;
    background-image: url(assets/footer-bg.png);
}

/* Marca PG arriba a la derecha */
.footer-top__pg-mark {
    position: relative;
    display: block;
    width: 100%;
}

.footer-top__pg-mark img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fila contacto rápido */
.footer-contact-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-contact__icon {
    width: 2.2rem;
    flex-shrink: 0;
}

.footer-contact__icon svg {
    width: 32px;
    height: 32px;
    fill: var(--gris-oscuro);
}

.footer-contact__text {
    font-size: 1.05rem;
}

/* Info empresa */
.footer-info__title {
    font-family: var(--font-family-raw);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.footer-info__address,
.footer-info__schedule {
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Fila inferior (made in chile + redes) */
.footer-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
}

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

.footer-social__list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social__list li img {
    width: 2rem;
    height: auto;
    display: block;
}

.icon {
    width: 24px;
    height: 24px;
}

/* Logo grande PopGraphic */
.footer-main-logo {
    max-width: 320px;
    margin-left: auto;
}

.footer-main-logo__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Franja oscura marcas */
.footer-brands {
    background-color: #111111;
    color: var(--white);
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
}

.footer-brands__title {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-brands__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 1.75rem;
}

.footer-brands__logo {
    width: 60px;
    max-width: 100px;
    flex: 0 0 auto;
}

.footer-brands__logo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --------- Mobile --------- */
@media (max-width: 700px) {
    .footer-bottom-row {
        align-items: center;
    }

    .footer-main-logo {
        margin-left: 0px;
    }

    .footer-info {
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

/* --------- Desktop / tablet --------- */
@media (min-width: 768px) {
    .footer-top {
        padding: 3.5rem 4rem 3rem;
    }

    .footer-contact-row {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .footer-contact__text {
        font-size: 1.3rem;
    }

    .footer-bottom-row {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
    }

    .footer-main-logo__img {
        max-width: 360px;
    }

    .footer-brands {
        padding: 2rem 4rem 2.5rem;
    }

    .footer-contact__icon svg {
        width: 38px;
        height: 38px;
    }
}

@media (min-width: 1024px) {
    .footer-top {
        padding: 4rem 6rem 3.5rem;
    }

    .footer-main-logo__img {
        max-width: 420px;
    }
}