@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css') layer(bootstrap);

@font-face {
    font-family: "Marseille Fallback";
    src: local("Arial");
    size-adjust: 96.60%;
}

@layer bootstrap, app;

@layer app {

    :root {
        --smart-blue: #3066be;
        --baltic-blue: #065fa2;
        --yale-blue: #064c7f;
        --pale-sky: #adcfe6;
        --amber-flame: #fbb815;
        --sunflower-gold: #f1ae04;
        --silver: #cccccc;
        --blue-slate: #5d707f;
        --white: #ffffff;
        --black: #000000;
        --header-height: 78px;
        --transition-fast: 180ms ease;

        --font-primary: "Poppins", sans-serif;
        --font-marseille: "marseille", "Marseille Fallback", Arial, sans-serif;
    
    }

    html {
        scroll-behavior: auto;
        scroll-padding-top: calc(var(--header-height) + 1rem);
    }

    body {
        margin: 0;
        color: var(--black);
        background: var(--white);
        font-family: var(--font-primary);
        font-weight: 400;
        overflow-x: hidden;
    }

    body.modal-open {
        padding-right: 0 !important;
    }

    img,
    video {
        max-width: 100%;
    }

    a,
    img,
    video,
    svg {
        -webkit-user-drag: none;
    }

    a[draggable="false"],
    img[draggable="false"] {
        -webkit-user-drag: none;
    }

    button,
    a {
        touch-action: manipulation;
    }

    a {
        text-underline-offset: 0.2em;
    }

    :focus-visible {
        outline: 3px solid var(--amber-flame);
        outline-offset: 4px;
    }

    ::selection {
        color: var(--white);
        background: var(--smart-blue);
    }

    /* Accessibility */
    .skip-link {
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 99999;
        padding: 0.75rem 1rem;
        color: var(--black);
        background: var(--white);
        transform: translateY(-200%);
        transition: transform var(--transition-fast);
    }

    .skip-link:focus {
        transform: translateY(0);
    }

    /* Global styles */
    .section-dark {
        color: var(--white);
        background: radial-gradient(circle at 80% 50%, rgba(12, 117, 185, 0.16), transparent 40%), var(--black);
    }

    .section-eyebrow {
        margin-bottom: 2rem;
        font-family: var(--font-marseille);
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 700;
        font-style: normal;
        letter-spacing: 0.02em;
        color: var(--pale-sky);
    }

    .section-title {
        font-family: var(--font-marseille);
        font-weight: 700;
        font-style: normal;
    }

    .section-title--blue {
        color: var(--baltic-blue);
    }

    /* Header */
    .site-header {
        position: fixed;
        top: 1.25rem;
        left: 0;
        z-index: 1050;
        width: 100%;
        transition:
            opacity 400ms ease,
            transform 400ms ease,
            visibility 400ms ease;
    }

    .site-header--hidden {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-140%);
        pointer-events: none;
    }

    .site-header__navbar {
        padding: 0;
    }

    .site-header__container {
        position: relative;
        display: grid;
        grid-template-columns: minmax(180px, 1fr) auto auto auto;
        align-items: center;
        column-gap: clamp(0.75rem, 1.4vw, 1.5rem);
        width: calc(100% - 3rem);
        max-width: 1460px;
        min-height: 68px;
        padding: 0.5rem 1.15rem;
        background: rgba(100, 101, 100, 0.86);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0.95rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .site-header__brand {
        position: static;
        display: inline-flex;
        align-items: center;
        justify-self: start;
        width: max-content;
        margin: 0;
        padding: 0;
        border-radius: 5px;
    }

    .site-header__logo {
        display: block;
        width: clamp(145px, 13vw, 180px);
        height: auto;
    }

    .site-header__toggler {
        display: none;
        width: 42px;
        height: 42px;
        padding: 9px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 0.65rem;
        box-shadow: none;
    }

    .site-header__toggler-icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 100%;
        height: 100%;
    }

    .site-header__toggler-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--white);
        border-radius: 999px;
        transition:
            opacity 180ms ease,
            transform 180ms ease;
    }

    .site-header__toggler[aria-expanded="true"] 
    .site-header__toggler-icon span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header__toggler[aria-expanded="true"] 
    .site-header__toggler-icon span:nth-child(2) {
        opacity: 0;
    }

    .site-header__toggler[aria-expanded="true"] 
    .site-header__toggler-icon span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-header__collapse {
        display: flex;
        justify-content: flex-end;
        justify-self: end;
        width: auto;
    }

    .site-header__navigation {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: clamp(1.5rem, 2vw, 2.5rem);
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .site-header__link {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 0.6rem 0.15rem !important;
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.035em;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--white);
        border-radius: 5px;
        transition:
            color 180ms ease,
            opacity 180ms ease;
    }

    .site-header__link::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 2px;
        background: var(--amber-flame, #ffb51b);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 180ms ease;
    }

    .site-header__link:hover,
    .site-header__link:focus-visible {
        color: var(--amber-flame, #ffb51b);
    }

    .site-header__link:hover::after,
    .site-header__link:focus-visible::after {
        transform: scaleX(1);
    }

    .site-header__cta {
        position: relative;
        justify-self: end;
        min-width: 210px;
        padding: 0.72rem 1.25rem;
        font-size: 0.8rem;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: 0.02em;
        text-align: center;
        text-transform: uppercase;
        color: var(--black);
        background: linear-gradient(120deg, #f7a900, #ffd05a, #f7a900);
        background-size: 200% 100%;
        border: 0;
        border-radius: 999px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        animation:
            request-pulse 6s ease-in-out infinite,
            request-gradient 7s linear infinite;
        transition:
            transform 180ms ease,
            box-shadow 180ms ease;
    }

    .site-header__cta:hover {
        color: var(--black);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
        transform: translateY(-1px);
    }

    .site-header__cta:active {
        transform: translateY(0);
    }

    .site-header__language {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-self: end;
        width: 58px;
        height: 42px;
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 999px;
        transition:
            background-color 180ms ease,
            border-color 180ms ease,
            box-shadow 180ms ease;
    }

    .site-header__language:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .site-header__language:focus-within {
        border-color: var(--amber-flame);
        box-shadow: 0 0 0 3px rgba(251, 184, 21, 0.2);
    }

    .site-header__language-icon {
        position: absolute;
        left: 0.85rem;
        z-index: 1;
        display: grid;
        place-items: center;
        width: 16px;
        height: 16px;
        pointer-events: none;
    }

    .site-header__language-icon svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    .site-header__language-select {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        padding: 0;
        color: transparent;
        background: transparent;
        border: 0;
        outline: 0;
        appearance: none;
        cursor: pointer;
        text-align: center;
        text-align-last: center;
    }

    .site-header__language-select option {
        color: var(--black);
        background: var(--white);
        text-align: center;
        text-align-last: center;
    }

    .site-header__language-arrow {
        position: absolute;
        right: 0.8rem;
        z-index: 1;
        display: grid;
        place-items: center;
        width: 10px;
        height: 10px;
        pointer-events: none;
    }

    .site-header__language-arrow svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    /* Accesible */
    .site-header__brand:focus-visible,
    .site-header__link:focus-visible,
    .site-header__cta:focus-visible,
    .site-header__toggler:focus-visible {
        outline: 3px solid rgba(255, 190, 45, 0.95);
        outline-offset: 3px;
    }

    /* Hero */
    .hero-video-text {
        position: relative;
        display: grid;
        place-items: center;
        width: 100%;
        height: 100svh;
        min-height: 100dvh;
        background-color: var(--black);
        overflow: hidden;
        isolation: isolate;
    }

    .hero-video-text__background {
        position: absolute;
        inset: 0;
        z-index: -2;
        display: block;
        width: 100%;
        max-width: none;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-video-text__overlay {
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.28) 50%,
            rgba(0, 0, 0, 0.38) 100%
        );
        pointer-events: none;
    }

    .hero-video-text__title-wrapper {
        position: relative;
        z-index: 1;
        width: min(calc(100% - 2rem), 1600px);
        aspect-ratio: 1600 / 220;
        overflow: hidden;
    }

    .hero-video-text__svg {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-video-text__svg-title,
    .hero-video-text__reflection,
    .hero-video-text__outline {
        font-size: 65px;
        font-weight: 600;
        letter-spacing: -3px;
    }

    .hero-video-text__foreign {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-video-text__inside-video {
        display: block;
        width: 100%;
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-video-text__reflection {
        opacity: 0.20;
        pointer-events: none;
    }

    .hero-video-text__outline {
        fill: transparent;
        stroke: rgba(255, 255, 255, 0.65);
        stroke-width: 1.4px;
        paint-order: stroke;
        pointer-events: none;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        white-space: nowrap;
        border: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        clip-path: inset(50%);
    }

    /* Services */
    .services {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 96svh;
        padding: clamp(6rem, 8vw, 8rem) 0 clamp(4rem, 6vw, 6rem);
        overflow: hidden;
    }

    .services__container {
        width: min(calc(100% - 3rem), 1650px);
        max-width: 1650px;
        padding-right: 0;
        padding-left: 0;
    }

    .services__content {
        width: 100%;
        max-width: 760px;
        margin-right: auto;
    }

    .services__eyebrow {
        margin: 0 0 1.5rem;
        font-size: clamp(1.25rem, 1.6vw, 1.8rem);
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        color: var(--pale-sky);
    }

    .services__swiper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .services__slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        min-height: 190px;
        padding: 0 3.75rem;
        text-align: left;
    }

    .services__title {
        max-width: 100%;
        margin: 0 0 1rem;
        font-size: clamp(2.1rem, 2.6vw, 3.7rem);
        font-weight: 700;
        line-height: 0.95;
        letter-spacing: -0.035em;
        text-align: center;
        text-transform: uppercase;
        color: var(--white);
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .services__text {
        max-width: 620px;
        margin: 0;
        font-size: clamp(1rem, 1.15vw, 1.2rem);
        line-height: 1.2;
        text-align: center;
        color: rgba(255, 255, 255, 0.78);
    }

    .services__controls {
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .services__arrow {
        position: relative;
        z-index: 11;
        display: grid;
        place-items: center;
        width: 3.5rem;
        height: 3.5rem;
        padding: 0;
        color: var(--baltic-blue);
        background: transparent;
        border-radius: 50%;
        border: 0;
        transition:
            color 180ms ease,
            transform 180ms ease;
        cursor: pointer;
        pointer-events: auto;
    }

    .services__arrow svg {
        display: block;
        width: 30px;
        height: 30px;
    }

    .services__arrow:hover {
        color: var(--pale-sky);
        transform: scale(1.08);
    }

    .services__arrow:active {
        transform: scale(0.96);
    }

    .services__actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        margin-top: 2rem;
        padding-left: 0;
    }

    .services__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-width: 145px;
        min-height: 44px;
        padding: 0.7rem 1.5rem;
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--baltic-blue);
        background: var(--pale-sky);
        border-radius: 14px;
        transition:
            color 180ms ease,
            background-color 180ms ease,
            border-color 180ms ease,
            transform 180ms ease;
    }

    .services__button:hover {
        color: var(--white);
        background: var(--pale-sky);
        transform: translateY(-2px);
    }

    .services__button:active {
        transform: translateY(0);
    }

    .services__button--primary {
        color: var(--white);
        background: var(--baltic-blue);
    }

    .services__button--primary:hover {
        color: var(--baltic-blue);
        background: var(--pale-sky);
    }

    .services__button-icon {
        display: block;
        width: 20px;
        height: 20px;
    }

    .services__stat {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        margin-top: 8.5rem;
        padding-left: 3.75rem;
    }

    .services__stat-number {
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        width: 5rem;
        height: 5rem;
        font-size: 1.7rem;
        font-weight: 700;
        line-height: 1;
        color: var(--pale-sky);
        border: 2px solid var(--baltic-blue);
        border-radius: 50%;
    }

    .services__stat-label {
        max-width: 135px;
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.3;
        text-align: left;
        text-transform: uppercase;
        color: var(--white);
    }

    .services__visual {
        width: 100%;
        max-width: 800px;
        margin-left: auto;
    }

    .services__media {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        background: var(--black);
        overflow: hidden;
    }

    .services__video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    } 

    .services__media-description {
        max-width: calc(100% - 2.5rem);
        margin: 4rem auto 0;
        padding: 0 1rem 0.8rem;
        font-size: clamp(0.95rem, 1vw, 1rem);
        line-height: 1.35;
        text-align: right;
        color: var(--pale-sky);
        border-bottom: 2px solid rgba(150, 195, 220, 0.75);
    }

    /* Testimonials */
    .testimonials {
        padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 7vw, 6rem);
        background: var(--white);
        overflow: hidden;
    }

    .testimonials .container {
        width: min(calc(100% - 3rem), 1200px);
        max-width: 1200px;
    }

    .testimonials .section-title {
        margin-bottom: clamp(2.5rem, 5vw, 4rem);
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 700;
        color: var(--baltic-blue);
    }

    .testimonials__layout {
        display: flex;
        flex-direction: column;
        gap: clamp(2.5rem, 5vw, 4rem);
        width: min(100%, 1120px);
        margin-inline: auto;
    }

    .testimonials__row {
        display: grid;
        align-items: center;
        gap: clamp(2rem, 4vw, 3.5rem);
        min-width: 0;
    }

    .testimonials__row--first {
        grid-template-columns: minmax(0, 760px) minmax(180px, 260px);
    }

    .testimonials__row--second {
        grid-template-columns: minmax(180px, 260px) minmax(0, 760px);
    }

    .testimonials__card {
        position: relative;
        display: flex;
        align-items: stretch;
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 180px;
        padding: 1.8rem 2.3rem 1.5rem 3.8rem;
        color: var(--black);
        background: linear-gradient(
            120deg,
            var(--pale-sky) 0%,
            #b7d5e7 45%,
            #d8eaf4 100%
        );
        border-radius: 0 2.4rem 2.4rem 2.4rem;
        box-shadow: 9px 11px 8px rgba(0, 0, 0, 0.38);
        transform-origin: center;
        transition:
            height 350ms ease,
            box-shadow 250ms ease,
            transform 250ms ease;
    }

    .testimonials__card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -35px;
        width: 0;
        height: 0;
        border-right: 35px solid var(--pale-sky);
        border-bottom: 35px solid transparent;
    }

    .testimonials__card--accent {
        color: var(--white);
        background: linear-gradient(
            120deg,
            var(--baltic-blue) 0%,
            #05508a 55%,
            #064c7f 100%
        );
        border-radius: 2.4rem 0 2.4rem 2.4rem;
    }

    .testimonials__card--accent::before {
        right: -35px;
        left: auto;
        border-right: 0;
        border-bottom: 35px solid transparent;
        border-left: 35px solid var(--yale-blue);
    }

    .testimonials__icon {
        position: absolute;
        top: 1rem;
        left: -5.7rem;
        display: block;
        width: 54px;
        height: 54px;
        color: var(--pale-sky);
        background: var(--white);
        border-radius: 50%;
    }

    .testimonials__card--accent .testimonials__icon {
        right: -5.7rem;
        left: auto;
        color: var(--baltic-blue);
    }

    .testimonials__card blockquote {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin: 0;
    }

    .testimonials__quote {
        margin: 0;
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.35;
    }

    .testimonials__author {
        margin-top: auto;
        font-size: 0.9rem;
        font-weight: 800;
        line-height: 1.3;
        text-align: right;
    }

    .testimonials__expand {
        align-self: end;
        justify-self: end;
        min-height: 1.25rem;
        margin: 0;
        padding: 0;
        visibility: hidden;
        opacity: 0;
        font-size: 0.78rem;
        font-weight: 800;
        line-height: 1.25rem;
        text-decoration: underline;
        text-underline-offset: 0.25em;
        color: var(--baltic-blue);
        background: transparent;
        border: 0;
        transition:
            color 180ms ease,
            opacity 180ms ease;
        cursor: pointer;
        pointer-events: none;
    }

    .testimonials__card--accent .testimonials__expand {
        color: var(--pale-sky);
    }

    .testimonials__expand.is-visible {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .testimonials__card.is-expanded {
        height: auto;
        min-height: 180px;
    }

    .testimonials__card.is-expanded blockquote {
        grid-template-rows: auto auto auto;
        height: auto;
    }

    .testimonials__card.is-expanded .testimonials__quote {
        display: block;
        overflow: visible;
        line-clamp: unset;
        -webkit-line-clamp: unset;
    }

    .testimonials__feature {
        width: 100%;
        max-width: 230px;
    }

    .testimonials__feature--right {
        justify-self: end;
        text-align: right;
    }

    .testimonials__feature--left {
        justify-self: start;
        text-align: left;
    }

    .testimonials__feature-title {
        position: relative;
        display: inline-block;
        margin: 0 0 1rem;
        font-size: 1rem;
        font-weight: 800;
        font-style: italic;
        color: var(--baltic-blue);
    }

    .testimonials__feature-title::after {
        content: "";
        position: absolute;
        bottom: -0.45rem;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--baltic-blue);
    }

    .testimonials__feature p {
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.35;
        color: var(--black);
    }

    .testimonials__card:hover,
    .testimonials__card:focus-visible {
        box-shadow: 10px 14px 12px rgba(0, 0, 0, 0.34);
        transform: translateY(-3px);
    }

    /* About */
    .about {
        padding: clamp(5rem, 9vw, 8rem) 0 4rem;
        background: radial-gradient( circle at bottom right, rgba(6, 95, 162, 0.65) 0%, rgba(6, 95, 162, 0.30) 25%, rgba(6, 95, 162, 0) 60% ), #0b0b0b;
    }

    .about__container {
        max-width: 1050px;
    }

    .about__title {
        margin-bottom: 1rem;
        font-size: clamp(2rem, 3vw, 3rem);
        font-weight: 800;
    }

    .about__title-accent {
        color: var(--baltic-blue);
    }

    .about__copy {
        max-width: 950px;
        margin: auto;
        line-height: 1.75;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Locations */
    .locations-map {
        position: relative;
        min-height: 100svh;
        padding: clamp(3rem, 6vw, 6rem) 0;
        background: radial-gradient(circle at 50% 45%, rgba(0, 104, 218, 0.3), transparent 65%),
            linear-gradient(180deg, #020814 0%, #01050c 100%);
        overflow: hidden;
        isolation: isolate;
    }

    .locations-map::before {
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(rgba(23, 112, 211, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(23, 112, 211, 0.025) 1px, transparent 1px);
        background-size: 55px 55px;
        opacity: 0.45;
        content: "";
        pointer-events: none;
    }

    .locations-map::after {
        position: absolute;
        inset: 0;
        z-index: -1;
        background: radial-gradient(circle at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.72) 100%);
        content: "";
        pointer-events: none;
    }

    .locations-map .container {
        position: relative;
        z-index: 1;
        width: min(96%, 1800px);
        max-width: 1800px;
    }

    .locations-map__viewport {
        position: relative;
        width: min(100%, 1250px);
        aspect-ratio: 975 / 610;
        margin: 0 auto;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        isolation: isolate;
    }

    .locations-map__viewport::before,
    .locations-map__viewport::after {
        display: none;
    }

    .locations-map__svg {
        position: relative;
        z-index: 1;
        display: block;
        width: 100%;
        height: 100%;
        background: transparent;
        overflow: visible;
    }

    .locations-map__glow,
    .locations-map__nation-glow {
        display: none;
    }

    .locations-map__states {
        fill: url("#locationsMapLand");
        stroke: rgba(24, 119, 221, 0.48);
        stroke-width: 0.75;
        filter: none;
    }

    .locations-map__state {
        fill: url("#locationsMapLand");
        stroke: rgba(29, 128, 231, 0.5);
        stroke-width: 0.75;
        transition:
            fill 250ms ease,
            stroke 250ms ease,
            filter 250ms ease;
        vector-effect: non-scaling-stroke;
    }

    .locations-map__state:hover {
        fill: #0a2038;
        stroke: rgba(72, 174, 255, 0.95);
        filter: drop-shadow(0 0 5px rgba(0, 132, 255, 0.65));
    }

    .locations-map__borders {
        fill: none;
        stroke: rgba(30, 139, 245, 0.66);
        stroke-width: 0.85;
        filter: url("#locationsMapBorderGlow");
        pointer-events: none;
    }

    .locations-map__nation-border {
        fill: none;
        stroke: rgba(44, 156, 255, 0.95);
        stroke-width: 1.65;
        filter: url("#locationsMapBorderGlow");
        pointer-events: none;
        vector-effect: non-scaling-stroke;
    }

    .locations-map__status {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 5;
        margin: 0;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(1, 10, 22, 0.85);
        border: 1px solid rgba(38, 145, 255, 0.32);
        border-radius: 999px;
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%);
        transition:
            opacity 250ms ease,
            visibility 250ms ease;
        backdrop-filter: blur(10px);
        pointer-events: none;
    }

    .locations-map__status.is-hidden {
        opacity: 0;
        visibility: hidden;
    }

    .locations-map__state-borders {
        fill: none;
        stroke: rgba(30, 139, 245, 0.66);
        stroke-width: 0.85;
        filter: url("#locationsMapBorderGlow");
        pointer-events: none;
        vector-effect: non-scaling-stroke;
    }

    .locations-map__markers {
        pointer-events: none;
    }

    .locations-map__marker {
        pointer-events: none;
    }

    .locations-map__marker-content {
        transform-box: fill-box;
        transform-origin: center bottom;
        pointer-events: none;
    }

    .locations-map__marker-glow {
        fill: rgba(0, 132, 255, 0.22);
        filter: blur(4px);
        opacity: 0.85;
        transform-box: fill-box;
        transform-origin: center;
        animation: locations-map-pin-pulse 2.2s ease-in-out infinite;
        pointer-events: none;
    }

    .locations-map__marker-image {
        filter:
            drop-shadow(0 0 4px rgba(46, 153, 255, 0.95))
            drop-shadow(0 0 10px rgba(0, 111, 255, 0.7))
            drop-shadow(0 8px 5px rgba(0, 0, 0, 0.55));
        pointer-events: none;
    }

    .locations-map__marker-point {
        fill: #55b7ff;
        stroke: rgba(255, 255, 255, 0.9);
        stroke-width: 1;
        filter: drop-shadow(0 0 5px #078dff);
        pointer-events: none;
    }

    /* Footer */
    .site-footer {
        position: relative;
        padding: 2rem 0 0;
        color: var(--white);
        background: var(--black);
    }

    .site-footer__brand-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 2.75rem;
    }

    .site-footer__brand {
        display: inline-flex;
        text-decoration: none;
        border-radius: 5px;
    }

    .site-footer__logo {
        display: block;
        width: clamp(175px, 18vw, 220px);
        height: auto;
        transition: transform 180ms ease;
    }

    .site-footer__logo:hover {
        transform: translateX(3px);
    }

    .site-footer__main {
        align-items: flex-start;
        padding-inline: 2rem;
    }

    .site-footer__links {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .site-footer__link {
        display: inline-block;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        color: var(--white);
        border-radius: 5px;
        transition:
            color 180ms ease,
            transform 180ms ease;
    }

    .site-footer__link:hover {
        color: var(--pale-sky);
        transform: translateX(3px);
    }

    .site-footer__schedule {
        max-width: 270px;
    }

    .site-footer__title {
        display: inline-block;
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--pale-sky);
    }

    .site-footer__title-line {
        width: 100%;
        max-width: 170px;
        height: 1px;
        margin-top: 0.4rem;
        margin-bottom: 1rem;
        background: var(--pale-sky);
    }

    .site-footer__schedule-text {
        margin: 0;
        font-size: 1rem;
        line-height: 1.2;
        color: var(--white);
    }

    .site-footer__newsletter-wrapper {
        max-width: 500px;
        margin-left: auto;
    }

    .newsletter {
        width: 100%;
    }

    .newsletter__label {
        display: block;
        margin-bottom: 0.75rem;
        font-size: clamp(1rem, 1.7vw, 1.15rem);
        font-weight: 800;
        font-style: italic;
        text-align: center;
        text-transform: uppercase;
        color: var(--amber-flame);
    }

    .newsletter__control {
        position: relative;
        display: flex;
        width: 100%;
        height: 40px;
        background: var(--white);
        border-radius: 999px;
        overflow: hidden;
    }

    .newsletter__input {
        flex: 1;
        min-width: 0;
        height: 100%;
        padding: 0.4rem 4.5rem 0.4rem 1.4rem;
        font-size: 1rem;
        font-style: italic;
        color: var(--black);
        background: var(--white);
        border: 0;
        border-radius: 999px;
        outline: 0;
        transition:
            background-color 180ms ease,
            transform 180ms ease;
    }

    .newsletter__input::placeholder {
        color: var(--blue-slate);
        opacity: 1;
    }

    .newsletter__input:focus-visible {
        outline: 3px solid var(--amber-flame);
        outline-offset: -3px;
    }

    .newsletter__button {
        position: absolute;
        top: 0;
        right: 0;
        display: grid;
        place-items: center;
        width: 50px;
        height: 100%;
        padding: 0;
        color: var(--white);
        background: var(--amber-flame);
        border: 0;
        border-radius: 999px;
        transition:
            background-color 180ms ease,
            transform 180ms ease;
        cursor: pointer;
    }

    .newsletter__button:hover {
        background: var(--sunflower-gold);
    }

    .newsletter__button:active {
        transform: scale(0.94);
    }

    .newsletter__button:disabled {
        opacity: 0.45;
        cursor: not-allowed;
        pointer-events: none;
    }

    .newsletter__icon {
        display: block;
        width: 32px;
        height: 32px;
    }

    .newsletter__error {
        display: block;
        min-height: 1.2rem;
        margin-top: 0.3rem;
        font-size: 0.75rem;
    }

    .site-footer__social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.75rem;
    }

    .site-footer__social-link {
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        text-decoration: none;
        color: var(--black);
        background: var(--pale-sky);
        border-radius: 50%;
        transition:
            background-color 180ms ease,
            transform 180ms ease;
    }

    .site-footer__social-link:hover {
        background: var(--white);
        transform: translateY(-3px);
    }

    .site-footer__social-icon {
        display: block;
        width: 24px;
        height: 24px;
    }

    .site-footer__social-link:last-child {
        background: transparent;
        border-radius: 50%;
    }

    .site-footer__social-icon-google {
        display: block;
        width: 30px;
        height: 30px;
        color: var(--pale-sky);
    }

    .site-footer__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        margin-top: 2.75rem;
        padding: 0 0.5rem 1.2rem;
    }

    .site-footer__copyright {
        font-size: 0.95rem;
        color: var(--pale-sky);
    }

    .site-footer__legal {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 0.95rem;
        color: var(--silver);
    }

    .site-footer__legal-link {
        text-decoration: none;
        color: var(--silver);
        border-radius: 5px;
        transition: color 180ms ease;
    }

    .site-footer__legal-link:hover {
        color: var(--white);
    }

    .site-footer__accent {
        width: 100%;
        height: 20px;
        background: var(--baltic-blue);
    }

    /* Language Modal */
    .language-modal__content {
        color: var(--white);
        background: linear-gradient(140deg, #071522, #02070d);
        border: 2px solid rgba(173, 207, 230, 0.45);
        border-radius: 1.6rem;
    }

    .language-modal__logo {
        max-width: 210px;
        height: auto;
        margin-bottom: 2rem;
    }

    .language-modal__title {
        font-weight: 800;
    }

    .language-modal__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .language-modal__button {
        min-width: 140px;
        color: var(--white);
        background: transparent;
        border: 2px solid var(--baltic-blue);
        border-radius: 999px;
    }

    .language-modal__button:hover {
        color: var(--white);
        background: var(--baltic-blue);
    }

    /* Contact Modal */
    .contact-modal {
        --bs-modal-zindex: 1060;
    }

    .contact-modal__dialog {
        width: calc(100% - 2rem);
        max-width: 960px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-modal__content {
        position: relative;
        color: var(--white, #ffffff);
        background: linear-gradient(115deg, rgba(2, 6, 9, 0.68) 0%, rgba(2, 8, 13, 0.62) 55%, rgba(3, 38, 61, 0.62) 100%);
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 1rem;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(14px) saturate(120%);
        -webkit-backdrop-filter: blur(14px) saturate(120%);
        overflow: hidden;
    }

    .contact-modal__content::before {
        content: "";
        position: absolute;
        right: -12%;
        bottom: -35%;
        z-index: 0;
        width: 65%;
        height: 90%;
        background: radial-gradient(circle, rgba(0, 113, 184, 0.24) 0%, rgba(0, 113, 184, 0) 70%);
        pointer-events: none;
    }

    .contact-modal__header {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: flex-end;
        min-height: 3.25rem;
        padding: 1rem 1.5rem 0;
        border: 0;
    }

    .contact-modal__close {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0;
        color: var(--white, #ffffff);
        background: var(--amber-flame, #ffb51b);
        border: 0;
        border-radius: 50%;
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
        transition:
            background-color 180ms ease,
            transform 180ms ease;
        cursor: pointer;
    }

    .contact-modal__close span {
        position: absolute;
        width: 19px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        pointer-events: none;
    }

    .contact-modal__close span:first-child {
        transform: rotate(45deg);
    }

    .contact-modal__close span:last-child {
        transform: rotate(-45deg);
    }

    .contact-modal__close:hover {
        background: var(--amber-flame, #ffb51b);
        transform: rotate(90deg);
    }

    .contact-modal__close:focus-visible {
        outline: 3px solid rgba(255, 181, 27, 0.45);
        outline-offset: 4px;
    }

    .contact-modal__body {
        position: relative;
        z-index: 1;
        padding: 0.25rem clamp(2rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3rem);
    }

    .contact-form__column {
        display: flex;
        flex-direction: column;
        gap: 1.15rem;
    }

    .contact-form__column--message {
        align-items: center;
    }

    .contact-form__group {
        width: 100%;
    }

    .contact-form__group--message {
        flex: 1;
    }

    .contact-form__label {
        display: block;
        margin: 0 0 0.45rem 0.65rem;
        font-size: 0.9rem;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: var(--white, #ffffff);
    }

    .contact-form__required {
        color: var(--baltic-blue, #065fa2);
    }

    .contact-form__control {
        width: 100%;
        min-height: 48px;
        padding: 0.7rem 1rem;
        font-size: 1rem;
        color: var(--black, #111111);
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid transparent;
        border-radius: 1rem;
        box-shadow: none;
        transition:
            background-color 180ms ease,
            border-color 180ms ease,
            box-shadow 180ms ease;
    }

    .contact-form__control:hover {
        background: var(--white, #ffffff);
        border-color: rgba(22, 134, 201, 0.5);
    }

    .contact-form__control:focus {
        color: var(--black, #000000);
        background: var(--white, #ffffff);
        border-color: var(--baltic-blue, #065fa2);
        box-shadow: 0 0 0 0.25rem rgba(22, 134, 201, 0.2);
    }

    .contact-form__control.is-invalid,
    .was-validated .contact-form__control:invalid {
        background-image: none;
        border-color: #dc3545;
    }

    .contact-form__textarea {
        min-height: 246px;
        resize: vertical;
    }

    .contact-form__submit {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        min-width: 162px;
        padding: 0.7rem 1.75rem;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        color: var(--white, #ffffff);
        background: var(--baltic-blue, #065fa2);
        border: 1px solid rgba(255, 255, 255, 0.85);
        border-radius: 1rem;
        box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
        transition:
            background-color 180ms ease,
            box-shadow 180ms ease,
            transform 180ms ease;
    }

    .contact-form__submit:hover {
        color: var(--white, #ffffff);
        background: #0d8bd7;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
        transform: translateY(-2px);
    }

    .contact-form__submit:active {
        transform: translateY(0);
    }

    .contact-form__submit:focus-visible {
        outline: 3px solid rgba(22, 134, 201, 0.4);
        outline-offset: 4px;
    }

    .contact-form__submit-icon {
        width: 20px;
        height: 20px;
        color: var(--white);
    }

    .contact-modal.modal {
        background: rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .modal-backdrop.show {
        opacity: 0.28;
    }

    /* Newsletter Modal */
    #newsletterModal {
        --bs-modal-zindex: 1060;
    }

    #newsletterModal .newsletter-modal__dialog {
        width: calc(100% - 2rem);
        max-width: 460px;
        margin-right: auto;
        margin-left: auto;
    }

    #newsletterModal .newsletter-modal__content {
        position: relative;
        color: var(--white);
        background: linear-gradient(115deg, rgba(0, 0, 0, 0.68) 0%, rgba(6, 76, 127, 0.62) 55%, rgba(6, 95, 162, 0.58) 100%);
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 1rem;
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(14px) saturate(120%);
        -webkit-backdrop-filter: blur(14px) saturate(120%);
        overflow: hidden;
        isolation: isolate;
    }

    #newsletterModal .newsletter-modal__content::before {
        position: absolute;
        right: -12%;
        bottom: -35%;
        z-index: 0;
        width: 65%;
        height: 90%;
        background: radial-gradient(circle, rgba(48, 102, 190, 0.28) 0%, rgba(48, 102, 190, 0) 70%);
        content: "";
        pointer-events: none;
    }

    #newsletterModal .newsletter-modal__content::after {
        position: absolute;
        top: -28%;
        left: -22%;
        z-index: 0;
        width: 70%;
        height: 65%;
        background: radial-gradient(circle, rgba(251, 184, 21, 0.13) 0%, rgba(251, 184, 21, 0) 72%);
        content: "";
        pointer-events: none;
    }

    
    #newsletterModal .newsletter-modal__close {
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        z-index: 5;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0;
        color: var(--white);
        background: var(--amber-flame);
        border: 0;
        border-radius: 50%;
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
        transition:
            background-color var(--transition-fast),
            transform var(--transition-fast);
        cursor: pointer;
    }

    #newsletterModal .newsletter-modal__close span {
        position: absolute;
        width: 19px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        pointer-events: none;
    }

    #newsletterModal .newsletter-modal__close span:first-child {
        transform: rotate(45deg);
    }

    #newsletterModal .newsletter-modal__close span:last-child {
        transform: rotate(-45deg);
    }

    #newsletterModal .newsletter-modal__close:hover {
        background: var(--amber-flame);
        transform: rotate(90deg);
    }

    #newsletterModal .newsletter-modal__close:focus-visible {
        outline: 3px solid rgba(251, 184, 21, 0.45);
        outline-offset: 4px;
    }

    #newsletterModal .newsletter-modal__body {
        position: relative;
        z-index: 1;
        padding: 4rem 1.5rem 1.75rem;
    }

    #newsletterModal .newsletter-modal__header {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    #newsletterModal .newsletter-modal__eyebrow {
        margin: 0 0 0.65rem;
        color: var(--amber-flame);
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        font-weight: 800;
        font-style: italic;
        line-height: 1.25;
        text-transform: uppercase;
    }

    #newsletterModal .newsletter-modal__title {
        margin: 0;
        color: var(--white);
        font-size: clamp(1.35rem, 4vw, 1.8rem);
        font-weight: 700;
        line-height: 1.2;
    }

    #newsletterModal .newsletter-modal__title-accent {
        display: inline-block;
        color: var(--amber-flame);
        text-decoration: underline;
        text-underline-offset: 0.18em;
    }

    #newsletterModal .newsletter-modal__form {
        display: grid;
        gap: 1rem;
    }

    #newsletterModal .newsletter-modal__field {
        margin: 0;
    }

    #newsletterModal .newsletter-modal__input {
        min-height: 58px;
        padding-right: 1rem;
        padding-left: 1rem;
        color: var(--black);
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid transparent;
        border-radius: 1rem;
        box-shadow: none;
        transition:
            background-color var(--transition-fast),
            border-color var(--transition-fast),
            box-shadow var(--transition-fast);
    }

    #newsletterModal .newsletter-modal__input:hover {
        background: var(--white);
        border-color: rgba(48, 102, 190, 0.5);
    }

    #newsletterModal .newsletter-modal__input:focus {
        color: var(--black);
        background: var(--white);
        border-color: var(--baltic-blue);
        box-shadow: 0 0 0 0.25rem rgba(48, 102, 190, 0.2);
    }

    #newsletterModal .newsletter-modal__input.is-invalid,
    #newsletterModal .was-validated .newsletter-modal__input:invalid {
        background-image: none;
        border-color: #dc3545;
    }

    #newsletterModal .newsletter-modal__label {
        color: var(--blue-slate);
    }

    #newsletterModal .newsletter-modal__consent {
        display: flex;
        gap: 0.7rem;
        align-items: flex-start;
        margin: 0;
        padding: 0.9rem 1rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 0.95rem;
        transition:
            background-color var(--transition-fast),
            border-color var(--transition-fast);
    }

    #newsletterModal .newsletter-modal__consent:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(251, 184, 21, 0.55);
    }

    #newsletterModal .newsletter-modal__consent-input {
        flex: 0 0 auto;
        width: 1.3rem;
        height: 1.3rem;
        margin: 0.15rem 0 0;
        background-color: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.78);
        cursor: pointer;
    }

    #newsletterModal .newsletter-modal__consent-input:checked {
        background-color: var(--amber-flame);
        border-color: var(--amber-flame);
    }

    #newsletterModal .newsletter-modal__consent-input:focus {
        border-color: var(--amber-flame);
        box-shadow: 0 0 0 0.25rem rgba(251, 184, 21, 0.2);
    }

    #newsletterModal .newsletter-modal__consent-label {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.82rem;
        line-height: 1.45;
        cursor: pointer;
    }

    #newsletterModal .newsletter-modal__privacy-link {
        color: var(--white);
        font-weight: 700;
        text-underline-offset: 0.18em;
        transition: color var(--transition-fast);
    }

    #newsletterModal .newsletter-modal__privacy-link:hover,
    #newsletterModal .newsletter-modal__privacy-link:focus-visible {
        color: var(--amber-flame);
    }

    #newsletterModal .newsletter-modal__submit {
        display: inline-flex;
        gap: 0.65rem;
        align-items: center;
        justify-content: center;
        min-width: 170px;
        min-height: 52px;
        margin-right: auto;
        margin-left: auto;
        padding: 0.75rem 1.5rem;
        color: var(--white);
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.2;
        text-transform: uppercase;
        background: var(--baltic-blue);
        border: 1px solid rgba(255, 255, 255, 0.85);
        border-radius: 1rem;
        box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition:
            background-color var(--transition-fast),
            box-shadow var(--transition-fast),
            transform var(--transition-fast);
    }

    #newsletterModal .newsletter-modal__submit:hover {
        color: var(--white);
        background: var(--smart-blue);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
        transform: translateY(-2px);
    }

    #newsletterModal .newsletter-modal__submit:active {
        background: var(--yale-blue);
        transform: translateY(0);
    }

    #newsletterModal .newsletter-modal__submit:focus-visible {
        outline: 3px solid rgba(48, 102, 190, 0.45);
        outline-offset: 4px;
    }

    #newsletterModal .newsletter-modal__submit svg {
        width: 20px;
        height: 20px;
        color: var(--white);
    }

    #newsletterModal .newsletter-modal__status {
        min-height: 1.4em;
        margin: 0;
        color: var(--white);
        font-size: 0.85rem;
        text-align: center;
    }

    #newsletterModal.modal {
        background: rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    /* Floating message */
    .floating-message {
        position: fixed;
        right: 24px;
        bottom: 24px;
        z-index: 1050;
        width: 50px;
        height: 50px;
        padding: 0;
        color: var(--baltic-blue);
        background-color: var(--amber-flame);
        border: 0;
        border-radius: 50%;
        transition: 
            background-color 0.3s ease,
            transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
    }

    .floating-message:hover,
    .floating-message:focus {
        background-color: var(--sunflower-gold);
        transform: scale(1.1) translateY(-4px);
    }

    .floating-message__icon {
        width: 32px;
        height: 32px;
    }
    
    .alerta-profesional {
        border-radius: 16px !important;
        padding: 35px !important;
        font-family: Arial, Helvetica, sans-serif !important;
    }
    
    .alerta-titulo {
        color: #1f2937 !important;
        font-size: 25px !important;
        font-weight: 700 !important;
    }
    
    .alerta-boton {
        background: #1f2937 !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 12px 30px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
    }
    
    .alerta-boton:hover {
        background: #111827 !important;
        transform: translateY(-1px);
    }
    
    @media (max-width: 1199.98px) {
        

        .services__container {
            width: min(calc(100% - 2rem), 1140px);
        }

        .services__slide {
            padding-right: 3rem;
            padding-left: 3rem;
        }

        .services__title {
            font-size: clamp(2.35rem, 4vw, 3.8rem);
        }

        .services__actions,
        .services__stat {
            padding-left: 3rem;
        }

    }

    @media (max-width: 991.98px) {

        .site-header {
            top: 0.75rem;
        }

        .site-header__brand {
            position: static;
            grid-area: logo;
            justify-self: center;
            width: max-content;
            margin: 0;
            transform: none;
        }

        .site-header__logo {
            width: clamp(115px, 18vw, 150px);
        }

        .site-header__toggler {
            z-index: 3;
            display: block !important;
            grid-area: toggle;
            justify-self: start;
        }

        .site-header__collapse {
            grid-area: menu;
            width: 100%;
            margin-top: 0.5rem;
        }

        .site-header__collapse:not(.show):not(.collapsing) {
            display: none;
        }

        .site-header__collapse.show,
        .site-header__collapse.collapsing {
            display: block;
        }

        .site-header__navigation {
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            width: 100%;
            margin-top: 0.35rem;
            padding: 0.6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }

        .site-header__link {
            display: flex;
            width: 100%;
            padding: 0.85rem 0.5rem !important;
            border-radius: 0.45rem;
        }

        .site-header__link:hover,
        .site-header__link:focus-visible {
            background: rgba(255, 255, 255, 0.08);
        }

        .site-header__link::after {
            display: none;
        }

        .site-header__cta {
            z-index: 3;
            justify-self: auto;
            min-width: 0;
            max-width: 142px;
            padding: 0.68rem 0.85rem;
            font-size: 0.67rem;
        }

        .site-header__container {
            grid-template-columns: 48px 1fr auto auto;
            grid-template-areas:
                "toggle logo language cta"
                "menu menu menu menu";
        }

        .hero-video-text__title-wrapper {
            width: calc(100% - 1.5rem);
        }

        .hero-video-text__svg-title,
        .hero-video-text__reflection,
        .hero-video-text__outline {
            font-size: 68px;
            letter-spacing: -2.5px;
        }

        .services {
            min-height: auto;
            padding: 6.5rem 0 4rem;
        }

        .services__container {
            width: min(calc(100% - 2rem), 760px);
        }

        .services__content {
            max-width: 680px;
            margin-right: auto;
            margin-left: auto;
        }

        .services__eyebrow {
            margin-bottom: 0.75rem;
            font-size: clamp(1rem, 3vw, 1.25rem);
        }

        .services__slide {
            align-items: center;
            min-height: 165px;
            padding-right: 3.25rem;
            padding-left: 3.25rem;
            text-align: center;
        }

        .services__title {
            width: 100%;
            margin-bottom: 0.85rem;
            font-size: clamp(2.2rem, 8vw, 3.8rem);
            line-height: 1;
            letter-spacing: -0.025em;
            text-align: center;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: none;
        }

        .services__text {
            max-width: 580px;
            margin-right: auto;
            margin-left: auto;
            font-size: clamp(0.9rem, 2.2vw, 1rem);
            line-height: 1.45;
            text-align: center;
        }

        .services__actions {
            justify-content: center;
            margin-top: 1.5rem;
            padding-left: 0;
        }

        .services__stat {
            justify-content: center;
            margin-top: 2rem;
            padding-left: 0;
        }

        .services__visual {
            max-width: 760px;
            margin-right: auto;
            margin-left: auto;
        }

        .testimonials {
            padding: 5rem 0 4rem;
        }

        .testimonials .container {
            width: min(calc(100% - 2rem), 720px);
        }

        .testimonials__layout {
            gap: 3.5rem;
        }

        .testimonials__row,
        .testimonials__row--first,
        .testimonials__row--second {
            grid-template-columns: minmax(0, 1fr);
            gap: 1.75rem;
        }

        .testimonials__row--second .testimonials__feature {
            order: 2;
        }

        .testimonials__row--second .testimonials__card {
            order: 1;
        }

        .testimonials__card,
        .testimonials__card--accent {
            width: calc(100% - 1.5rem);
            height: auto;
            min-height: 220px;
            margin-inline: auto;
            padding: 3.75rem 1.75rem 1.75rem;
            border-radius: 1.75rem;
        }

        .testimonials__card.is-expanded {
            height: auto;
            min-height: 220px;
        }

        .testimonials__card::before,
        .testimonials__card--accent::before {
            display: none;
        }

        .testimonials__icon,
        .testimonials__card--accent .testimonials__icon {
            top: -1.35rem;
            right: auto;
            left: 1.5rem;
            width: 52px;
            height: 52px;
        }

        .testimonials__quote {
            line-clamp: 5;
            -webkit-line-clamp: 5;
        }

        .testimonials__feature,
        .testimonials__feature--right,
        .testimonials__feature--left {
            justify-self: center;
            max-width: 420px;
            text-align: center;
        }

        .testimonials__author {
            text-align: right;
        }

        .locations-map {
            min-height: auto;
            padding: 3.5rem 0;
        }

        .locations-map .container {
            width: min(calc(100% - 2rem), 760px);
            padding-right: 0;
            padding-left: 0;
        }

        .locations-map__viewport {
            width: 100%;
            aspect-ratio: 975 / 610;
            background: transparent;
            box-shadow: none;
            overflow: visible;
        }

        .locations-map__viewport::before,
        .locations-map__viewport::after {
            display: none;
        }

        .locations-map__svg {
            background: transparent;
        }

        .site-footer {
            padding-top: 2.5rem;
        }

        .site-footer__brand-wrapper {
            margin-bottom: 2.5rem;
        }

        .site-footer__main {
            padding-inline: 1rem;
        }

        .site-footer__newsletter-wrapper {
            margin-inline: auto;
        }

        .site-footer__bottom {
            margin-top: 2.5rem;
        }

        .contact-modal__dialog {
            max-width: 680px;
        }

        .contact-modal__body {
            max-height: calc(100svh - 6rem);
            padding: 0.25rem 1.5rem 2rem;
            overflow-y: auto;
        }

        .contact-form__column--message {
            align-items: stretch;
        }

        .contact-form__textarea {
            min-height: 180px;
        }

        .contact-form__submit {
            align-self: center;
        }
        
    }

    @media (max-width: 767.98px) {
        
        .site-footer {
            text-align: center;
        }

        .site-footer__main {
            row-gap: 2.5rem;
        }

        .site-footer__links {
            align-items: center;
        }

        .site-footer__schedule {
            margin-inline: auto;
        }

        .site-footer__title-line {
            margin-inline: auto;
        }

        .site-footer__bottom {
            flex-direction: column;
            gap: 0.85rem;
            text-align: center;
        }

        .site-footer__legal {
            flex-wrap: wrap;
            justify-content: center;
        }

        #newsletterModal .newsletter-modal__dialog {
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
        }

        #newsletterModal .newsletter-modal__content {
            max-height: calc(100svh - 1rem);
            overflow-y: auto;
        }

    }

    @media (max-width: 575.98px) {
        
         .hero-video-text__inside-video {
            display: none;
        }
        
         .hero-video-text__outline {
            font-size: 38px;
            font-weight: 600;
            letter-spacing: -1px;
            fill: url(#glassReflection);
           
        }

        .site-header {
            top: 0.5rem;
        }

        .site-header__container {
            grid-template-columns: 42px 1fr auto;
            width: calc(100% - 1rem);
            min-height: 58px;
            padding: 0.4rem 0.5rem;
            border-radius: 0.8rem;
        }

        .site-header__brand {
            top: 29px;
        }

        .site-header__logo {
            width: 108px;
        }

        .site-header__toggler {
            width: 38px;
            height: 38px;
            padding: 8px;
        }

        .site-header__cta {
            max-width: 104px;
            padding: 0.58rem 0.5rem;
            font-size: 0.58rem;
            line-height: 1.05;
        }

        .hero-video-text {
            height: 100svh;
            min-height: 100dvh;
        }

        .hero-video-text__background {
            object-position: center center;
        }

        .hero-video-text__title-wrapper {
            width: calc(100% - 1rem);
            min-width: 0;
            transform: none;
        }

        .hero-video-text__svg-title,
        .hero-video-text__reflection,
        .hero-video-text__outline {
            font-size: 66px;
            letter-spacing: -2px;
        }

        .services {
            padding: 5.5rem 0 3rem;
        }

        .services__container {
            width: calc(100% - 1.5rem);
        }

        .services__eyebrow {
            margin-bottom: 0.65rem;
            font-size: 1rem;
        }

        .services__swiper {
            overflow: hidden;
        }

        .services__slide {
            min-height: 145px;
            padding-right: 2.75rem;
            padding-left: 2.75rem;
        }

        .services__title {
            margin-bottom: 0.7rem;
            font-size: clamp(1.85rem, 9.5vw, 2.6rem);
            line-height: 1;
            letter-spacing: -0.02em;
            white-space: normal;
            overflow-wrap: normal;
            word-break: normal;
        }

        .services__text {
            max-width: 270px;
            font-size: 0.86rem;
            line-height: 1.4;
        }

        .services__controls {
            top: 50%;
        }

        .services__arrow {
            width: 2.25rem;
            height: 3rem;
        }

        .services__arrow svg {
            width: 22px;
            height: 22px;
        }

        .services__actions {
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 1.25rem;
        }

        .services__button {
            width: min(100%, 290px);
            min-height: 44px;
        }

        .services__stat {
            justify-content: center;
            gap: 0.85rem;
            margin-top: 1.75rem;
        }

        /*.services__stat-number {*/
        /*    width: 4.25rem;*/
        /*    height: 4.25rem;*/
        /*    font-size: 4.4rem;*/
        /*}*/

        .services__stat-label {
            max-width: 125px;
            font-size: 0.9rem;
        }

        .services__media-description {
            max-width: 100%;
            padding-right: 0.5rem;
            padding-left: 0.5rem;
        }

        .testimonials {
            padding: 4rem 0 3.5rem;
        }

        .testimonials .container {
            width: calc(100% - 1.5rem);
        }

        .testimonials .section-title {
            margin-bottom: 3rem;
            font-size: 1.75rem;
        }

        .testimonials__layout {
            gap: 3.25rem;
        }

        .testimonials__row {
            gap: 1.5rem;
        }

        .testimonials__card,
        .testimonials__card--accent {
            width: calc(100% - 0.5rem);
            height: auto;
            min-height: 250px;
            padding: 3.5rem 1.25rem 1.5rem;
            border-radius: 1.5rem;
            box-shadow: 6px 8px 8px rgba(0, 0, 0, 0.3);
        }

        .testimonials__card.is-expanded {
            height: auto;
            min-height: 250px;
        }
        
        .testimonials__icon,
        .testimonials__card--accent .testimonials__icon {
            top: -1.25rem;
            right: auto;
            left: 1.25rem;
            width: 48px;
            height: 48px;
        }

        .testimonials__quote {
            font-size: 0.9rem;
            line-height: 1.4;
            line-clamp: 6;
            -webkit-line-clamp: 6;
        }

        .testimonials__author {
            margin-top: auto;
            font-size: 0.8rem;
            line-height: 1.35;
        }

        .testimonials__feature {
            max-width: 290px;
        }

        .testimonials__feature-title {
            margin-bottom: 0.9rem;
            font-size: 0.95rem;
        }

        .testimonials__feature p {
            font-size: 0.85rem;
        }

        .locations-map {
            min-height: auto;
            padding: 2rem 0;
        }

        .locations-map .container {
            width: calc(100% - 1.5rem);
        }

        .locations-map__viewport {
            width: 100%;
            aspect-ratio: 975 / 610;
            box-shadow:
                0 1.5rem 3.5rem rgba(0, 0, 0, 0.45),
                inset 0 0 3rem rgba(0, 91, 194, 0.12);
        }

        .locations-map__status {
            max-width: calc(100% - 2rem);
            font-size: 0.78rem;
            text-align: center;
            white-space: nowrap;
        }

        .site-footer__brand-wrapper {
            margin-bottom: 2rem;
        }

        .site-footer__logo {
            width: 175px;
        }

        .newsletter__label {
            font-size: 0.95rem;
        }

        .newsletter__control {
            height: 44px;
        }

        .site-footer__copyright,
        .site-footer__legal {
            font-size: 0.8rem;
        }

        .site-footer__accent {
            height: 14px;
        }

        .contact-modal__dialog {
            width: calc(100% - 1rem);
            margin-top: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .contact-modal__content {
            border-radius: 0.85rem;
        }

        .contact-modal__header {
            min-height: 3rem;
            padding: 0.75rem 0.85rem 0;
        }

        .contact-modal__close {
            width: 32px;
            height: 32px;
        }

        .contact-modal__body {
            max-height: calc(100svh - 4rem);
            padding: 0.25rem 1rem 1.5rem;
        }

        .contact-form__column {
            gap: 1rem;
        }

        .contact-form__label {
            margin-left: 0.35rem;
            font-size: 0.8rem;
        }

        .contact-form__control {
            min-height: 46px;
            border-radius: 0.85rem;
        }

        .contact-form__textarea {
            min-height: 150px;
        }

        .contact-form__submit {
            width: 100%;
            min-width: 0;
        }

        #newsletterModal .newsletter-modal__dialog {
            width: calc(100% - 1rem);
        }

        #newsletterModal .newsletter-modal__body {
            padding: 3.75rem 1rem 1.25rem;
        }

        #newsletterModal .newsletter-modal__title {
            font-size: 1.4rem;
        }

        #newsletterModal .newsletter-modal__consent {
            padding: 0.8rem;
        }

        #newsletterModal .newsletter-modal__consent-label {
            font-size: 0.76rem;
        }

        #newsletterModal .newsletter-modal__submit {
            width: 100%;
        }

    }

    @keyframes request-pulse {

        0%,
        16%,
        100% {
            box-shadow:0 5px 15px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(249, 181, 31, 0);
        }

        4% {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12), 0 0 0 8px rgba(249, 181, 31, 0.24);
        }

        8% {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12), 0 0 0 15px rgba(249, 181, 31, 0);
        }

        11% {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12), 0 0 0 6px rgba(249, 181, 31, 0.18);
        }

        15% {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12), 0 0 0 12px rgba(249, 181, 31, 0);
        }

    }

    @keyframes locations-map-pin-pulse {

        0%,
        100% {
            opacity: 0.35;
            transform: scale(0.7);
        }

        50% {
            opacity: 0.9;
            transform: scale(1.1);
        }

    }

    @keyframes request-gradient {

        from {
            background-position: 0 50%;
        }

        to {
            background-position: 200% 50%;
        }

    }

    /* Prefers reduced motion */
    @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;
        }

        .locations-map__state,
        .locations-map__status,
        .locations-map__marker-glow,
        #newsletterModal .newsletter-modal__close,
        #newsletterModal .newsletter-modal__submit,
        #newsletterModal .newsletter-modal__input,
        #newsletterModal .newsletter-modal__consent,
        #newsletterModal .newsletter-modal__privacy-link {
            transition: none;
        }

        .site-header,
        .site-header__link,
        .site-header__link::after,
        .site-header__cta,
        .site-header__toggler-icon span {
            transition: none;
            animation: none;
        }

    }


/* =========================================
   CHAT WIDGET
========================================= */

.chat-widget {
    position: fixed;
    right: 25px;
    bottom: 90px;

    width: 360px;
    height: 500px;

    background: #ffffff;
    border-radius: 16px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);

    display: none;
    flex-direction: column;

    overflow: hidden;

    z-index: 99999;
}


/* CHAT ABIERTO */

.chat-widget--active {
    display: flex;
}


/* =========================================
   HEADER DEL CHAT
========================================= */

.chat-widget__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 18px;

    background: #1976d2;
    color: #ffffff;
}


.chat-widget__title strong {
    display: block;
    font-size: 16px;
}


.chat-widget__title span {
    display: block;

    margin-top: 3px;

    font-size: 12px;

    opacity: 0.85;
}


.chat-widget__close {
    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}


/* =========================================
   MENSAJES
========================================= */

.chat-widget__messages {
    flex: 1;

    padding: 15px;

    overflow-y: auto;

    background: #f5f5f5;
}


/* =========================================
   MENSAJES INDIVIDUALES
========================================= */

.chat-message {
    display: flex;

    margin-bottom: 10px;
}


.chat-message--admin {
    justify-content: flex-start;
}



.chat-message--user {
    justify-content: flex-end;
}


.chat-message__bubble {
    max-width: 75%;

    padding: 10px 14px;

    border-radius: 14px;

    word-break: break-word;
}


/* Mensaje administrador */

.chat-message--admin .chat-message__bubble {
    background: #ffffff;

    color: #222222;

    border-bottom-left-radius: 4px;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}


/* Mensaje cliente */

.chat-message--user .chat-message__bubble {
    background: #1976d2;

    color: #ffffff;

    border-bottom-right-radius: 4px;
}


/* =========================================
   FORMULARIO
========================================= */

.chat-widget__form {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px;

    background: #ffffff;

    border-top: 1px solid #dddddd;
}


.chat-widget__input {
    flex: 1;

    min-width: 0;

    border: 1px solid #dddddd;

    border-radius: 22px;

    padding: 10px 14px;

    outline: none;
}


.chat-widget__input:focus {
    border-color: #1976d2;
}


.chat-widget__send {
    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: #1976d2;

    color: #ffffff;

    cursor: pointer;
}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 500px) {

    .chat-widget {

        right: 10px;
        bottom: 80px;

        width: calc(100% - 20px);

        height: 70vh;
    }

}


}