
:root {
    --black: #070707;
    --black-soft: #111111;
    --white: #ffffff;
    --white-soft: #f8f4f6;
    --pink: #e93482;
    --pink-light: #f48db8;
    --pink-pale: #f8d5e4;
    --grey: #aaa4a7;
    --border: rgba(255, 255, 255, 0.15);

    --font-title: "Bodoni Moda", serif;
    --font-body: "Montserrat", sans-serif;

    --container: 1450px;
    --header-height: 82px;
    --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   BASE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    color: inherit;
}

::selection {
    background: var(--pink);
    color: var(--white);
}

.section {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 88px 5%;
}

.section--compact {
    padding-top: 82px;
    padding-bottom: 82px;
}

/* =========================================================
   ANIMACIONES
========================================================= */

.reveal,
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.reveal.is-visible,
.reveal-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   SCROLL
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--pink);
}

/* =========================================================
   CURSOR
========================================================= */

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--pink);
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(233, 52, 130, 0.75);
    transition:
        width 0.25s ease,
        height 0.25s ease,
        background 0.25s ease;
}

.cursor-outline.cursor-hover {
    width: 58px;
    height: 58px;
    background: rgba(233, 52, 130, 0.12);
}

/* =========================================================
   LOADER
========================================================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader__content {
    width: min(280px, 68vw);
    text-align: center;
}

.loader__logo {
    width: 165px;
    max-height: 105px;
    margin: 0 auto 28px;
    object-fit: contain;
}

.loader__line {
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.loader__line span {
    display: block;
    width: 42%;
    height: 100%;
    background: var(--pink);
    animation: loaderLine 1.3s infinite ease-in-out;
}

@keyframes loaderLine {
    from { transform: translateX(-110%); }
    to { transform: translateX(340%); }
}

/* =========================================================
   CABECERA
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 4%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        height 0.35s ease,
        background 0.35s ease,
        backdrop-filter 0.35s ease;
}

.header.is-scrolled {
    height: 68px;
    background: rgba(7, 7, 7, 0.88);
    backdrop-filter: blur(18px);
}

.header__logo {
    justify-self: start;
}

.header__logo img {
    width: 145px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;
    font-size: 0.69rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__contact {
    justify-self: end;
    padding: 11px 22px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition:
        background var(--transition),
        border-color var(--transition);
}

.header__contact:hover {
    border-color: var(--pink);
    background: var(--pink);
}

.menu-button {
    position: relative;
    z-index: 1100;
    display: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.menu-button span {
    position: absolute;
    left: 7px;
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 25px; }

.menu-button.is-active span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.menu-button.is-active span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

/* =========================================================
   MENÚ MÓVIL
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 105px 8% 40px;
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition:
        opacity 0.42s ease,
        visibility 0.42s ease,
        transform 0.42s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu__background {
    position: absolute;
    right: -25%;
    bottom: -15%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 52, 130, 0.2), transparent 67%);
}

.mobile-menu__nav {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.mobile-menu__link {
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-title);
    font-size: clamp(2.7rem, 10vw, 5rem);
    line-height: 1;
    transition:
        color var(--transition),
        padding-left var(--transition);
}

.mobile-menu__link:hover {
    padding-left: 10px;
    color: var(--pink-light);
}

.mobile-menu__footer {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 28px;
    margin-top: 42px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__overlay--soft {
    background:
        linear-gradient(90deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.1) 55%, rgba(0,0,0,.25) 100%),
        linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.05) 55%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, var(--container));
    margin: 0 auto;
}

.hero__content--compact {
    padding: 135px 5% 52px;
}

.hero__eyebrow {
    margin-bottom: 12px;
    color: var(--pink-light);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero__title {
    font-family: var(--font-title);
    font-weight: 400;
}

.hero__title--compact {
    max-width: 900px;
    font-size: clamp(3.5rem, 7.6vw, 7.7rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-line span {
    display: block;
    animation: heroTitle 1.05s 0.2s both cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroTitle {
    from {
        opacity: 0;
        transform: translateY(105%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__bottom--compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    max-width: 900px;
    margin-top: 18px;
}

.hero__description {
    font-family: var(--font-title);
    font-size: clamp(1.05rem, 1.6vw, 1.6rem);
}

.hero__discover {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.hero__discover:hover {
    border-color: var(--pink);
    color: var(--pink-light);
}

.hero__discover span {
    transition: transform var(--transition);
}

.hero__discover:hover span {
    transform: translateY(5px);
}

/* =========================================================
   MANIFIESTO
========================================================= */

.manifesto {
    min-height: auto;
}

.manifesto__content {
    max-width: 970px;
    margin-left: auto;
}

.manifesto__small {
    margin-bottom: 14px;
    color: var(--pink-light);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.manifesto__title {
    font-family: var(--font-title);
    font-size: clamp(2.7rem, 5vw, 5.4rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

/* =========================================================
   GALERÍA EN MOVIMIENTO
========================================================= */

.moving-gallery {
    width: 100%;
    overflow: hidden;
}

.moving-gallery--compact {
    padding: 8px 0 72px;
}

.moving-gallery__track {
    width: max-content;
    display: flex;
    gap: 18px;
    padding-left: 18px;
    animation: movingGallery 34s linear infinite;
}

.moving-gallery__track:hover {
    animation-play-state: paused;
}

.moving-gallery figure {
    width: clamp(210px, 21vw, 330px);
    height: clamp(300px, 31vw, 470px);
    overflow: hidden;
    background: var(--black-soft);
}

.moving-gallery figure:nth-child(even) {
    transform: translateY(24px);
}

.moving-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.moving-gallery figure:hover img {
    transform: scale(1.07);
    filter: saturate(1.12);
}

@keyframes movingGallery {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/* =========================================================
   ENCABEZADOS
========================================================= */

.section-heading {
    display: grid;
    grid-template-columns: 220px 760px;
    align-items: start;
    gap: 90px;
    margin-bottom: 54px;
}

.section-heading--compact {
    margin-bottom: 46px;
}

.section-heading__eyebrow {
    padding-top: 9px;
    color: var(--pink-light);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.21em;
    text-transform: uppercase;
}

.section-heading__title {
    max-width: 850px;
    font-family: var(--font-title);
    font-size: clamp(2.7rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

/* =========================================================
   SERVICIOS
========================================================= */

.services__list {
    border-top: 1px solid var(--border);
}

.service-card {
    position: relative;
    min-height: 126px;
    display: grid;
    grid-template-columns: 175px 1fr auto;
    align-items: center;
    gap: 34px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(233, 52, 130, 0.14), transparent 72%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card__image {
    height: 90px;
    overflow: hidden;
}

.service-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__content p {
    margin-bottom: 3px;
    color: var(--grey);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-card__content h3 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1;
    transition: color var(--transition);
}

.service-card:hover .service-card__content h3 {
    color: var(--pink-light);
}

.service-card__arrow {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1.05rem;
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.service-card:hover .service-card__arrow {
    border-color: var(--pink);
    background: var(--pink);
    transform: rotate(45deg);
}

/* =========================================================
   IMAGEN DESTACADA
========================================================= */

.featured-project {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.featured-project--compact {
    min-height: 68svh;
    max-height: 760px;
}

.featured-project__media {
    position: absolute;
    inset: 0;
}

.featured-project__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transition: transform 1.2s ease;
}

.featured-project:hover .featured-project__media img {
    transform: scale(1.035);
}

.featured-project__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.04) 67%),
        linear-gradient(90deg, rgba(0,0,0,.42), transparent 60%);
}

.featured-project__content {
    position: relative;
    z-index: 2;
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 62px 5%;
}

.featured-project__eyebrow {
    margin-bottom: 12px;
    color: var(--pink-light);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.featured-project__title {
    max-width: 800px;
    margin-bottom: 23px;
    font-family: var(--font-title);
    font-size: clamp(3rem, 5.6vw, 6.3rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.text-link:hover {
    border-color: var(--pink);
    color: var(--pink-light);
}

.text-link span {
    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translate(4px, -4px);
}

/* =========================================================
   MARQUEE
========================================================= */

.marquee-section {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #c51f68 0%, var(--pink) 50%, #d92674 100%);
    color: var(--white);
}

.marquee-section--compact {
    padding: 11px 0 13px;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3.2vw, 3.7rem);
    line-height: 1;
    animation: marqueeMove 18s linear infinite;
}

.marquee__symbol {
    font-size: 0.28em;
}

@keyframes marqueeMove {
    to { transform: translateX(-50%); }
}

/* =========================================================
   INSPIRACIÓN
========================================================= */

.journal {
    position: relative;
    background: linear-gradient(
        180deg,
        #070707 0%,
        #070707 72%,
        #0b080a 100%
    );
    padding-top: 74px;
    padding-bottom: 34px;
}

.journal__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.journal-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: var(--black-soft);
}

.journal-card__image {
    position: absolute;
    inset: 0;
}

.journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.journal-card:hover .journal-card__image img {
    transform: scale(1.055);
}

.journal-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.05) 65%);
}

.journal-card__content {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    z-index: 2;
}

.journal-card__content span {
    color: var(--pink-light);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.journal-card__content h3 {
    margin: 4px 0 7px;
    font-family: var(--font-title);
    font-size: clamp(3rem, 4.7vw, 5.2rem);
    font-weight: 400;
    line-height: 0.95;
}

.journal-card__content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

/* =========================================================
   CTA CONTACTO — TRANSICIÓN SUAVE
========================================================= */

.contact {
    position: relative;
    width: 100%;
    max-width: none;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 76% 32%,
            rgba(233, 52, 130, 0.14),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #0b080a 0%,
            #0f090d 30%,
            #090708 66%,
            #030303 100%
        );
}


.contact--cta {
    padding: 48px 5% 68px;
}

.contact__background-text {
    position: absolute;
    top: 50%;
    left: -18px;
    color: rgba(233, 52, 130, 0.055);
    font-family: var(--font-title);
    font-size: clamp(7rem, 17vw, 16rem);
    line-height: 0.8;
    white-space: nowrap;
    pointer-events: none;
    transform: translateY(-50%);
}

.contact__content {
    position: relative;
    z-index: 2;
    width: min(100%, 980px);
    margin: 0 auto;
}

.contact__content--center {
    text-align: center;
}

.contact__eyebrow {
    margin-bottom: 9px;
    color: var(--pink-light);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact__title {
    max-width: 820px;
    margin: 0 auto 24px;
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.9vw, 5.2rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.primary-button,
.contact__button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 230px;
    padding: 14px 24px;
    border: 1px solid rgba(233, 52, 130, 0.8);
    border-radius: 999px;
    background: linear-gradient(135deg, #171717 0%, #090909 70%, #121212 100%);
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition:
        transform var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.contact__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(216, 177, 90, 0.15),
        rgba(233, 52, 130, 0.10),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
}

.contact__button:hover {
    color: var(--pink-light);
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(0,0,0,.34),
        0 0 16px rgba(233,52,130,.12);
}

.contact__button:hover::before {
    left: 140%;
}

.contact__button span {
    color: #d8b15a;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;
    padding: 58px 5% 25px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 16% 25%,
            rgba(233, 52, 130, 0.06),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #080808 0%,
            #0d090b 48%,
            #050505 100%
        );
    color: var(--white);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 5%;
    left: 5%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(244, 141, 184, 0.28),
        transparent
    );
}

.footer__main {
    position: relative;
    z-index: 2;
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(70px, 10vw, 170px);
    padding-bottom: 62px;
}

.footer__brand {
    max-width: 340px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer__logo img {
    width: 115px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
}

.footer__description {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.8;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer__social a {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.footer__social a:hover {
    border-color: var(--pink);
    background: rgba(233, 52, 130, 0.12);
    color: var(--pink-light);
    transform: translateY(-3px);
}

.footer__navigation {
    padding-top: 42px;
}

.footer__navigation h2 {
    margin-bottom: 24px;
    color: #d8b15a;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.footer__link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 35px 65px;
}

.footer__link-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer__link-column a {
    position: relative;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    line-height: 1.45;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer__link-column a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.footer__link-column a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer__link-column a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer__bottom {
    position: relative;
    z-index: 2;
    width: min(100%, var(--container));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.61rem;
    letter-spacing: 0.05em;
}




@media (hover: none), (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    :root {
        --header-height: 74px;
    }

    .header__logo img {
        width: 130px;
    }

   
    .hero__title--compact {
        font-size: clamp(4rem, 10vw, 7.2rem);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        grid-template-columns: 145px 1fr auto;
        gap: 26px;
    }

    .footer__main {
    grid-template-columns: 1fr;
    gap: 48px;
}

.footer__brand {
    max-width: 390px;
}

.footer__link-grid {
    grid-template-columns: repeat(3, 1fr);
}
}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 720px) {
    .section,
    .section--compact {
        padding: 66px 21px;
    }

    .header {
        padding: 0 19px;
    }

    .header__logo img {
        width: 112px;
        height: 48px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero__content--compact {
        padding: 108px 21px 40px;
    }

    .hero__eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.23em;
    }

    .hero__title--compact {
        max-width: 88%;
        font-size: clamp(3rem, 13.5vw, 5rem);
        line-height: 0.94;
    }

    .hero__bottom--compact {
        align-items: flex-end;
        gap: 18px;
        margin-top: 14px;
    }

    .hero__description {
        max-width: 165px;
        font-size: 1.08rem;
    }

    .hero__discover {
        font-size: 0.56rem;
    }

    .manifesto__content {
        margin-left: 0;
    }

    .manifesto__title {
        font-size: clamp(2.5rem, 11.5vw, 4rem);
    }

    .moving-gallery--compact {
        padding-top: 2px;
        padding-bottom: 58px;
    }

    .moving-gallery__track {
        gap: 12px;
        padding-left: 12px;
    }

    .moving-gallery figure {
        width: 190px;
        height: 280px;
    }

    .moving-gallery figure:nth-child(even) {
        transform: translateY(16px);
    }

    .section-heading {
        gap: 10px;
        margin-bottom: 34px;
    }

    .section-heading__title {
        font-size: clamp(2.5rem, 11.5vw, 4rem);
    }

    .service-card {
        min-height: 108px;
        grid-template-columns: 78px 1fr auto;
        gap: 13px;
        padding: 15px 0;
    }

    .service-card__image {
        height: 78px;
    }

    .service-card__content p {
        display: none;
    }

    .service-card__content h3 {
        font-size: clamp(1.65rem, 7vw, 2.55rem);
    }

    .service-card__arrow {
        width: 35px;
        height: 35px;
        font-size: 0.88rem;
    }

    .featured-project--compact {
        min-height: 62svh;
    }

    .featured-project__content {
        padding: 48px 21px;
    }

    .featured-project__title {
        max-width: 95%;
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .marquee-section--compact {
        padding: 9px 0 11px;
    }

    .marquee__track {
        gap: 17px;
        font-size: clamp(1.65rem, 7.5vw, 2.8rem);
    }

  .journal {
    padding: 50px 21px 14px;
}

    .journal .section-heading {
        margin-bottom: 25px;
    }

    .journal .section-heading__title {
        max-width: 330px;
        font-size: clamp(2.2rem, 9.5vw, 3.35rem);
        line-height: 0.98;
    }

    .journal__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .journal-card {
        min-height: 275px;
        border-radius: 4px;
    }

    .journal-card__content {
        right: 13px;
        bottom: 14px;
        left: 13px;
    }

    .journal-card__content span {
        font-size: 0.48rem;
        letter-spacing: 0.11em;
    }

    .journal-card__content h3 {
        margin: 3px 0 4px;
        font-size: clamp(1.8rem, 7.6vw, 2.6rem);
    }

    .journal-card__content p {
        font-size: 0.64rem;
        line-height: 1.3;
    }

    .contact--cta {
    padding: 36px 21px 46px;
}

    .contact__background-text {
        left: -6px;
        font-size: 5.5rem;
    }

    .contact__eyebrow {
        margin-bottom: 7px;
        font-size: 0.53rem;
    }

    .contact__title{
    max-width: 390px;
    margin: 0 auto 18px;

    font-size: 1.85rem;

    line-height: .95;
    letter-spacing: -.03em;

    text-wrap: balance;
}


.contact__title br {
    display: none;
}

.contact__content--center {
    padding-inline: 4px;
}

.contact__button {
    animation: mobileButtonGlow 2.8s ease-in-out infinite;
}

.contact__button::before {
    left: -130%;
    animation: mobileButtonShine 3.2s ease-in-out infinite;
}

.contact__button:active {
    transform: scale(0.97);
    border-color: var(--pink-light);
    color: var(--pink-light);
}

   .contact__button{

    width: auto;

    min-width: 165px;
    padding: 9px 17px;

    font-size: .50rem;
    letter-spacing: .20em;

    border-radius: 999px;
}


   .footer {
    padding: 46px 20px 23px;
}

.footer::before {
    right: 20px;
    left: 20px;
}

.footer__main {
    display: block;
    padding-bottom: 40px;
}

.footer__brand {
    max-width: none;
    margin-bottom: 42px;
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__logo img {
    width: 100px;
    height: 62px;
}

.footer__description {
    max-width: 300px;
    font-size: 0.82rem;
    line-height: 1.75;
}

.footer__social {
    margin-top: 21px;
}

.footer__social a {
    width: 41px;
    height: 41px;
}

.footer__navigation h2 {
    margin-bottom: 21px;
}

.footer__link-grid {
    grid-template-columns: 1fr;
    gap: 0;
}

.footer__link-column {
    gap: 14px;
}

.footer__link-column + .footer__link-column {
    margin-top: 14px;
}

.footer__link-column a {
    font-size: 0.79rem;
}

.footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    line-height: 1.6;
}

}

/* =========================================================
   MÓVILES PEQUEÑOS
========================================================= */

@media (max-width: 430px) {
    .hero__bottom--compact {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-card {
        grid-template-columns: 70px 1fr auto;
    }

    .service-card__image {
        height: 72px;
    }

    .journal-card {
        min-height: 245px;
    }

    .journal-card__content {
        right: 10px;
        bottom: 11px;
        left: 10px;
    }

    .journal-card__content h3 {
        font-size: 1.65rem;
    }

    .journal-card__content p {
        display: none;
    }

   
}

/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


@keyframes mobileButtonGlow {
    0%,
    100% {
        box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.28),
            0 0 0 rgba(233, 52, 130, 0);
    }

    50% {
        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.32),
            0 0 16px rgba(233, 52, 130, 0.16);
    }
}

@keyframes mobileButtonShine {
    0%,
    55% {
        left: -130%;
    }

    78%,
    100% {
        left: 140%;
    }
}




/* HERO INICIO — DESCRIPCIÓN MÓVIL */
/* =========================================================
   HERO INICIO — AJUSTE RESPONSIVE SOLO PARA MÓVIL
========================================================= */

@media (max-width: 720px) {

    .hero__content {
        width: 100%;
        padding-inline: 20px;
    }

    .hero__title {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-size: clamp(2.15rem, 10.5vw, 3.6rem);
        line-height: 0.95;
        letter-spacing: -0.045em;

        white-space: nowrap;
        text-wrap: nowrap;
    }

    .hero__description {
        width: 100%;
        max-width: 100%;

        margin-top: 13px;

        font-size: clamp(0.82rem, 3.15vw, 0.96rem);
        line-height: 1.4;
        letter-spacing: -0.015em;

        white-space: nowrap;
        text-wrap: nowrap;
    }
}

@media (max-width: 390px) {

    .hero__content {
        padding-inline: 16px;
    }

    .hero__title {
        font-size: clamp(2rem, 10vw, 2.75rem);
        letter-spacing: -0.05em;
    }

    .hero__description {
        font-size: clamp(0.76rem, 3vw, 0.78rem);
        letter-spacing: -0.02em;
    }
}

/* ==========================================
   HERO MÓVIL - ESPACIADO
========================================== */

@media (max-width:720px){

    .hero__title{
        margin-bottom:8px !important;
    }

    .hero__description{
        margin-top:0 !important;
        margin-bottom:18px !important;
    }

    .hero__eyebrow{
        margin-bottom:10px !important;
    }

}

/* =========================================================
   MENÚ FIJO EN TODA LA WEB
========================================================= */

.header,
.header--inner {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4000;

    width: 100%;

    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

/* Arriba de la página: transparente sobre la portada */

.header:not(.is-scrolled),
.header--inner:not(.is-scrolled) {
    background: transparent !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    box-shadow: none !important;
}

/* Al bajar: fondo oscuro para que el menú siempre se lea */

.header.is-scrolled,
.header--inner.is-scrolled {
    background: rgba(7, 6, 7, 0.9) !important;

    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22) !important;
}

/* En móvil queda siempre por encima del menú desplegable */

@media (max-width: 720px) {

    .header,
    .header--inner {
        height: 78px;
    }

    .mobile-menu {
        z-index: 3900;
    }

    .menu-button {
        position: relative;
        z-index: 4100;
    }
}




/* =========================================================
   HEADER FIJO GLOBAL — TODA LA WEB
========================================================= */

html body .header,
html body .header.header--inner {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 5000 !important;

    width: 100% !important;
    max-width: none !important;

    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Al principio de cada página */

html body .header:not(.is-scrolled),
html body .header.header--inner:not(.is-scrolled) {
    background: transparent !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    box-shadow: none !important;
}

/* Al bajar */

html body .header.is-scrolled,
html body .header.header--inner.is-scrolled {
    background: rgba(7, 6, 7, 0.9) !important;

    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24) !important;
}

/* El desplegable queda por debajo del botón, pero encima de la web */

html body .mobile-menu {
    z-index: 4900 !important;
}

html body .menu-button {
    position: relative;
    z-index: 5100 !important;
}

/* =========================================================
   FOOTER — ENLACES DESTACADOS
========================================================= */

.footer__column-title {
    margin-bottom: 14px;

    color: rgba(213, 178, 112, 0.78);

    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer__featured-link {
    display: grid;
    gap: 6px;

    padding: 15px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__featured-link span {
    color: #ef6da8;

    font-size: 0.41rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer__featured-link strong {
    max-width: 285px;

    color: rgba(255, 255, 255, 0.88);

    font-family: var(--font-title);
    font-size: 1.06rem;
    font-weight: 400;
    line-height: 1.2;
}

.footer__featured-link small {
    color: rgba(255, 255, 255, 0.38);

    font-size: 0.42rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer__featured-link:hover strong {
    color: #f5abc9;
}

@media (max-width: 720px) {

    .footer__column-title {
        margin-top: 8px;
    }

    .footer__featured-link {
        padding: 13px 0;
    }

    .footer__featured-link strong {
        max-width: 100%;

        font-size: 1rem;
    }
}


/* =====================================================
   ACCIONES DEL HEADER
===================================================== */

.header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* =====================================================
   SELECTOR DE IDIOMA
===================================================== */

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.35);
}

.language-switcher__button {
    padding: 4px 0;

    border: 0;

    background: transparent;
    color: rgba(255, 255, 255, 0.48);

    font-family: var(--font-body);
    font-size: 0.46rem;
    font-weight: 600;
    letter-spacing: 0.14em;

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.language-switcher__button:hover,
.language-switcher__button.is-active {
    color: #ffffff;
}

.language-switcher__button.is-active {
    border-bottom: 1px solid #ef5e9f;
}

/* =====================================================
   PC
===================================================== */

@media (min-width: 901px) {

    .menu-button {
        display: none;
    }
}

/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 900px) {

    .header__actions {
        margin-left: auto;

        gap: 13px;
    }

    .header__contact {
        display: none;
    }

    .language-switcher {
        gap: 5px;
    }

    .language-switcher__button {
        font-size: 0.43rem;
        letter-spacing: 0.1em;
    }

    .menu-button {
        position: relative;
        z-index: 3;

        flex: 0 0 auto;
    }
}

/* =====================================================
   HEADER + SELECTOR DE IDIOMA CORREGIDO
===================================================== */

.header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    flex: 0 0 auto;

    color: rgba(255, 255, 255, 0.35);
}

.language-switcher__button {
    padding: 4px 0;

    border: 0;
    border-bottom: 1px solid transparent;

    background: transparent;
    color: rgba(255, 255, 255, 0.48);

    font-family: var(--font-body);
    font-size: 0.46rem;
    font-weight: 600;
    letter-spacing: 0.14em;

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.language-switcher__button:hover,
.language-switcher__button.is-active {
    color: #ffffff;
}

.language-switcher__button.is-active {
    border-bottom-color: #ef5e9f;
}

/* PC GRANDE */

@media (min-width: 1181px) {

    .header__contact {
        margin-right: 8px;
    }

    
}

/* PC PEQUEÑO Y TABLET */

@media (min-width: 761px) and (max-width: 1180px) {

    .desktop-nav {
        display: none;
    }

    .header__actions {
        margin-left: auto;
        gap: 18px;
    }

    .header__contact {
        display: inline-flex;
    }

    .menu-button {
        position: relative;
        z-index: 1002;

        display: flex;
        flex: 0 0 auto;
    }
}

/* MÓVIL */

@media (max-width: 760px) {

    .desktop-nav {
        display: none;
    }

    .header__actions {
        margin-left: auto;
        gap: 12px;
    }

    .header__contact {
        display: none;
    }

    .language-switcher {
        gap: 5px;
    }

    .language-switcher__button {
        font-size: 0.42rem;
        letter-spacing: 0.1em;
    }

    .menu-button {
        position: relative;
        z-index: 1002;

        display: flex;
        flex: 0 0 auto;
    }

    /* =====================================================
   HOME - MANIFIESTO
===================================================== */

.manifesto{
    padding:80px 0;
}

.manifesto__small{
    font-size:.72rem;
    letter-spacing:.28em;
    margin-bottom:18px;
}

.manifesto__title{
    max-width:290px;
    margin:0 auto;

    font-size:3rem;
    line-height:.92;
    letter-spacing:-.04em;

    text-wrap:balance;
}




}

/* =====================================================
   HOME - MANIFIESTO (MÓVIL)
===================================================== */

@media (max-width:720px){

    .manifesto__content{
        padding:0 22px;
        text-align:left;
    }

    .manifesto__small{
        margin-left:0;
        margin-bottom:16px;

        font-size:.72rem;
        letter-spacing:.28em;
    }

    .manifesto__title{

        max-width:340px;

        margin:0;

        font-size:2.45rem;

        line-height:.92;

        letter-spacing:-.04em;

        text-wrap:balance;
    }

}



/* =========================================================
   FOOTER GLOBAL · TRES COLUMNAS
========================================================= */

.footer{
    position:relative;
    background:#080808;
    border-top:1px solid rgba(255,255,255,.10);
    color:#fff;
}

.footer__main{
    width:min(1180px, calc(100% - 72px));
    margin:0 auto;

    display:grid;
    grid-template-columns:minmax(260px, 1.15fr) .8fr 1.2fr;
    gap:72px;

    padding:86px 0 72px;
}

.footer__brand{
    max-width:320px;
}

.footer__logo{
    display:inline-flex;
    width:150px;
    margin-bottom:26px;
}

.footer__logo img{
    display:block;
    width:100%;
    height:auto;
}

.footer__description{
    max-width:280px;
    margin:0 0 24px;

    font-size:.88rem;
    line-height:1.8;
    color:rgba(255,255,255,.64);
}

.footer__social{
    display:flex;
    gap:12px;
}

.footer__social a{
    width:38px;
    height:38px;

    display:grid;
    place-items:center;

    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;

    color:#fff;
    font-size:.66rem;
    letter-spacing:.08em;
    text-decoration:none;

    transition:
        border-color .3s ease,
        color .3s ease,
        transform .3s ease,
        background-color .3s ease;
}

.footer__social a:hover{
    border-color:#d9b572;
    color:#d9b572;
    background:rgba(217,181,114,.06);
    transform:translateY(-3px);
}

.footer__column{
    min-width:0;
}

.footer__column-title{
    margin:0 0 24px;

    font-family:var(--font-title);
    font-size:1.15rem;
    font-weight:400;
    line-height:1.1;

    color:#fff;
}

.footer__links{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
}

.footer__links a{
    position:relative;

    color:rgba(255,255,255,.66);
    font-size:.78rem;
    line-height:1.55;
    text-decoration:none;

    transition:
        color .3s ease,
        transform .3s ease;
}

.footer__links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;

    width:0;
    height:1px;

    background:#d9b572;

    transition:width .3s ease;
}

.footer__links a:hover{
    color:#fff;
    transform:translateX(4px);
}

.footer__links a:hover::after{
    width:100%;
}

.footer__bottom{
    width:min(1180px, calc(100% - 72px));
    margin:0 auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    padding:24px 0 28px;

    border-top:1px solid rgba(255,255,255,.09);
}

.footer__bottom p{
    margin:0;

    font-size:.66rem;
    line-height:1.5;
    letter-spacing:.08em;

    color:rgba(255,255,255,.46);
}


/* =========================================================
   FOOTER · TABLET
========================================================= */

@media (max-width:1180px){

    .footer__main{
        grid-template-columns:1fr 1fr;
        gap:54px 42px;
    }

    .footer__brand{
        grid-column:1 / -1;
        max-width:380px;
    }

}


/* =========================================================
   FOOTER · MÓVIL
========================================================= */

@media (max-width:720px){

    .footer__main{
        width:calc(100% - 42px);

        grid-template-columns:1fr;
        gap:42px;

        padding:62px 0 48px;
    }

    .footer__brand{
        grid-column:auto;
        max-width:100%;
    }

    .footer__logo{
        width:110px;
        margin-bottom:20px;
    }

    .footer__description{
        max-width:310px;

        font-size:.80rem;
        line-height:1.7;
    }

    .footer__column-title{
        margin-bottom:18px;
        font-size:1.05rem;
    }

    .footer__links{
        gap:12px;
    }

    .footer__links a{
        font-size:.75rem;
        line-height:1.5;
    }

    .footer__bottom{
        width:calc(100% - 42px);

        flex-direction:column;
        align-items:flex-start;
        gap:8px;

        padding:21px 0 24px;
    }

    .footer__bottom p{
        font-size:.60rem;
    }

}





/* =========================================================
   HEADER, CURSOR Y FOOTER · COMPORTAMIENTO GLOBAL DEFINITIVO
========================================================= */

/* Cursor únicamente para dispositivos con ratón */

@media (hover: hover) and (pointer: fine) {

    html,
    body,
    body *,
    a,
    button,
    input,
    textarea,
    select,
    summary,
    label,
    [role="button"] {
        cursor: none !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: block !important;
        position: fixed !important;
        pointer-events: none !important;
        z-index: 99999 !important;
    }
}

/* Ocultarlo solo en dispositivos táctiles */

@media (hover: none), (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}


/* =========================================================
   PC GRANDE
========================================================= */

@media (min-width: 1181px) {

    .header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }

    .desktop-nav {
        display: flex;
    }

    .header__contact {
        display: inline-flex;
    }

    .menu-button {
        display: none;
    }
}


/* =========================================================
   PC PEQUEÑO Y TABLET
========================================================= */

@media (min-width: 761px) and (max-width: 1180px) {

    .header {
        display: flex;
        align-items: center;
        padding: 0 4%;
    }

    .header__logo {
        margin-right: auto;
    }

    .desktop-nav {
        display: none !important;
    }

    .header__actions {
        display: flex;
        align-items: center;
        margin-left: auto;
        gap: 18px;
    }

    .header__contact {
        display: inline-flex !important;
    }

    .menu-button {
        display: flex !important;
        flex: 0 0 auto;
    }

    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 54px 42px;
    }

    .footer__brand {
        grid-column: 1 / -1;
        max-width: 380px;
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 760px) {

    .header {
        display: flex;
        align-items: center;
        padding: 0 21px;
    }

    .header__logo {
        margin-right: auto;
    }

    .desktop-nav,
    .header__contact {
        display: none !important;
    }

    .header__actions {
        display: flex;
        align-items: center;
        margin-left: auto;
        gap: 12px;
    }

    .menu-button {
        display: flex !important;
        flex: 0 0 auto;
    }

    .footer__main {
        width: calc(100% - 42px);
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 62px 0 48px;
    }

    .footer__brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer__bottom {
        width: calc(100% - 42px);
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}




/* =========================================================
   FLECHA DE SERVICIOS SIN EMOJI
========================================================= */

.service-card__arrow {
    position: relative;
}

.service-card__arrow::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 10px;
    height: 10px;

    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;

    transform: translate(-35%, -65%);
}

.service-card__arrow::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 14px;
    height: 1.5px;

    background: currentColor;

    transform:
        translate(-58%, -50%)
        rotate(-45deg);
}





/* =========================================================
   FLECHA CTA LUJOSA · DIAGONAL
========================================================= */

.cta-arrow {
    position: relative;

    width: 10px;
    height: 10px;

    display: inline-block;
    flex: 0 0 10px;

    margin-left: 4px;

    color: currentColor;

    transform: translateY(1px);
}

/* Punta de la flecha */

.cta-arrow::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 5px;
    height: 5px;

    border-top: 1.3px solid currentColor;
    border-right: 1.3px solid currentColor;
}

/* Línea diagonal */

.cta-arrow::after {
    content: "";

    position: absolute;
    left: 1px;
    bottom: 1px;

    width: 7px;
    height: 1.3px;

    background: currentColor;

    transform: rotate(-45deg);
    transform-origin: left center;
}

.cta-button:hover .cta-arrow {
    transform: translate(2px, -2px);
    transition: transform 0.3s ease;
}




/* ==========================================================
   ICON ARROW
========================================================== */

.icon-arrow{
    position: relative;

    display: inline-block;

    width: 12px;
    height: 12px;

    margin-left: 4px;

    flex: 0 0 12px;

    vertical-align: middle;
}

/* Punta */

.icon-arrow::before{
    content:"";

    position:absolute;

    top:1px;
    right:0;

    width:6px;
    height:6px;

    border-top:1.6px solid currentColor;
    border-right:1.6px solid currentColor;
}

/* Línea */

.icon-arrow::after{
    content:"";

    position:absolute;

    left:1px;
    bottom:2px;

    width:9px;
    height:1.6px;

    background:currentColor;

    transform:rotate(-45deg);
    transform-origin:left center;
}

@media (max-width:768px){

    .icon-arrow{

        width:10px;
        height:10px;

        margin-left:3px;

        flex-basis:10px;
    }

    .icon-arrow::before{

        width:5px;
        height:5px;

        border-top-width:1.4px;
        border-right-width:1.4px;

        top:1px;
        right:0;
    }

    .icon-arrow::after{

        width:7px;
        height:1.4px;

        left:1px;
        bottom:2px;
    }

}
