@font-face {
    font-family: "Encode Sans";
    src: url("encode-sans-latin-200-normal.woff") format("woff");
    font-style: normal;
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: "Encode Sans";
    src: url("encode-sans-latin-400-normal.woff") format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Encode Sans";
    src: url("encode-sans-latin-600-normal.woff") format("woff");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Encode Sans";
    src: url("encode-sans-latin-800-normal.woff") format("woff");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    color-scheme: dark;
    font-family: "Encode Sans", system-ui, sans-serif;
    font-synthesis: none;
    --page-padding: clamp(1.25rem, 5vw, 5rem);
    --accent: #ff6a1a;
    --ink: #f6f3ed;
    --muted: rgba(246, 243, 237, 0.7);
    --surface: #11100f;
    --header-height: 4.0625rem;
}

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

html,
body {
    height: 100%;
    margin: 0;
}

html {
    background: var(--surface);
}

body {
    --header-color: 17 16 15;
    --header-opacity: 0.78;
    --header-text: #f6f3ed;
    --header-text-muted: rgba(246, 243, 237, 0.7);
    overflow: hidden;
    color: var(--ink);
    background: var(--surface);
}

@media (min-width: 48.001rem) {
    body[data-active-slide="alkimo"] {
        --header-color: 17 16 15;
        --header-opacity: 0.78;
    }

    body[data-active-slide="kultur-go"] {
        --header-color: 177 177 177;
        --header-opacity: 0.82;
        --header-text: #292929;
        --header-text-muted: rgba(41, 41, 41, 0.7);
    }

    body[data-active-slide="interactivo"],
    body[data-active-slide="experiencias"],
    body[data-active-slide="juegos"] {
        --header-color: 225 225 225;
        --header-opacity: 0.82;
        --header-text: #292929;
        --header-text-muted: rgba(41, 41, 41, 0.7);
    }

    body[data-active-slide="hazitek"] {
        --header-color: 255 255 255;
        --header-opacity: 0.97;
        --header-text: #292929;
        --header-text-muted: rgba(41, 41, 41, 0.7);
    }
}

@media (min-width: 61.876rem) {
    body[data-active-slide="kultur-play"] {
        --header-color: 255 248 235;
        --header-opacity: 0.68;
        --header-text: #292929;
        --header-text-muted: rgba(41, 41, 41, 0.7);
    }
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    padding: 1rem;
    color: var(--header-text);
    background-color: rgb(var(--header-color) / var(--header-opacity));
    -webkit-backdrop-filter: blur(0.85rem);
    backdrop-filter: blur(0.85rem);
    pointer-events: none;
    transition: background-color 650ms ease;
}

@media (prefers-reduced-motion: reduce) {
    .site-header {
        transition: none;
    }
}

.language-selector,
.social-links {
    pointer-events: auto;
}

.language-selector,
.social-links {
    display: flex;
    align-items: center;
}

.language-selector {
    gap: 0.5rem;
}

.language-selector a {
    padding: 0.15rem 0;
    color: var(--header-text-muted);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-decoration: none;
}

.language-selector a:hover,
.language-selector a:focus-visible,
.language-selector a[aria-current="page"] {
    color: var(--header-text);
}

.language-selector a[aria-current="page"] {
    border-bottom: 1px solid currentColor;
    font-weight: 600;
}

.social-links {
    gap: clamp(0.65rem, 1.5vw, 1rem);
}

.social-links a {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    color: var(--header-text-muted);
    font-size: 1.35rem;
    line-height: 1;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    color: var(--header-text);
    transform: translateY(-0.15rem);
}

.social-links a:focus-visible {
    border-radius: 0.2rem;
    outline: 0.125rem solid currentColor;
    outline-offset: 0.15rem;
}

.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

.fullpage {
    height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.fullpage::-webkit-scrollbar {
    display: none;
}

.slide {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 100svh;
    padding: clamp(7rem, 14vh, 10rem) var(--page-padding) clamp(5rem, 10vh, 7rem);
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.slide::before,
.slide::after {
    position: absolute;
    z-index: -1;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.slide::before {
    top: 50%;
    right: clamp(-16rem, -12vw, -6rem);
    width: clamp(22rem, 52vw, 50rem);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateY(-50%);
}

.slide-video::before,
.slide-video::after {
    display: none;
}

.slide-background-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.slide-corporate-brand {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 3vh, 2rem);
    width: min(72vw, 34rem);
    transform: translate(-50%, -50%);
}

.slide-corporate-logo {
    display: block;
    width: 100%;
    height: auto;
    filter:
        drop-shadow(0 0.35rem 0.6rem rgba(0, 0, 0, 0.85))
        drop-shadow(0 0 1.4rem rgba(0, 0, 0, 0.55));
}

.slide-corporate-subtitle {
    width: max-content;
    max-width: 90vw;
    margin: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.025em;
    text-align: center;
    text-shadow: 0 0.2rem 0.65rem rgba(0, 0, 0, 0.95);
}

.project-slide {
    align-items: start;
    justify-items: start;
    padding-top: var(--header-height);
}

.project-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
}

.slide-alkimo-overlay {
    background:
        linear-gradient(90deg, rgba(28, 14, 6, 0.7) 0%, rgba(28, 14, 6, 0.28) 58%, rgba(5, 10, 12, 0.2) 100%),
        rgba(35, 20, 10, 0.2);
}

.project-panel {
    position: relative;
    z-index: 1;
    width: min(46rem, calc(100vw - 19rem));
    margin-left: clamp(0rem, 7vw, 8rem);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    background: rgba(17, 16, 15, 0.78);
    clip-path: polygon(0 0, 100% 0, 100% 93%, 92% 100%, 0 100%);
    -webkit-backdrop-filter: blur(0.85rem);
    backdrop-filter: blur(0.85rem);
}

.project-title {
    max-width: none !important;
    margin: 0 !important;
    font-size: 1.9rem !important;
    font-weight: 300 !important;
    line-height: 1.15 !important;
    letter-spacing: 0.025em !important;
    text-wrap: wrap !important;
}

.project-subtitle {
    max-width: none;
    margin: clamp(0.75rem, 1.5vh, 1rem) 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.18;
    text-wrap: wrap;
}

.project-youtube-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.25);
}

.project-youtube-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.project-description {
    margin: 1.25rem 0 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.55;
}

.project-description strong {
    font-family: inherit;
    font-weight: 600;
}

.project-button {
    display: table;
    margin: 1.25rem auto 0;
    padding: 0.65rem 0.9rem;
    border-radius: 0.15rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
    text-decoration: none;
    transition: filter 180ms ease, transform 180ms ease;
}

.project-button:hover,
.project-button:focus-visible {
    color: #fff;
    filter: brightness(1.12);
    transform: translateY(-0.1rem);
}

.project-button:focus-visible {
    outline: 0.15rem solid currentColor;
    outline-offset: 0.2rem;
}

.alkimo-email-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem auto 0;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.alkimo-email-link:hover,
.alkimo-email-link:focus-visible {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-0.1rem);
}

.slide-kultur-go {
    color: #292929;
}

.slide-kultur-go-overlay {
    background: rgba(255, 255, 255, 0.08);
}

.kultur-go-panel {
    width: min(46rem, calc(100vw - 34rem));
    color: #292929;
    background: rgba(177, 177, 177, 0.82);
}

.kultur-go-title span {
    font-weight: 600;
}

.kultur-go-button {
    background: #f4511e;
}

.project-phone {
    position: absolute;
    z-index: 2;
    width: 23.5rem;
    aspect-ratio: 632 / 1234;
}

.project-phone video,
.project-phone iframe {
    position: absolute;
    z-index: 0;
    height: 92.1%;
    border-radius: 10% / 5%;
    object-fit: cover;
}

.project-phone video {
    inset: 3.8% 8.7% 4.1%;
    width: 82.6%;
}

.project-phone iframe {
    inset: 3.8% 7% 4.1%;
    border: 0;
    background: #000;
}

.project-phone img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kultur-go-phone {
    top: calc(var(--header-height) + 1rem);
    right: auto;
    left: calc(
        50%
        + 17.3125rem
        + clamp(0rem, 3.5vw, 4rem)
        + clamp(0.625rem, 2.5vw, 2.5rem)
    );
    transform: translateX(-50%);
}

.slide-kultur-play {
    color: #292929;
}

.kultur-play-overlay {
    background: rgba(255, 244, 222, 0.08);
}

.kultur-play-layout {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 22rem minmax(0, 29rem);
    align-items: start;
    gap: 0;
    height: calc(100svh - var(--header-height));
    margin-left: clamp(1rem, 12vw, 14rem);
    margin-right: 11.625rem;
    padding-top: 1rem;
}

.kultur-play-phone {
    position: relative;
    align-self: start;
    width: 22rem;
}

.kultur-play-panel {
    position: relative;
    top: 2.5rem;
    align-self: start;
    width: 100%;
    min-width: 0;
    margin: 0;
    color: #292929;
    background: transparent;
    clip-path: none;
    box-shadow: none;
    isolation: isolate;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.kultur-play-panel::before {
    position: absolute;
    z-index: -1;
    inset: -2.5rem;
    content: "";
    background: rgba(255, 248, 235, 0.68);
    -webkit-backdrop-filter: blur(1.75rem) saturate(110%);
    backdrop-filter: blur(1.75rem) saturate(110%);
    -webkit-mask-image:
        linear-gradient(to right, transparent, #000 3.5rem, #000 calc(100% - 3.5rem), transparent),
        linear-gradient(to bottom, transparent, #000 3.5rem, #000 calc(100% - 3.5rem), transparent);
    mask-image:
        linear-gradient(to right, transparent, #000 3.5rem, #000 calc(100% - 3.5rem), transparent),
        linear-gradient(to bottom, transparent, #000 3.5rem, #000 calc(100% - 3.5rem), transparent);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    pointer-events: none;
}

.kultur-play-panel .project-title span {
    font-weight: 600;
}

.kultur-play-projects {
    margin-top: 1.25rem;
}

.kultur-play-projects h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 400;
}

.kultur-play-project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
    align-items: center;
    gap: 1rem;
}

.kultur-play-project {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    align-items: center;
    justify-self: center;
    gap: 0.6rem;
    width: min(11rem, 100%);
}

.kultur-play-project img {
    display: block;
    justify-self: center;
    width: auto;
    max-width: 3.25rem;
    height: 3.375rem;
    object-fit: contain;
}

.kultur-play-project p {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.25;
}

.kultur-play-project strong,
.kultur-play-project span {
    display: block;
}

.kultur-play-project strong {
    font-weight: 600;
}

.kultur-play-project span {
    margin-top: 0.2rem;
    font-weight: 300;
}

.kultur-play-button {
    background: #f4511e;
}

@media (min-width: 48.001rem) and (max-width: 61.875rem) {
    .kultur-play-layout {
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        grid-template-columns: 1fr;
        place-items: center;
        width: auto;
        height: auto;
        margin: 0;
        padding: 1rem 0;
    }

    .kultur-play-phone {
        align-self: center;
    }

    .kultur-play-panel {
        display: none;
    }
}

.project-overlay-dark {
    background: rgba(17, 16, 15, 0.5);
}

.project-panel-light {
    color: #292929;
    background: rgba(225, 225, 225, 0.82);
}

.slide-experiencias .project-panel,
.slide-juegos .project-panel,
.slide-hazitek .project-panel {
    margin-top: -1px;
}

.slide-portfolio {
    padding: 0;
    color: #292929;
}

.slide-portfolio::before,
.slide-portfolio::after {
    display: none;
}

.portfolio-overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
}

.portfolio-scroll {
    position: absolute;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    overscroll-behavior-y: contain;
}

.portfolio-client-banner {
    position: absolute;
    top: clamp(1rem, 3vh, 2.5rem);
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(4.5rem, 10vh, 7rem);
}

.portfolio-client-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.portfolio-content {
    position: absolute;
    top: clamp(7.5rem, 16vh, 11.5rem);
    right: auto;
    bottom: auto;
    left: calc(50% - 4.6875rem);
    display: flex;
    flex-direction: column;
    width: min(81rem, calc(100vw - 13.375rem));
    padding-bottom: 1.5rem;
    overflow: visible;
    transform: translateX(-50%);
}

.slide-portfolio .portfolio-heading h1 {
    max-width: none;
    margin: 0;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.015em;
}

.portfolio-projects-scroll {
    flex: 0 0 auto;
    margin-top: clamp(1.5rem, 5vh, 3.5rem);
}

@media (min-width: 48.001rem) {
    .portfolio-scroll {
        scrollbar-color: rgba(41, 41, 41, 0.48) rgba(41, 41, 41, 0.08);
        scrollbar-width: thin;
    }

    .portfolio-scroll::-webkit-scrollbar {
        width: 0.55rem;
    }

    .portfolio-scroll::-webkit-scrollbar-track {
        border-radius: 999px;
        background: rgba(41, 41, 41, 0.08);
    }

    .portfolio-scroll::-webkit-scrollbar-thumb {
        border: 0.12rem solid transparent;
        border-radius: 999px;
        background: rgba(41, 41, 41, 0.48);
        background-clip: padding-box;
    }

    .portfolio-scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(41, 41, 41, 0.68);
        background-clip: padding-box;
    }
}

.portfolio-scroll:focus-visible {
    outline: 0.125rem solid rgba(41, 41, 41, 0.7);
    outline-offset: -0.2rem;
}

.portfolio-heading p {
    max-width: 54rem;
    margin: clamp(1rem, 2.5vh, 1.7rem) 0 0;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.65;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 26rem));
    gap: 1.5rem;
    padding-bottom: 0.25rem;
}

.portfolio-card {
    position: relative;
    width: 100%;
    max-width: 26rem;
    min-height: 100%;
    padding: 1.5rem 1.5rem 4.15rem;
    background: rgba(180, 180, 180, 0.72);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 90%);
}

.portfolio-card h2 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
}

.portfolio-card-tags {
    margin: 0.75rem 0 0.7rem;
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 0.025em;
    line-height: 1.35;
    text-transform: uppercase;
}

.portfolio-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 368 / 207;
    object-fit: cover;
}

.portfolio-card-description {
    margin: 0.8rem 0 0;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.55;
}

.portfolio-card-more {
    position: absolute;
    right: 1.5rem;
    bottom: 1.15rem;
    display: inline-flex;
    min-height: 2.5rem;
    padding: 0.4rem 0.8rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: #fff;
    background: rgba(120, 120, 120, 0.62);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 150ms ease;
}

.portfolio-card-more:hover,
.portfolio-card-more:focus-visible {
    color: #fff;
    background: rgba(95, 95, 95, 0.9);
    outline: 0.12rem solid #fff;
    outline-offset: 0.12rem;
}

.portfolio-card-more-icon {
    position: relative;
    flex: 0 0 0.75rem;
    width: 0.75rem;
    height: 0.75rem;
    overflow: hidden;
    color: transparent;
    font-size: 0;
}

.portfolio-card-more-icon::before,
.portfolio-card-more-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.75rem;
    height: 0.08rem;
    content: "";
    background: #fff;
    transform: translate(-50%, -50%);
}

.portfolio-card-more-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.portfolio-card-more-label {
    line-height: 1rem;
}

@media (min-width: 48.001rem) and (max-width: 75rem) {
    .portfolio-content {
        width: min(53.5rem, calc(100vw - 13.375rem));
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 26rem));
        width: 100%;
    }
}

.slide-hazitek::before,
.slide-hazitek::after {
    display: none;
}

.hazitek-overlay {
    background: rgba(40, 178, 196, 0.08);
}

.hazitek-panel {
    color: #292929;
    background: rgba(255, 255, 255, 0.97);
}

.hazitek-content-scroll {
    margin-top: 1.25rem;
}

.hazitek-content-scroll p {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.55;
}

.hazitek-content-scroll strong {
    font-family: inherit;
    font-weight: 600;
}

.hazitek-legal {
    text-transform: uppercase;
}

.hazitek-logos {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 1.75rem;
}

.slide-contacto {
    color: #292929;
    background: #fff;
}

.contacto-layout {
    position: absolute;
    inset: var(--header-height) 0 0;
    display: grid;
    grid-template-columns: minmax(25rem, 40vw) minmax(0, 1fr);
    background: #fff;
}

.contacto-mapa {
    min-width: 0;
    min-height: 0;
    background: #e6e9e4;
}

.contacto-mapa iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contacto-panel {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 2rem 13.5rem 2rem 3rem;
    overflow-y: auto;
}

.contacto-contenido {
    width: min(32rem, 100%);
}

.slide-contacto .contacto-contenido h1 {
    max-width: none;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.025em;
}

.contacto-contenido h2 {
    margin: 1.5rem 0 1.35rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.contacto-formulario {
    display: grid;
    gap: 1rem;
}

.contacto-campo {
    display: grid;
    gap: 0.35rem;
}

.contacto-campo label {
    color: #888;
    font-size: 0.95rem;
    font-weight: 300;
}

.contacto-campo input,
.contacto-campo textarea {
    width: 100%;
    border: 0.0625rem solid #d1d5d8;
    border-radius: 0;
    color: #292929;
    background: #fff;
    font: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contacto-campo input {
    height: 2.2rem;
    padding: 0.35rem 0.55rem;
}

.contacto-campo textarea {
    min-height: 7.5rem;
    padding: 0.55rem;
    resize: vertical;
}

.contacto-campo input:focus,
.contacto-campo textarea:focus {
    border-color: #595959;
    box-shadow: 0 0 0 0.125rem rgba(41, 41, 41, 0.12);
}

.contacto-privacidad {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #777;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.45;
}

.contacto-privacidad input {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    margin-top: 0.12rem;
    accent-color: var(--accent);
}

.contacto-privacidad a {
    color: inherit;
    text-underline-offset: 0.15em;
}

.contacto-enviar {
    justify-self: start;
    padding: 0.65rem 0.9rem;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.contacto-enviar:hover,
.contacto-enviar:focus-visible {
    background: #dc5000;
}

.contacto-enviar:disabled {
    cursor: wait;
    opacity: 0.62;
}

.contacto-estado,
.contacto-recaptcha-mensaje {
    margin: 0 0 1rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
    line-height: 1.45;
}

.contacto-estado-exito {
    color: #1b5d36;
    background: #e2f3e9;
}

.contacto-estado-error,
.contacto-recaptcha-mensaje {
    color: #8a2525;
    background: #f8e5e5;
}

.contacto-website-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.contacto-resultado-modal {
    color: #292929;
}

.contacto-resultado-modal .modal-content {
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.28);
}

.contacto-resultado-modal .modal-header {
    align-items: flex-start;
    border-bottom-color: rgba(41, 41, 41, 0.12);
}

.contacto-resultado-modal-encabezado {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 1rem;
}

.contacto-resultado-modal-icono {
    flex: 0 0 auto;
    font-size: 1.45rem;
    line-height: 1;
}

.contacto-resultado-modal-exito .contacto-resultado-modal-icono {
    color: #247544;
}

.contacto-resultado-modal-error .contacto-resultado-modal-icono {
    color: #a72e2e;
}

.contacto-resultado-modal .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
}

.contacto-resultado-modal .modal-body p {
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.55;
}

.contacto-resultado-modal .modal-footer {
    border-top: 0;
    padding-top: 0;
}

.contacto-resultado-modal-cerrar {
    border: 0;
    border-radius: 0;
    color: #fff;
    background: var(--accent);
}

.contacto-resultado-modal-cerrar:hover,
.contacto-resultado-modal-cerrar:focus-visible {
    color: #fff;
    background: #dc5000;
}

@media (min-width: 48.001rem) and (max-width: 75rem) {
    .contacto-layout {
        grid-template-columns: minmax(22rem, 38vw) minmax(0, 1fr);
    }

    .contacto-panel {
        padding-right: 12rem;
        padding-left: 2rem;
    }
}

.slide-redes::before,
.slide-redes::after {
    display: none;
}

.redes-layout {
    position: absolute;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 11.625rem 2rem clamp(2rem, 16vw, 19.5rem);
}

.redes-content {
    width: min(38rem, 100%);
    transform: translateY(-1rem);
}

.slide-redes .redes-title {
    max-width: none;
    margin: 0 0 0.6rem;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.025em;
}

.redes-email {
    display: block;
    width: min(20rem, 100%);
    margin: 0;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.redes-email canvas {
    display: block;
    width: 20rem;
    max-width: 100%;
    height: 2.75rem;
}

.redes-email:focus-visible {
    border-radius: 0.2rem;
    outline: 0.15rem solid #fff;
    outline-offset: 0.25rem;
}

.redes-social-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-top: 0.35rem;
}

.redes-social-links a {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    color: #fff;
    font-size: 2.65rem;
    line-height: 1;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.redes-social-links a:hover,
.redes-social-links a:focus-visible {
    color: #fff;
    opacity: 0.78;
    transform: translateY(-0.15rem);
}

.redes-social-links a:focus-visible {
    outline: 0.125rem solid #fff;
    outline-offset: 0.2rem;
}

.redes-address {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 300;
}

.redes-footer {
    position: absolute;
    right: 15rem;
    bottom: 3.5rem;
    left: clamp(2rem, 16vw, 19.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    font-size: 0.8rem;
    font-weight: 300;
}

.redes-footer p {
    margin: 0;
}

.redes-legal-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.redes-legal-links a {
    color: inherit;
    text-decoration: none;
}

.redes-legal-links a + a::before {
    margin: 0 0.65rem;
    content: "|";
}

.redes-legal-links a:hover,
.redes-legal-links a:focus-visible {
    text-decoration: underline;
}

@media (min-width: 48.001rem) and (max-width: 96.5rem) {
    .kultur-go-panel {
        width: min(46rem, calc(100vw - 19rem));
    }

    .kultur-go-phone {
        display: none;
    }
}

.alkimo-email-link:focus-visible {
    outline: 0.15rem solid #fff;
    outline-offset: 0.2rem;
}

.slide::after {
    top: 50%;
    right: clamp(-11rem, -7vw, 0rem);
    width: clamp(14rem, 34vw, 34rem);
    aspect-ratio: 1;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), transparent 68%);
    transform: translateY(-50%);
}

.slide-content {
    width: min(52rem, 78vw);
    margin: auto 0;
}

.slide-eyebrow {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.slide h1 {
    max-width: 13ch;
    margin: 0;
    font-size: 6rem;
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.slide-description {
    max-width: 42rem;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: 1.35rem;
    font-weight: 200;
    line-height: 1.65;
    text-wrap: pretty;
}

.slide-number {
    position: absolute;
    right: var(--page-padding);
    bottom: 1.25rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.12);
    font-size: 12rem;
    font-weight: 800;
    line-height: 0.75;
}

.slide-1 { background: #12110f; }
.slide-2 { background: #31182b; }
.slide-3 { background: #143c45; }
.slide-4 { background: #3d1d16; }
.slide-5 { background: #242048; }
.slide-6 { background: #11100f; }
.slide-7 { background: #133447; }
.slide-8 { background: #3b2714; }
.slide-9 { background: #2d183d; }
.slide-10 { background: #183235; }
.slide-11 { background: #11100f; }

.slide-navigation {
    position: fixed;
    z-index: 30;
    top: 50%;
    right: 0;
    width: 9.375rem;
    transform: translateY(-50%);
}

.slide-navigation ol {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slide-navigation li {
    width: 9.375rem;
}

.slide-navigation a {
    display: flex;
    align-items: center;
    width: 9.375rem;
    min-height: 2.125rem;
    padding: 0.3125rem 0.625rem;
    color: #fff;
    background: #333;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    text-align: left;
    text-decoration: none;
    transition: background-color 300ms ease, width 300ms ease, margin-left 300ms ease;
}

.slide-navigation a:hover,
.slide-navigation a:focus-visible {
    width: 10rem;
    margin-left: -0.625rem;
    background: #555;
}

.slide-navigation a[aria-current="true"] {
    width: 10.625rem;
    margin-left: -1.25rem;
    background: #bdbdbd;
    font-weight: 600;
}

.slide-navigation a:focus-visible {
    outline: 0.1875rem solid #fff;
    outline-offset: 0.125rem;
}

.navigation-label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scroll-progress {
    position: fixed;
    z-index: 25;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0.2rem;
    background: rgba(255, 255, 255, 0.12);
}

.scroll-progress span {
    display: block;
    width: calc(100% / 11);
    height: 100%;
    background: var(--accent);
    transform: scaleX(1);
    transform-origin: left;
    transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.noscript-message {
    position: fixed;
    z-index: 50;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    margin: 0;
    padding: 1rem;
    color: #11100f;
    background: #fff;
    text-align: center;
}

.grecaptcha-badge {
    visibility: hidden;
}

body[data-active-slide="contacto"] .grecaptcha-badge {
    visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
