﻿/* =========================================================
   FUENTE MONT
========================================================= */
@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Book.otf') format('opentype');
    font-weight: 450;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Lightitalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ============================================================
   ADEX DATA TRADE - Landing
   Inspirado visualmente en el PDF de referencia.
   ============================================================ */
:root {
    --adt-blue: #002f87;
    --adt-blue-dark: #001f63;
    --adt-blue-deep: #001b5b;
    --adt-blue-soft: #0a4aa3;
    --adt-cyan: #16aef0;
    --adt-cyan-light: #a6e7fb;
    --adt-red: #ed1c24;
    --adt-green: #36b978;
    --adt-white: #fff;
    --adt-light: #f5f9ff;
    --adt-text: #17345f;
    --adt-muted: #687b9a;
    --adt-radius: 26px;
    --adt-shadow: 0 18px 50px rgba(0, 35, 100, .13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    font-family: "Mont", sans-serif;
    color: var(--adt-text);
    background: #fff;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.adt-container {
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */
.adt-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 99999;
    background: transparent;
    transform: translateY(0);
    transition: transform 0.35s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

    .adt-header.adt-header-hidden {
        transform: translateY(-100%) !important;
    }

    .adt-header.adt-header-visible {
        transform: translateY(0) !important;
    }

    .adt-header.adt-header-scrolled {
        background: #002d78;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    }

/* =========================================================
   NAV
========================================================= */
.adt-nav {
    position: relative;
    min-height: 82px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* =========================================================
   LOGO
========================================================= */
.adt-brand {
    display: flex;
    align-items: center;
    width: 200px;
    flex-shrink: 0;
    text-decoration: none;
}

    .adt-brand img {
        display: block;
        width: 200px;
        height: auto;
        max-width: 100%;
    }

/* =========================================================
   MENÚ
========================================================= */
.adt-nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
}

    /* =========================================================
   LINKS
========================================================= */
    .adt-nav-menu > a:not(.adt-login-btn) {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 13px;
        color: #12AAFF;
        font-family: 'Mont', sans-serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
        transition: color .2s ease, opacity .2s ease;
    }

        .adt-nav-menu > a:not(.adt-login-btn):hover {
            color: #ffff;
        }

/* =========================================================
   LOGIN
========================================================= */
.adt-login-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* =========================================================
   BOTÓN LOGIN
========================================================= */
.adt-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 36px;
    padding: 0 16px;
    background: #12AAFF;
    color: #fff !important;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all .2s ease;
}

    .adt-login-btn:hover {
        background: #32aa75;
        color: #fff !important;
    }

/* =========================================================
   LOGIN FLOTANTE
========================================================= */
.adt-login-menu {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    width: 360px;
    padding: 28px 24px 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .20);
    z-index: 9999;
    /* OCULTO POR DEFECTO */
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

    /* =========================================================
   LOGIN ABIERTO
========================================================= */
    .adt-login-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .adt-login-menu::before {
        content: "";
        position: absolute;
        top: -7px;
        right: 20px;
        width: 15px;
        height: 15px;
        background: #fff;
        transform: rotate(45deg);
        border-radius: 2px;
    }

.adt-login-title {
    margin-bottom: 18px;
}

    .adt-login-title h3 {
        margin: 0;
        color: #17191f;
        font-size: 26px;
        font-weight: 600;
        line-height: 1.2;
    }

.adt-login-input-group {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.adt-login-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c5ce;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

    .adt-login-input-icon svg {
        width: 17px;
        height: 17px;
    }

.adt-login-input-group .form-control {
    width: 100%;
    height: 46px;
    padding: 0 14px 0 45px;
    border: 1px solid #dfe3e9 !important;
    border-radius: 7px !important;
    background: #fff !important;
    color: #333;
    font-size: 13px;
    box-shadow: none !important;
}

    .adt-login-input-group .form-control:focus {
        border-color: #12AAFF !important;
        box-shadow: 0 0 0 2px rgba(18, 170, 255, .08) !important;
    }

.adt-login-captcha {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 5px 0 12px;
    overflow: hidden;
}

.adt-login-button-container {
    width: 100%;
}

.adt-login-submit {
    display: block;
    width: 100%;
    height: 45px;
    border: 0 !important;
    border-radius: 7px !important;
    background: #143DFF !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none !important;
    transition: background .2s ease;
}

    .adt-login-submit:hover {
        background: #0d32dc !important;
    }

.adt-login-error-container {
    min-height: 3px;
    margin-top: 5px;
}

.adt-login-error {
    display: block;
    color: #e53935 !important;
    font-size: 11px;
}

.adt-login-links {
    margin-top: 5px;
    color: #9299aa;
    font-size: 12px;
    line-height: 1.5;
}

    .adt-login-links p {
        margin: 4px 0 0;
    }

    .adt-login-links a {
        color: #202020;
        text-decoration: none;
        border-bottom: 1px solid #888;
        margin-left: 4px;
    }

.adt-login-forgot {
    margin-bottom: 4px;
}

    .adt-login-forgot a {
        margin-left: 0;
        color: #9299aa;
        border-bottom: none;
    }



.adt-login-links {
    width: 100%;
    margin-top: 8px;
    font-family: 'Mont', sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

    .adt-login-links p {
        margin: 4px 0 0;
        color: #9299aa;
    }

    .adt-login-links span {
        color: #9299aa;
    }

    .adt-login-links a {
        color: #202020;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid #888;
        margin-left: 4px;
        transition: color .2s ease;
    }

        .adt-login-links a:hover {
            color: #12AAFF;
        }

.adt-login-forgot {
    margin-bottom: 3px;
}

    .adt-login-forgot a {
        margin-left: 0;
        border-bottom: 0;
        color: #9299aa;
    }

.adt-header,
.adt-header nav,
.adt-nav,
.adt-nav-menu,
.adt-login-wrapper {
    overflow: visible !important;
}

.adt-menu-toggle {
    display: none;
    width: 42px;
    height: 40px;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .adt-menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px auto;
        background: #ffffff;
        transition: .25s ease;
    }



/* =========================================================
   CLIENTES
========================================================= */
.adt-clients {
    position: relative;
    z-index: 5;
    background-color: #001D5F;
    background-image: url("/assets/img/fondo-4.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 25px 0 150px;
    overflow: visible;
}

.adt-client-title {
    display: flex;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 0 25px;
    line-height: 1;
}

    .adt-client-title .adt-faq-title-arrow {
        width: 42px;
        height: 42px;
        object-fit: contain;
        margin-right: 10px;
        margin-top: 2px;
    }

.adt-client-title-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .adt-client-title-text > span {
        color: #fff;
        font-size: 40px;
        line-height: .95;
        font-weight: 400;
    }

    .adt-client-title-text > strong {
        color: #fff;
        font-size: 42px;
        line-height: .95;
        font-weight: 800;
        margin-left: 52px;
    }

/* =========================================================
   CARRUSEL
========================================================= */
.adt-client-slider {
    position: relative;
    width: 1120px;
    max-width: calc(100% - 40px);
    height: 350px;
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.adt-client-viewport {
    position: relative;
    width: 1000px;
    height: 340px;
    flex: 0 0 1000px;
    overflow: hidden;
    display: block;
}

.adt-client-track {
    position: absolute;
    top: 35px;
    left: 0;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 24px;
    width: max-content !important;
    height: 260px;
    margin: 0;
    padding: 0;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

/* =========================================================
   TARJETAS
========================================================= */

.adt-client-slider .adt-client-card {
    position: relative;
    display: block !important;
    flex: 0 0 190px !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    height: 280px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 22px;
    background: #0b4ca3;
    opacity: .72;
    transform: scale(.88);
    transform-origin: center center;
    transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .45s ease, box-shadow .45s ease;
    z-index: 1;
    pointer-events: auto;
}


    .adt-client-slider .adt-client-card.active {
        transform: scale(1.2);
        opacity: 1;
        z-index: 20;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .35);
    }

    .adt-client-slider .adt-client-card:not(.active):not(:has(+ .adt-client-card.active)) {
        margin-right: -23px !important;
    }

.adt-client-slider .adt-client-track {
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.adt-client-slider .adt-client-card {
    transition: transform .45s cubic-bezier(.22, .61, .36, 1), opacity .45s ease, box-shadow .45s ease;
    will-change: transform, opacity;
}

    .adt-client-slider .adt-client-card img {
        display: block;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
        object-position: center;
        margin: 0;
    }

    .adt-client-slider .adt-client-card::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(0, 20, 70, .02) 15%, rgba(0, 20, 70, .20) 45%, rgba(0, 20, 70, .96) 100%);
    }

.adt-client-slider .adt-client-card-content {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 18px;
    z-index: 5;
    text-align: center;
}

    .adt-client-slider .adt-client-card-content > span {
        display: block;
        color: #fff;
        font-size: 14px;
        line-height: 1.05;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .adt-client-slider .adt-client-card-content a {
        color: #fff;
        font-size: 12px;
        font-style: italic;
        font-weight: 300;
        text-decoration: none;
    }

    .adt-client-slider .adt-client-card-content .adt-arrow {
        display: inline;
        color: #00aeef;
        font-size: 19px;
        font-style: normal;
        margin-left: 3px;
    }

.adt-client-slider .adt-slider-arrow {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #0874c9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .20);
    transform: translateY(-50%);
    transition: transform .2s ease, background .2s ease;
}

    .adt-client-slider .adt-slider-arrow:hover {
        background: #0a82df;
        transform: translateY(-50%) scale(1.08);
    }

    .adt-client-slider .adt-slider-arrow:focus {
        outline: none;
    }

    .adt-client-slider .adt-slider-arrow.prev {
        left: 0;
    }

    .adt-client-slider .adt-slider-arrow.next {
        right: 0;
    }

/* =========================================================
   TEXTO DINÁMICO
========================================================= */
.adt-client-info p {
    transition: opacity .22s ease, transform .22s ease;
}

    .adt-client-info p.adt-description-changing {
        opacity: 0;
        transform: translateY(5px);
    }

/* =========================================================
   INFORMACIÓN + LOGOS
========================================================= */
.adt-client-logos {
    position: relative;
    z-index: 100;
    width: 900px;
    max-width: calc(100% - 40px);
    min-height: 230px;
    margin: 25px auto -175px;
    padding: 20px 35px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .18);
    display: grid;
    grid-template-columns: 42% 58%;
    grid-template-rows: 1fr 1fr 1fr;
    align-items: center;
}

.adt-client-info {
    grid-column: 1;
    grid-row: 1 / 4;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
    box-sizing: border-box;
}

    .adt-client-info p {
        margin: 0;
        width: 100%;
        color: #153b78;
        font-size: 15px;
        line-height: 1.55;
        font-weight: 500;
        text-align: left;
    }

.logos-group {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
}

.logos-row-1 {
    grid-row: 1;
}

.logos-row-2 {
    grid-row: 2;
}

.logos-row-3 {
    grid-row: 3;
}

.logos-group img {
    width: 85px;
    height: 36px;
    object-fit: contain;
    display: block;
    transition: transform .2s ease;
}

    .logos-group img:hover {
        transform: scale(1.08);
    }



/* =========================================================
   PLANES
========================================================= */
.adt-plans {
    position: relative;
    background: #fff;
    padding: 25px 0 35px;
    overflow: visible;
}

.adt-plans-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
    margin-bottom: 35px;
    color: #19a9ed;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
}

.adt-plans-arrow {
    color: #ff1d25;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.adt-plans-wrapper {
    position: relative;
    width: 920px;
    max-width: calc(100% - 40px);
    height: 465px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
    overflow: visible;
}

.adt-plan-card {
    position: relative;
    min-height: 445px;
    background: #fff;
    text-align: center;
    border-right: 1px solid #cfe5f2;
}

    .adt-plan-card:first-child {
        border-radius: 25px 0 0 25px;
    }

    .adt-plan-card:nth-child(2) {
        border-radius: 0;
    }

    .adt-plan-card:last-child {
        border-right: none;
    }

.adt-plan-content {
    position: relative;
    height: 100%;
    box-sizing: border-box;
    padding: 68px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.adt-plan-name {
    color: #082d70;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1;
    white-space: nowrap;
    margin-bottom: 12px;
}

.adt-plan-price {
    min-width: 120px;
    height: 36px;
    padding: 3px 15px;
    box-sizing: border-box;
    border: 1.5px solid #7ed6f6;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #082d70;
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.adt-plan-tax {
    margin-top: 5px;
    color: #082d70;
    font-size: 12px;
    font-style: italic;
}

.adt-plan-users {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    color: #082d70;
}

    .adt-plan-users strong {
        font-size: 22px;
        font-weight: 800;
        line-height: 1;
    }

    .adt-plan-users span {
        font-size: 12px;
        line-height: 1;
    }

.adt-plan-duration {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #082d70;
}

    .adt-plan-duration strong {
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
    }

    .adt-plan-duration span {
        margin-top: 4px;
        font-size: 14px;
        line-height: 1.15;
    }

.adt-plan-feature {
    margin-top: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #082d70;
}

.adt-check {
    width: 45px;
    height: 45px;
    margin-bottom: 1px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    position: relative;
}

.adt-plan-feature span {
    font-size: 13px;
    line-height: 1.25;
}

.adt-plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 145px;
    height: 34px;
    margin-top: 17px;
    border-radius: 20px;
    background: #19a9ed;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

    .adt-plan-button span {
        font-size: 22px;
        font-weight: 400;
        line-height: 1;
    }

    .adt-plan-button:hover {
        color: #fff;
        background: #079fe4;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(25, 169, 237, .28);
    }

.adt-plan-featured {
    position: relative;
    z-index: 5;
    min-height: 480px;
    margin-top: -15px;
    margin-bottom: -20px;
    background: #94dcef;
    border-radius: 23px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

    /* Contenido del destacado */
    .adt-plan-featured .adt-plan-content {
        padding-top: 80px;
    }

.adt-plan-recommended {
    position: absolute;
    top: 18px;
    justify-content: center;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #315b86;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
}

.adt-recommended-star {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.adt-plan-featured .adt-plan-price {
    border-color: rgba(255, 255, 255, .8);
    color: #082d70;
    background: rgba(255, 255, 255, .10);
}

.adt-plan-button-dark {
    background: #002b70;
}

    .adt-plan-button-dark:hover {
        background: #001f55;
    }

.adt-plans-footer {
    max-width: 720px;
    margin: 48px auto 0;
    text-align: center;
}

    .adt-plans-footer p {
        margin: 0;
        color: #55709b;
        font-size: 12px;
        line-height: 1.35;
    }

    .adt-plans-footer a {
        color: #19a9ed;
        font-weight: 800;
        text-decoration: underline;
    }

        .adt-plans-footer a:hover {
            text-decoration: underline;
        }

.adt-plans-tabs {
    display: none;
}

/* =========================================================
   TESTIMONIOS
========================================================= */
.adt-testimonials {
    position: relative;
    background-color: #12AAFF;
    background-image: url("/assets/img/fondo-3.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% auto;
    padding: 55px 0 70px;
    color: #fff;
    overflow: hidden;
}

.adt-testimonial-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 35px;
    line-height: 1;
}

    .adt-testimonial-title > .adt-testimonial-arrow {
        color: #ff1d25;
        font-size: 42px;
        font-weight: 900;
        line-height: .9;
        margin-right: 8px;
        margin-top: 4px;
    }

.adt-testimonial-title-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .adt-testimonial-title-text > span {
        color: #fff;
        font-size: 32px;
        line-height: .95;
        font-weight: 400;
    }

    .adt-testimonial-title-text > strong {
        color: #fff;
        font-size: 38px;
        line-height: .92;
        font-weight: 800;
        margin-left: 90px;
    }

.adt-testimonial-slider {
    position: relative;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.adt-testimonial-viewport {
    width: 945px;
    height: 350px;
    max-width: calc(100% - 120px);
    overflow: hidden;
    position: relative;
    padding: 12px 0 25px;
}

.adt-testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    width: max-content;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.adt-testimonial-card {
    position: relative;
    flex: 0 0 455px;
    width: 430px;
    height: 330px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    color: #082d70;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 8px 0 rgba(0, 0, 0, 0.19);
}

.adt-testimonial-text {
    height: 175px;
    box-sizing: border-box;
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .adt-testimonial-text p {
        margin: 0;
        max-width: 345px;
        color: #153b78;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 500;
        text-align: center;
    }

.adt-testimonial-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 95px;
    border-radius: 40px 40px 0 0;
    background: #001d5f;
    display: flex;
    align-items: center;
    padding: 0 25px 0 90px;
    box-sizing: border-box;
}

.adt-testimonial-logo {
    position: absolute;
    left: 27px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    padding: 4px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #16aceb;
    z-index: 5;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
}

    .adt-testimonial-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.adt-testimonial-person {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
    text-align: left;
    color: #fff;
    line-height: 1.1;
}

    /* Nombre */
    .adt-testimonial-person strong {
        font-size: 14px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 3px;
    }

    /* Cargo */
    .adt-testimonial-person span {
        font-size: 12px;
        color: #fff;
        line-height: 1.2;
    }

    /* Empresa */
    .adt-testimonial-person small {
        font-size: 12px;
        color: #fff;
        font-weight: 700;
        margin-top: 2px;
    }

.adt-testimonial-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #002b70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 36px;
    font-family: Arial, sans-serif;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .adt-testimonial-arrow-btn:hover {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    }

    /* Izquierda */
    .adt-testimonial-arrow-btn.prev {
        left: 5px;
    }

    /* Derecha */
    .adt-testimonial-arrow-btn.next {
        right: 5px;
    }

/* =========================================================
   TUTORIALES
========================================================= */
.adt-tutorials {
    background: #fff;
    padding: 45px 0 70px;
    overflow: hidden;
}

    .adt-tutorials .adt-container {
        width: 100%;
    }

.adt-tutorial-layout {
    display: grid;
    grid-template-columns: 390px 400px;
    column-gap: 35px;
    align-items: start;
    width: 825px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
}

/* =========================================================
   COLUMNA IZQUIERDA
========================================================= */
.adt-tutorial-left {
    width: 390px;
    min-width: 0;
}

.adt-tutorial-title {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 22px;
    padding: 0;
    line-height: 1;
}

.adt-tutorial-title-arrow {
    flex-shrink: 0;
    color: #ff1d25;
    font-size: 38px;
    line-height: .95;
    font-weight: 800;
    margin-right: 9px;
    margin-top: 2px;
}

.adt-tutorial-title-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .adt-tutorial-title-text > span {
        color: #002d78;
        font-size: 32px;
        line-height: .95;
        font-weight: 800;
    }

    .adt-tutorial-title-text > strong {
        display: block;
        color: #002d78;
        font-size: 17px;
        line-height: 1.15;
        font-weight: 500;
        margin-top: 5px;
    }

/* =========================================================
   TUTORIAL PRINCIPAL
========================================================= */
.adt-tutorial-feature {
    width: 350px;
    margin-left: 0;
}

.adt-tutorial-main-image {
    position: relative;
    width: 350px;
    height: 200px;
    overflow: hidden;
    background: #064497;
}

    .adt-tutorial-main-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .3s ease;
    }

    .adt-tutorial-main-image:hover img {
        transform: scale(1.02);
    }

.adt-tutorial-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(0, 45, 120, .60);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

    .adt-tutorial-play:hover {
        transform: translate(-50%, -50%) scale(1.08);
        background: #ff1d25;
    }

.adt-tutorial-play-sm {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(0, 45, 120, .60);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

    .adt-tutorial-play-sm:hover {
        transform: translate(-50%, -50%) scale(1.08);
        background: #ff1d25;
    }

.adt-tutorial-feature-info {
    padding: 20px 10px 0;
}

.adt-tutorial-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    border: 1.5px solid #002d78;
    border-radius: 15px;
    color: #002d78;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
}

    .adt-tutorial-label b {
        color: #ff1d25;
        font-size: 13px;
        line-height: 1;
    }

.adt-tutorial-feature-info h3 {
    margin: 8px 0 0;
    color: #002d78;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 500;
}

/* =========================================================
   COLUMNA DERECHA
========================================================= */
.adt-tutorial-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 400px;
    padding-top: 0;
}

.adt-tutorial-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    column-gap: 13px;
    align-items: center;
    width: 100%;
    min-height: 72px;
    margin-top: 5px;
}

.one {
    display: none;
}

.adt-tutorial-thumb {
    position: relative;
    width: 150px;
    height: 80px;
    overflow: hidden;
    background: #064497;
}

    .adt-tutorial-thumb img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .3s ease;
    }

.adt-tutorial-item:hover .adt-tutorial-thumb img {
    transform: scale(1.05);
}

.adt-tutorial-item-info {
    margin: 0 0 0 20px;
    min-width: 0;
}

.adt-tutorial-item-title {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: 1.5px solid #002d78;
    border-radius: 15px;
    color: #002d78;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

    .adt-tutorial-item-title span {
        color: #ff1d25;
        font-size: 12px;
        line-height: 1;
    }

.adt-tutorial-item-info p {
    margin: 6px 0 0;
    color: #002d78;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

/* =========================================================
   HOVER
========================================================= */
.adt-tutorial-item:hover .adt-tutorial-item-title span {
    color: #ff1d25;
}

.adt-tutorial-mobile-dots,
.adt-tutorial-mobile-arrow {
    display: none;
}


/* =========================================================
   ¿SABÍAS QUÉ?
========================================================= */
.adt-facts {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 45px 0 155px;
    overflow: visible;
}

.adt-facts-container {
    position: relative;
    width: 1120px;
    max-width: calc(100% - 40px);
    min-height: 325px;
    margin: 0 auto;
    padding: 40px 55px 35px;
    box-sizing: border-box;
    background-color: #001d5f;
    background-image: url("/assets/img/fondo-4.png");
    background-repeat: no-repeat;
    background-size: 1120px auto;
    background-position: center;
    border-radius: 32px;
    overflow: visible;
}

.adt-facts-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    line-height: 1;
    position: relative;
    z-index: 5;
}

.adt-facts-title-arrow {
    flex-shrink: 0;
    color: #ff1d25;
    font-size: 40px;
    line-height: .95;
    font-weight: 800;
    margin-right: 9px;
    margin-top: 3px;
}

.adt-facts-title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .adt-facts-title-text > span {
        color: #fff;
        font-size: 36px;
        line-height: .95;
        font-weight: 800;
    }

    .adt-facts-title-text > strong {
        color: rgba(255, 255, 255, .82);
        font-size: 15px;
        line-height: 1.2;
        font-weight: 400;
        margin-top: 8px;
    }

.adt-facts-slider {
    position: absolute;
    width: 896px;
    max-width: calc(100% - 110px);
    left: 50%;
    right: auto;
    bottom: -105px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.adt-facts-viewport {
    position: relative;
    width: 896px;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.adt-facts-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 8px;
    width: max-content;
    margin: 0;
    padding: 0;
    will-change: transform;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.adt-fact-card {
    position: relative;
    flex: 0 0 218px;
    width: 218px;
    min-width: 218px;
    height: auto;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
    border-radius: 0;
    box-sizing: border-box;
    z-index: 5;
}

    .adt-fact-card img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
        transition: transform .3s ease;
    }

    .adt-fact-card:hover img {
        transform: scale(1.025);
    }

/* =========================================================
   FLECHAS
========================================================= */
.adt-facts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #002d78;
    font-size: 34px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    transition: transform .2s ease, background .2s ease;
}

    /* izquierda */
    .adt-facts-arrow.prev {
        left: -62px;
    }

    /* derecha */
    .adt-facts-arrow.next {
        right: -62px;
    }

    .adt-facts-arrow:hover {
        transform: translateY(-50%) scale(1.08);
        background: #f4f8fc;
    }


/* =========================================================
   PREGUNTAS FRECUENTES
========================================================= */
.adt-faq {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 0px 0 45px;
    overflow: visible;
}

    .adt-faq > .adt-container {
        width: 900px;
        max-width: calc(100% - 80px);
        margin: 0 auto;
    }

.adt-faq-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 35px;
    align-items: start;
    width: 100%;
}

.adt-faq-image {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: visible;
    margin-left: -80px;
    z-index: 1;
}

    .adt-faq-image img {
        display: block;
        width: 500px;
        max-width: none;
        height: auto;
        max-height: 400px;
        object-fit: contain;
        object-position: left bottom;
    }

.adt-faq-content {
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.adt-faq-title {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 35px;
    margin: 0 0 18px;
}

.adt-faq-title-arrow {
    display: block;
    width: 50px;
    height: 50px;
    flex: 0 0 22px;
    object-fit: contain;
    margin-right: 7px;
}

.adt-faq-title h2 {
    margin: 0;
    padding: 0;
    color: #002d78;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

/* =========================================================
   ACORDEÓN
========================================================= */
.adt-accordion {
    width: 100%;
}

.adt-faq-item {
    width: 100%;
    border-bottom: 2px solid #cfd9e7;
    background: transparent;
}

/* =========================================================
   PREGUNTA
========================================================= */
.adt-faq-question {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 100%;
    min-height: 43px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 350;
    cursor: pointer;
}

    .adt-faq-question > span {
        font-size: 18px;
        flex: 1;
        min-width: 0;
        display: block;
    }

.adt-faq-icon {
    display: block;
    width: 40px;
    height: 40px;
    flex: 0 0 14px;
    object-fit: contain;
    transition: transform .25s ease;
}

.adt-faq-item.active .adt-faq-icon {
    transform: rotate(180deg);
}

/* =========================================================
   RESPUESTA
========================================================= */
.adt-answer {
    display: block;
    height: 0;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 25px 13px 0;
    margin-top: 0;
    opacity: 0;
    color: #617896;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    transition: height .45s cubic-bezier(.25, .8, .25, 1), opacity .30s ease, margin-top .40s ease;
}

.adt-answer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .adt-answer-list li {
        position: relative;
        padding-left: 18px;
        font-family:Mont,sans-serif;
        color: #55709c;
        font-size: 15px;
        line-height: 1.45;
    }

        .adt-answer-list li::before {
            content: "";
            position: absolute;
            left: 3px;
            top: 7px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #12aaff;
        }

.adt-faq-item.active .adt-answer {
    display: block;
}

.adt-faq-question:hover > span {
    color: #0aa7ed;
}

.adt-faq-question:focus {
    outline: none;
}


/* =========================================================
   FOOTER
========================================================= */
.adt-footer {
    position: relative;
    width: 100%;
    height: 280px;
    background: #00266f;
    color: #fff;
    overflow: visible;
}

.adt-footer-container {
    width: 1080px;
    max-width: calc(100% - 100px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================================
   BLOQUE IZQUIERDO
========================================================= */
.adt-footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 300px;
}

.adt-footer-logo {
    display: block;
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.adt-footer-membership {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 180px;
}

.adt-footer-membership-title {
    display: flex;
    align-items: center;
    width: 100%;
    color: #fff;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 400;
    margin: 0;
}

.adt-footer-arrow {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    object-fit: contain;
    margin: 0 3px 0 0;
}

.adt-footer-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 30px;
    margin-top: 7px;
    margin-left: 0;
    padding: 0 15px;
    background: #12AAFF;
    color: #fff !important;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .2s ease, transform .2s ease;
}

    .adt-footer-contact:hover {
        background: #0799e8;
        transform: translateY(-1px);
    }

/* =========================================================
   BLOQUE DERECHO
========================================================= */
.adt-footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.adt-footer-adex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 200px;
}

.adt-footer-description {
    margin: 0 0 3px;
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
}

.adt-footer-adex-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5px;
}

    .adt-footer-adex-logo img {
        display: block;
        width: 160px;
        height: auto;
        object-fit: contain;
    }

/* =========================================================
   REDES SOCIALES
========================================================= */
.adt-footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 3px;
}

    /* =========================================================
   RED SOCIAL
========================================================= */
    .adt-footer-social a {
        width: 27px;
        height: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        text-decoration: none;
        transition: transform .2s ease;
    }

    .adt-footer-social img {
        display: block;
        width: 60px;
        height: 60px;
        max-width: none;
        object-fit: contain;
    }

        .adt-footer-social img:hover {
            transform: scale(1.2);
            opacity: 0.5;
            transition: transform .5s ease;
        }

/* =========================================================
   BOTÓN FLOTANTE - ADQUIERE TU PLAN
========================================================= */
.adt-floating {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #39be7c;
    color: #fff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    transition: transform .2s ease, background .2s ease;
}

    .adt-floating::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 95px;
        height: 95px;
        border-radius: 50%;
        background: rgba(57, 190, 124, .5);
        transform: translate(-50%, -50%) scale(1);
        z-index: -1;
        pointer-events: none;
    }

    .adt-floating::after {
        animation: adtFloatingRipple 2.4s ease-out infinite;
        animation-delay: 1.5s;
    }

@keyframes adtFloatingRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.adt-floating:hover {
    transform: scale(1.05);
    background: #31b471;
}

.adt-floating span {
    display: block;
    font-size: 9px;
    line-height: 1.1;
    font-weight: 500;
}

.adt-floating strong {
    display: block;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 800;
}

/* =========================================================
   BOTÓN VOLVER ARRIBA
========================================================= */
.adt-top {
    position: fixed;
    right: 25px;
    bottom: 130px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #ffff;
    color: #004A98;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s ease;
    z-index: 99998;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .18);
}

    .adt-top.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .adt-top i {
        font-size: 14px;
        line-height: 1;
    }

/* =========================================================
   TABLET
========================================================= */
/* =========================================================
   MOBILE
   DISEÑO CENTRADO
========================================================= */
/* =========================================================
   MOBILE PEQUEÑO
========================================================= */
/* ---------------- RESPONSIVE ---------------- */
.adt-login-wrapper .adt-login-menu {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none !important;
}

    .adt-login-wrapper .adt-login-menu.show {
        display: block !important;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none !important;
    }

.adt-login-wrapper .adt-login-menu {
    transition: opacity .18s ease, visibility .18s ease;
}

/* =========================================================
   MODAL DE VIDEOS
========================================================= */
.adt-video-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .30s ease, visibility .30s ease;
}

    .adt-video-modal.active {
        visibility: visible;
        opacity: 1;
    }

.adt-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 25, 70, .78);
    backdrop-filter: blur(4px);
}

.adt-video-modal-content {
    position: relative;
    width: min(900px, 90vw);
    background: #fff;
    border-radius: 18px;
    padding: 5px;
    z-index: 2;
    transform: scale(.94) translateY(10px);
    transition: transform .35s cubic-bezier(.25, .8, .25, 1);
}

.adt-video-modal.active .adt-video-modal-content {
    transform: scale(1) translateY(0);
}

/* =========================================================
   VIDEO
========================================================= */
.adt-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

    .adt-video-container iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* =========================================================
   BOTÓN CERRAR
========================================================= */
.adt-video-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #12aaff;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform .2s ease, background .2s ease;
}

    .adt-video-close:hover {
        transform: scale(1.08);
        background: #0799e8;
    }

.adt-tutorial-feature,
.adt-tutorial-item {
    cursor: pointer;
}


.adt-client-viewport,
.adt-testimonial-viewport,
.adt-facts-viewport,
.adt-module-viewport {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

    .adt-client-viewport.dragging,
    .adt-testimonial-viewport.dragging,
    .adt-facts-viewport.dragging,
    .adt-module-viewport.dragging {
        cursor: grabbing;
    }

    /* Evita que el navegador intente arrastrar las imágenes */
    .adt-client-viewport img,
    .adt-testimonial-viewport img,
    .adt-facts-viewport img,
    .adt-module-viewport img {
        -webkit-user-drag: none;
        user-drag: none;
    }

/*
   Carruseles horizontales:
   permite seguir haciendo scroll vertical en el celular.
*/
.adt-client-viewport,
.adt-testimonial-viewport,
.adt-facts-viewport {
    touch-action: pan-y;
}

/*
   Carrusel vertical de módulos:
   permite seguir haciendo scroll horizontal.
*/
.adt-module-viewport {
    touch-action: pan-x;
}


/* =========================================================
   HERO - SISTEMA FLUIDO
   CÍRCULO + VIDEO RELACIONADOS ENTRE SÍ
========================================================= */

.adt-hero-art {
    position: relative;
    /*
       El tamaño del área visual se adapta al espacio
       disponible sin depender de una resolución concreta.
    */
    width: 100%;
    height: clamp(430px, 38vw, 600px);
    min-width: 0;
    overflow: visible;
}


.adt-hero-circle {
    position: absolute;
    width: clamp(390px, 34vw, 520px);
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    background: var(--adt-cyan);
    right: clamp(-70px, -3vw, -30px);
    top: clamp(20px, 3vw, 40px);
    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   VIDEO
========================================================= */

.adt-hero-video {
    position: absolute;
    width: clamp( 560px, 47vw, 670px );
    aspect-ratio: 16 / 9;
    right: 30px;
    margin-top: 110px;
    overflow: hidden;
    border-radius: clamp( 16px, 1.3vw, 22px );
    background: #000;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    z-index: 5;
}


/* =========================================================
   VIDEO HTML
========================================================= */

.adt-hero-video-element {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    /*
       Evita que el navegador haga comportamientos
       extraños de selección/drag.
    */
    user-select: none;
}

/* =========================================================
   BOTÓN SONIDO — DENTRO DEL VIDEO, DERECHA
========================================================= */

.adt-sound-button {
    position: absolute !important;
    /* DERECHA DEL VIDEO */
    right: 14px !important;
    /* PARTE INFERIOR DEL VIDEO */
    bottom: 14px !important;
    left: auto !important;
    z-index: 20 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    width: 76px !important;
    min-width: 76px !important;
    height: 31px !important;
    margin: 0 !important;
    padding: 0 11px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(255, 255, 255, .65) !important;
    border-radius: 18px !important;
    background: rgba(0, 0, 0, .65) !important;
    color: #fff !important;
    font-family: Arial, sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: .3px !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}


    /* =========================================================
   HOVER
========================================================= */

    .adt-sound-button:hover {
        background: rgba(0, 0, 0, .90) !important;
        border-color: #fff !important;
        transform: scale(1.2) !important;
        cursor: pointer !important;
    }


    /* =========================================================
   CLICK
========================================================= */

    .adt-sound-button:active {
        transform: scale(1.05) !important;
    }


    /* =========================================================
   CLICK
========================================================= */

    .adt-sound-button:active {
        transform: translateY(0);
    }


/* =========================================================
   BARRAS DEL REPRODUCTOR
========================================================= */

.adt-sound-bars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 13px;
    height: 15px;
    flex: 0 0 13px;
}


    /* Cada barra */

    .adt-sound-bars i {
        display: block;
        width: 2px;
        min-height: 3px;
        border-radius: 3px;
        background: #fff;
        transform-origin: center;
        transition: height .15s ease, opacity .15s ease;
    }


        /* Estado detenido / muteado */

        .adt-sound-bars i:nth-child(1) {
            height: 6px;
        }

        .adt-sound-bars i:nth-child(2) {
            height: 11px;
        }

        .adt-sound-bars i:nth-child(3) {
            height: 7px;
        }


/* =========================================================
   ANIMACIÓN TIPO REPRODUCTOR DE MÚSICA
========================================================= */

@keyframes adtSoundBar1 {

    0%, 100% {
        height: 5px;
    }

    50% {
        height: 14px;
    }
}


@keyframes adtSoundBar2 {

    0%, 100% {
        height: 13px;
    }

    50% {
        height: 5px;
    }
}


@keyframes adtSoundBar3 {

    0%, 100% {
        height: 8px;
    }

    50% {
        height: 15px;
    }
}


/*
   SOLAMENTE se animan cuando realmente
   hay reproducción con sonido.
*/

.adt-sound-button.is-playing
.adt-sound-bars i:nth-child(1) {
    animation: adtSoundBar1 .65s ease-in-out infinite;
}


.adt-sound-button.is-playing
.adt-sound-bars i:nth-child(2) {
    animation: adtSoundBar2 .55s ease-in-out infinite;
}


.adt-sound-button.is-playing
.adt-sound-bars i:nth-child(3) {
    animation: adtSoundBar3 .75s ease-in-out infinite;
}


/* =========================================================
   ESTADO CON SONIDO
========================================================= */

.adt-sound-button.is-unmuted {
    background: rgba(20,20,20,.75);
    border-color: rgba(255,255,255,.7);
}


/* =========================================================
   TEXTO
========================================================= */

.adt-sound-text {
    display: inline-block;
    line-height: 1;
    font-size: 8px;
    white-space: nowrap;
    pointer-events: none;
}


/* =========================================================
   HERO MOBILE
   VIDEO SALIENDO DEL HERO
========================================================= */
/* =========================================================
   TABLET / IPAD MINI
   768 x 1024
   ========================================================= */
/*
CORRECCION DE- ESTILOS*/


/* =========================================================
   IPAD PRO 11"
   834 x 1194
   CORRECCIONES:
   - TESTIMONIOS
   - CARRUSEL DE MÓDULOS
   - PREGUNTAS FRECUENTES
========================================================= */
/* =========================================================
   HERO - IPAD / TABLET
   601px - 1100px

   Objetivo:
   - Texto a la izquierda
   - Video a la derecha
   - Nada de superposición
   - Círculo detrás del video
   - Hero completamente centrado
========================================================= */
/* =========================================================
   AJUSTE FINAL - MÓDULOS EN MOBILE
   NO AFECTA DESKTOP
========================================================= */
/* =========================================================
   RESPONSIVE - MEDIA QUERIES
   Ordenadas de mayor a menor breakpoint.
   ========================================================= */
/* ---------------- COMMON ---------------- */
.adt-section {
    padding: 80px 0;
}

.adt-section-title {
    text-align: center;
    color: #001D5F;
    font-size: clamp(30px, 4vw, 50px);
    line-height: .98;
    font-weight: 500;
    margin-bottom: 58px;
}

    .adt-section-title span,
    .adt-section-title strong {
        display: block;
    }

    .adt-section-title strong {
        font-weight: 800;
    }

.adt-section-title-light {
    color: #fff;
}

.adt-section-title-blue {
    color: var(--adt-cyan);
}

.adt-section-title-left {
    text-align: left;
}

.adt-title-arrow {
    color: #ff1d25;
    font-size: 42px !important;
    font-weight: 800;
    margin-right: 8px !important;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-3px);
}

.adt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 44px;
    padding: 11px 26px;
    border: 0;
    border-radius: 28px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .3px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}

    .adt-btn:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
    }

    .adt-btn span {
        display: inline-block;
        transition: transform 0.2s ease;
    }

    /* Alarga la flecha y la desplaza ligeramente a la derecha */
    .adt-btn:hover span {
        transform: scaleX(1.7) translateX(3px);
    }

.adt-btn-red {
    background: var(--adt-red);
    color: #fff;
}

.adt-btn-blue {
    background: var(--adt-cyan);
    color: #fff;
}

.adt-btn-dark {
    background: var(--adt-blue-deep);
    color: #fff;
}

.adt-btn-green {
    background: var(--adt-green);
    color: #fff;
}

/* =========================================================
   HERO
========================================================= */
.adt-hero {
    position: relative;
    height: 635px;
    min-height: 635px;
    display: flex;
    align-items: center;
    background: #001D5F;
    background-image: url("/assets/img/fondo-2.png");
    background-size: 80% auto;
    background-repeat: no-repeat;
    /* Centrada horizontalmente y bajada 30px desde arriba */
    background-position: center top 30px;
    color: #fff;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
}

.adt-hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 0;
    padding-top: 55px;
}

.adt-hero-copy {
    position: relative;
    z-index: 5;
    width: 50rem;
    padding: 50px 50px 20px 100px;
}

.adt-hero h1 {
    margin: 0 0 28px 0;
    font-size: clamp(42px, 4.2vw, 60px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -1.5px;
}

    .adt-hero h1 span {
        margin: 0;
        font-size: inherit;
        line-height: inherit;
    }

    .adt-hero h1 strong {
        font-weight: 800;
    }

    .adt-hero h1 .blue {
        color: var(--adt-cyan);
        font-weight: 800;
    }

.adt-arrow {
    color: #ff1d25;
    font-size: 42px !important;
    font-weight: 800;
    margin-right: 8px !important;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-3px);
}

.adt-hero p {
    max-width: 500px;
    margin: 0 0 30px 0;
    font-size: 17px;
    line-height: 1.4;
    color: #fff;
}

    .adt-hero p strong {
        font-weight: 700;
    }

.adt-hero .adt-btn-red {
    min-width: 285px;
    height: 46px;
    padding: 0 28px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.adt-hero-art {
    position: relative;
    height: 600px;
    width: 100%;
    display: block;
}

.adt-hero-circle {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: var(--adt-cyan);
    right: -70px;
    top: 40px;
    z-index: 1;
}

/* =========================================================
   MÓDULOS
========================================================= */
.adt-modules {
    background-image: url("/assets/img/fondo-1.png");
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-position: center top 150px;
    overflow: visible;
}

.adt-module-title {
    display: flex;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
    line-height: 1;
}

    .adt-module-title .adt-2-arrow {
        color: #FF0000;
        font-size: 45px !important;
        font-weight: 800;
        line-height: 1;
        margin-right: 10px !important;
        margin-top: 3px;
        transform: none !important;
    }

.adt-module-title-text {
    display: flex;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
}

    .adt-module-title-text > span {
        color: #001D5F;
        font-size: 50px;
        line-height: .95;
        font-weight: 400;
    }

    .adt-module-title-text > strong {
        color: #001D5F;
        font-size: 52px;
        line-height: .95;
        font-weight: 800;
        margin-left: 65px;
    }

.adt-modules-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 45px;
    align-items: center;
    width: 100%;
}

.adt-module-map {
    position: relative;
    min-width: 0;
    min-height: 500px;
}

.adt-module-gif {
    position: absolute;
    width: 900px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 5;
    pointer-events: none;
    box-shadow: 7px 7px 15px grey;
}

.adt-module-carousel {
    --adt-card-width: 350px;
    --adt-card-height: 190px;
    --adt-card-gap: 10px;
    position: relative;
    width: 300px;
    height: 670px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    right: 25px;
}

.adt-module-viewport {
    position: relative;
    width: var(--adt-card-width);
    height: calc((var(--adt-card-height) * 3) + (var(--adt-card-gap) * 2));
    overflow: hidden;
    flex-shrink: 0;
}

.adt-module-track {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--adt-card-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--adt-card-gap);
    transform: translate3d(0, 0, 0);
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    margin: 0;
    padding: 0;
}

.adt-module-card {
    position: relative;
    flex: 0 0 var(--adt-card-height);
    width: var(--adt-card-width);
    height: var(--adt-card-height);
    min-width: var(--adt-card-width);
    min-height: var(--adt-card-height);
    max-width: var(--adt-card-width);
    max-height: var(--adt-card-height);
    box-sizing: border-box;
    padding: 20px 15px 10px !important;
    background: #12AAFF;
    color: #fff;
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 120, 200, .14);
    overflow: hidden;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    margin: 0 !important;
    transition: box-shadow .25s ease;
}

.adt-module-icon {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    min-width: 32px;
    min-height: 32px;
    margin: 0 0 6px;
    border: none;
    border-radius: 50%;
    background: #004A98;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 60, 130, .20);
}

.modulo-svg {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.adt-module-card > div:last-child {
    position: relative;
    z-index: 2;
    width: 100%;
}

.adt-module-card h3 {
    margin: 0 0 3px;
    color: #001D5F;
    font-size: 20px;
    line-height: 1.05;
    font-weight: 800;
}

.adt-module-card p {
    margin: 0 auto;
    max-width: 230px;
    color: #fff;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 200;
    padding: 5px 0 0;
}

.adt-module-arrow {
    position: absolute;
    left: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: #07569D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 5px 12px rgba(0, 50, 120, .25);
    transform: translateX(-50%);
    transition: background .2s ease, transform .2s ease;
}

    .adt-module-arrow:hover {
        background: #12AAFF;
        transform: translateX(-50%) scale(1.08);
    }

    .adt-module-arrow:active {
        transform: translateX(-50%) scale(.96);
    }

    .adt-module-arrow:focus {
        outline: none;
    }

.adt-module-arrow-up {
    top: -10px;
}

.adt-module-arrow-down {
    bottom: -10px;
}

.adt-module-arrow-icon {
    display: block;
    font-size: 14px;
    line-height: 1;
    color: #fff;
}

.adt-module-arrow-up .adt-module-arrow-icon {
    transform: rotate(-90deg);
}

.adt-module-arrow-down .adt-module-arrow-icon {
    transform: rotate(90deg);
}

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

/* =========================================================
   MEDIA QUERIES - LAPTOP / DESKTOP
   ========================================================= */

@media (min-width: 701px) and (max-width:1200px) {
    .adt-tutorial-layout {
        display: block;
        width: 100%;
        max-width: calc(100% - 32px);
        margin: 0 auto;
    }

    .adt-tutorial-left {
        width: 100%;
    }

    .adt-tutorial-title {
        margin-bottom: 18px;
    }

    .adt-tutorial-feature {
        display: none;
        overflow: hidden;
        width: 100%;
        margin: 0;
    }

    .adt-tutorial-main-image {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 16 / 9;
    }

        .adt-tutorial-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .adt-tutorial-feature-info {
        width: 100%;
        margin-top: 12px;
    }

        .adt-tutorial-feature-info h3 {
            font-size: 17px;
            line-height: 1.15;
            margin-top: 7px;
        }

    .adt-tutorial-list {
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        margin: 25px auto 0;
        padding: 0;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

        .adt-tutorial-list::-webkit-scrollbar {
            display: none;
        }

    .adt-tutorial-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 50% !important;
        width: 50% !important;
        min-width: 50% !important;
        box-sizing: border-box;
        margin: 0 !important;
        padding: 10px 15px !important;
        /* Anula el grid anterior */
        grid-template-columns: none !important;
        column-gap: 0 !important;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .adt-tutorial-thumb {
        width: 250px;
        max-width: 100%;
        height: 130px;
        margin: 0 auto;
        flex-shrink: 0;
        overflow: hidden;
    }

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

    .adt-tutorial-item-info {
        width: 100%;
        max-width: 280px;
        min-width: 0;
        margin-top: 8px;
    }

    .adt-tutorial-item-title {
        font-size: 15px;
        padding: 5px 10px;
    }

    .adt-tutorial-item-info p {
        font-size: 16px;
        line-height: 1.25;
        margin-top: 6px;
    }

    .adt-tutorial-play-sm {
        width: 50px;
        height: 50px;
    }

    .adt-tutorial-mobile-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        margin-top: 13px;
    }

    .adt-tutorial-mobile-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #c8d5e8;
        cursor: pointer;
        transition: width .25s ease, background-color .25s ease, transform .25s ease;
    }

        .adt-tutorial-mobile-dot.active {
            width: 20px;
            border-radius: 10px;
            background: #004A98;
        }

    .adt-tutorial-mobile-arrow {
        position: absolute;
        top: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 50%;
        background: #ffffff;
        color: #004A98;
        box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
        font-size: 15px;
        cursor: pointer;
        transform: translateY(-50%);
        z-index: 20;
    }

        .adt-tutorial-mobile-arrow.prev {
            font-size: 28px;
            left: -8px;
        }

        .adt-tutorial-mobile-arrow.next {
            right: -8px;
            font-size: 28px;
        }
}

@media (min-width: 769px) and (max-width: 1150px) {
    .adt-facts {
        padding-bottom: 145px;
    }

    .adt-facts-container {
        width: calc(100% - 50px);
        max-width: 1000px;
        min-height: 315px;
        padding: 38px 35px 30px;
        border-radius: 30px;
    }

    .adt-facts-slider {
        width: calc(100% - 100px);
        max-width: 850px;
        bottom: -92px;
    }

    .adt-facts-track {
        gap: 10px;
    }

    .adt-fact-card {
        width: var(--adt-fact-card-width);
        min-width: var(--adt-fact-card-width);
    }

    .adt-facts-arrow {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

        .adt-facts-arrow.prev {
            left: -48px;
        }

        .adt-facts-arrow.next {
            right: -48px;
        }

    .adt-facts-title-text > span {
        font-size: 32px;
    }

    .adt-facts-title-text > strong {
        font-size: 13px;
    }
}

@media (min-width: 821px) and (max-width: 1100px) {
    /* =====================================================
       CONTENEDOR GENERAL
    ===================================================== */

    .adt-container {
        width: calc(100% - 40px) !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }


    /* =====================================================
       1. TESTIMONIOS
       El problema era:
       width: 750px;
       left: -60px;
    ===================================================== */

    .adt-testimonials {
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .adt-testimonial-title {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
        box-sizing: border-box;
    }

    .adt-testimonial-slider {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        right: auto !important;
        margin: 0 auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .adt-testimonial-viewport {
        width: calc(100% - 80px) !important;
        max-width: 680px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden;
        box-sizing: border-box;
    }

    .adt-testimonial-track {
        width: max-content;
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
    }

    .adt-testimonial-card {
        flex: 0 0 320px !important;
        width: 320px !important;
        max-width: 320px !important;
        box-sizing: border-box;
    }

    /* Flecha izquierda */

    .adt-testimonial-arrow-btn.prev {
        left: 8px !important;
    }

    /* Flecha derecha */

    .adt-testimonial-arrow-btn.next {
        right: 8px !important;
    }


    /* =====================================================
       2. CARRUSEL DE MÓDULOS
    ===================================================== */

    .adt-modules {
        width: 100%;
        overflow: hidden;
    }

    .adt-modules-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        box-sizing: border-box;
    }

    .adt-module-carousel {
        position: relative !important;
        right: auto !important;
        left: auto !important;
        width: min(100%, 730px) !important;
        max-width: 750px !important;
        height: 190px;
        min-height: 190px;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        overflow: visible;
    }

    .adt-module-viewport {
        width: calc(100% - 90px) !important;
        max-width: 650px !important;
        height: 170px;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        box-sizing: border-box;
    }

    .adt-module-track {
        width: max-content;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px;
    }

    .adt-module-card {
        flex: 0 0 205px !important;
        width: 205px !important;
        min-width: 205px !important;
        max-width: 205px !important;
        height: 170px !important;
        box-sizing: border-box;
    }

    /* Flecha izquierda */

    .adt-module-arrow-up {
        left: -8px !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%) rotate(90deg);
    }

    /* Flecha derecha */

    .adt-module-arrow-down {
        right: -8px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) rotate(270deg);
    }


    /* =====================================================
       GIF / IMAGEN DE MÓDULOS
    ===================================================== */

    .adt-module-map {
        width: 100%;
        min-height: 280px;
        height: 280px;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .adt-module-gif {
        position: absolute;
        width: min(600px, 90vw);
        max-width: 600px;
        height: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        object-fit: contain;
    }


    /* =====================================================
       3. PREGUNTAS FRECUENTES
       
    ===================================================== */

    .adt-faq {
        width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }

        .adt-faq > .adt-container {
            width: calc(100% - 40px) !important;
            max-width: 794px !important;
            margin-left: auto !important;
            margin-right: auto !important;
            box-sizing: border-box;
        }

    .adt-faq-grid {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* Ocultamos la imagen en tablet */

    .adt-faq-image {
        display: none !important;
    }

    .adt-faq-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .adt-faq-title {
        width: 100% !important;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .adt-faq-title-arrow {
        width: 30px !important;
        height: 30px !important;
        flex: 0 0 30px !important;
        margin-right: 8px !important;
    }

    .adt-faq-title h2 {
        font-size: 27px !important;
        white-space: nowrap;
    }


    /* =====================================================
       ACORDEÓN
       
       IMPORTANTE:
       Eliminamos el padding lateral de 50px.
    ===================================================== */

    .adt-accordion {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .adt-faq-item {
        width: 100% !important;
        box-sizing: border-box;
    }

    .adt-faq-question {
        width: 100% !important;
        min-height: 50px;
        padding: 5px 0 !important;
        gap: 20px;
        font-size: 15px !important;
        line-height: 1.3;
    }

        .adt-faq-question > span {
            flex: 1 1 auto;
            font-size: 19px;
            min-width: 0;
        }

    .adt-faq-icon {
        width: 35px !important;
        height: 35px !important;
        flex: 0 0 28px !important;
    }

    .adt-answer {
        font-size: 17px;
        width: 100%;
        box-sizing: border-box;
        padding-right: 35px;
    }


    .adt-modules-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        width: 100% !important;
    }

    /* =========================
   CARRUSEL ARRIBA
========================= */

    .adt-module-carousel {
        order: 1 !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 750px !important;
        max-width: calc(100% - 80px) !important;
        height: 190px !important;
        min-height: 190px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
    }

    .adt-module-viewport {
        width: 650px !important;
        max-width: 650px !important;
        height: 170px !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .adt-module-track {
        width: max-content !important;
        height: 170px !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    .adt-module-card {
        flex: 0 0 205px !important;
        width: 205px !important;
        min-width: 205px !important;
        max-width: 205px !important;
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
        box-sizing: border-box !important;
    }

    /* =========================
   FLECHAS HORIZONTALES
========================= */

    .adt-module-arrow {
        position: absolute !important;
        top: 50% !important;
        bottom: auto !important;
        width: 40px !important;
        height: 40px !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }

    .adt-module-arrow-up {
        left: -15px !important;
        right: auto !important;
    }

    .adt-module-arrow-down {
        right: -15px !important;
        left: auto !important;
    }

    .adt-module-arrow-up .adt-module-arrow-icon {
        transform: rotate(180deg) !important;
    }

    .adt-module-arrow-down .adt-module-arrow-icon {
        transform: none !important;
    }

    /* =========================
   GIF ABAJO
========================= */

    .adt-module-map {
        order: 2 !important;
        width: 100% !important;
        height: 330px !important;
        min-height: 330px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }

    .adt-module-gif {
        position: absolute !important;
        width: min(600px, 90vw) !important;
        max-width: 600px !important;
        height: auto !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    /* =====================================================
       CORRECCIÓN DEFINITIVA — CARRUSEL DE MÓDULOS
       El carrusel queda arriba del GIF y sus tarjetas visibles.
    ===================================================== */

    .adt-module-carousel {
        order: 1 !important;
        position: relative !important;
        z-index: 20 !important;
        isolation: isolate;
    }

    .adt-module-viewport {
        position: relative !important;
        z-index: 21 !important;
        overflow: hidden !important;
    }

    .adt-module-track {
        position: absolute !important;
        z-index: 22 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .adt-module-card,
    .adt-module-card * {
        visibility: visible !important;
    }

    .adt-module-card {
        position: relative !important;
        z-index: 23 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .adt-module-map {
        order: 2 !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .adt-module-gif {
        position: absolute !important;
        z-index: 2 !important;
        pointer-events: none !important;
    }
}

@media (min-width: 561px) and (max-width: 1100px) {
    /* =====================================================
       HERO
    ===================================================== */

    .adt-hero {
        position: relative;
        width: 100%;
        height: 600px !important;
        min-height: 600px !important;
        overflow: hidden;
        border-radius: 0 0 55px 55px;
        background-size: 100% auto;
        background-position: center top;
    }


    /* =====================================================
       CONTENEDOR
    ===================================================== */

    .adt-hero-grid {
        position: relative;
        width: calc(100% - 60px) !important;
        max-width: 100% !important;
        height: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 45% 55% !important;
        align-items: center;
        gap: 0;
        padding-top: 20px !important;
        box-sizing: border-box;
    }


    /* =====================================================
       TEXTO
    ===================================================== */

    .adt-hero-copy {
        position: relative;
        z-index: 20;
        width: 100% !important;
        max-width: 410px !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
        text-align: left;
    }


    /* =====================================================
       TÍTULO
    ===================================================== */

    .adt-hero h1 {
        width: 100%;
        max-width: 390px;
        margin: 0 0 22px 0 !important;
        font-size: clamp(34px, 4.4vw, 43px) !important;
        line-height: 1.04;
        letter-spacing: -1.2px;
    }


        /* Flecha */

        .adt-hero h1 .adt-arrow {
            font-size: 30px !important;
            margin-right: 5px !important;
            transform: translateY(-2px);
        }


            .adt-hero h1 .adt-arrow img {
                width: 20px;
                height: 20px;
                object-fit: contain;
            }


    /* =====================================================
       DESCRIPCIÓN
    ===================================================== */

    .adt-hero p {
        width: 100%;
        max-width: 350px;
        margin: 0 0 25px 0 !important;
        font-size: 13px !important;
        line-height: 1.4;
        text-align: left;
    }


    /* =====================================================
       BOTÓN DEMO
    ===================================================== */

    .adt-hero .adt-btn-red {
        min-width: 190px !important;
        width: fit-content !important;
        height: 42px !important;
        padding: 0 22px !important;
        font-size: 12px !important;
        border-radius: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }


    /* =====================================================
       ÁREA VISUAL
    ===================================================== */

    .adt-hero-art {
        position: relative;
        width: 100%;
        height: 500px;
        min-height: 0;
        display: block;
        overflow: visible;
    }


    /* =====================================================
       CÍRCULO
    ===================================================== */

    .adt-hero-circle {
        position: absolute;
        width: clamp(320px, 42vw, 410px);
        height: clamp(320px, 42vw, 410px);
        right: -55px;
        top: 65px;
        z-index: 1;
        border-radius: 50%;
    }


    /* =====================================================
       VIDEO
    ===================================================== */

    .adt-hero-video {
        position: absolute !important;
        width: clamp(390px, 46vw, 470px) !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        top: 155px !important;
        right: 5px !important;
        left: auto !important;
        margin: 0 !important;
        border-radius: 16px !important;
        overflow: hidden;
        background: #000;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .28);
        z-index: 5;
    }


    /* =====================================================
       VIDEO HTML
    ===================================================== */

    .adt-hero-video-element {
        display: block;
        width: 100% !important;
        height: 100% !important;
        margin: 0;
        object-fit: cover;
        border-radius: 16px !important;
        pointer-events: none;
    }


    /* =====================================================
       BOTÓN SONIDO
       Lo dejamos abajo/derecha del video
    ===================================================== */

    .adt-sound-button {
        position: absolute !important;
        left: auto !important;
        right: 10px !important;
        bottom: 10px !important;
        width: 68px !important;
        min-width: 68px !important;
        height: 29px !important;
        z-index: 999 !important;
    }
}

@media (max-width: 1100px) {
    .adt-nav-menu {
        gap: 0;
    }

        .adt-nav-menu > a:not(.adt-login-btn) {
            padding-left: 9px;
            padding-right: 9px;
            font-size: 11px;
        }

    .adt-brand {
        width: 175px;
    }

        .adt-brand img {
            width: 155px;
        }
}

@media (max-width: 1050px) {
    .adt-nav-menu {
        gap: 13px;
    }

        .adt-nav-menu a {
            font-size: 9px;
        }

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

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

    .adt-client-slider {
        width: 900px;
        max-width: calc(100% - 30px);
    }

    .adt-client-viewport {
        width: 800px;
        flex-basis: 800px;
        height: 400px
    }

    .adt-client-slider .adt-client-card {
        flex-basis: 165px !important;
        width: 150px !important;
        min-width: 150px !important;
        max-width: 190px !important;
        height: 260px !important;
    }

    .adt-client-track {
        height: 220px;
        gap: 10px;
        top: 80px;
    }
}

/* =========================================================
   MEDIA QUERIES - TABLETS
   ========================================================= */

@media (min-width: 768px) and (max-width: 1000px) {
    .adt-faq > .adt-container {
        max-width: calc(100% - 50px);
    }

    .adt-faq-grid {
        grid-template-columns: 205px minmax(0, 1fr);
        column-gap: 30px;
    }

    .adt-faq-image {
        display: none;
    }

        .adt-faq-image img {
            width: 245px;
            max-height: 235px;
        }

    .adt-faq-title h2 {
        font-size: 20px;
    }

    .adt-accordion {
        padding: 0 50px 0 50px;
    }
}

@media (min-width: 701px) and (max-width: 1000px) {
    .adt-module-carousel {
        position: relative;
        right: 60px;
        width: 750px;
        max-width: 1000px;
        height: 190px;
        min-height: 190px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .adt-module-viewport {
        position: relative;
        width: calc(100% - 90px);
        max-width: 900px;
        height: 170px;
        margin: 0 auto;
        overflow: hidden;
        flex: 0 0 auto;
        box-sizing: border-box;
    }

    .adt-module-track {
        position: absolute;
        top: 0;
        left: 0;
        width: max-content;
        height: 170px;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start;
        gap: 10px;
        margin: 0;
        padding: 0;
        will-change: transform;
        transition: transform .55s cubic-bezier(.22, .61, .36, 1);
    }

    .adt-module-card {
        position: relative;
        flex: 0 0 auto !important;
        width: 211px !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
        flex-shrink: 0;
        box-sizing: border-box;
        padding: 15px 12px 8px !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .adt-module-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        margin: 0 auto 6px;
    }

    .modulo-svg {
        width: 36px;
        height: 36px;
    }

    .adt-module-card h3 {
        font-size: 13px;
        line-height: 1.05;
        margin: 0 0 4px;
    }

    .adt-module-card p {
        width: 100%;
        max-width: 100%;
        font-size: 10px;
        line-height: 1.2;
        padding-top: 2px;
    }

    .adt-module-arrow {
        position: absolute;
        top: 50%;
        width: 38px;
        height: 38px;
        margin: 0;
        padding: 0;
        z-index: 300;
        box-sizing: border-box;
    }

    .adt-module-arrow-up {
        left: -10px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
    }

    .adt-module-arrow-down {
        right: -10px;
        top: 50%;
        transform: translateY(-50%) rotate(270deg);
    }

    .adt-module-arrow-up .adt-module-arrow-icon {
        transform: rotate(90deg);
    }

    .adt-module-arrow-down .adt-module-arrow-icon {
        transform: rotate(90deg);
    }

    .adt-module-arrow-up:hover {
        transform: translateY(-50%) rotate(90deg) scale(1.08);
    }

    .adt-module-arrow-down:hover {
        transform: translateY(-50%) rotate(270deg) scale(1.08);
    }

    .adt-module-map {
        order: 2;
        width: 100%;
        min-height: 280px;
        height: 280px;
        margin-top: 20px;
    }

    .adt-module-gif {
        width: min(600px, 95vw);
        max-width: 95vw;
    }

    .adt-faq-image {
        display: none;
    }

    .adt-testimonials {
        padding: 50px 0 65px;
    }

    .adt-testimonial-title {
        margin-bottom: 30px;
    }

        .adt-testimonial-title > .adt-testimonial-arrow {
            font-size: 38px;
        }

    .adt-testimonial-title-text > span {
        font-size: 29px;
    }

    .adt-testimonial-title-text > strong {
        font-size: 34px;
        margin-left: 75px;
    }

    .adt-testimonial-slider {
        width: 750px;
        left: -60px;
        position: relative;
    }

    .adt-testimonial-viewport {
        width: calc(100% - 80px);
        max-width: 920px;
        padding: 12px 0 25px;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }

    .adt-testimonial-track {
        gap: 16px;
    }

    .adt-testimonial-card {
        flex: 0 0 320px !important;
        width: 360px !important;
        height: 235px;
    }

    .adt-testimonial-text {
        height: 165px;
        padding: 25px 24px 15px;
    }

        .adt-testimonial-text p {
            max-width: 95%;
            font-size: 10px;
            line-height: 1.35;
        }

    .adt-testimonial-footer {
        height: 70px;
        padding-left: 80px;
        padding-right: 20px;
    }

    .adt-testimonial-logo {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .adt-testimonial-person {
        margin-left: 18px;
    }

        .adt-testimonial-person strong {
            font-size: 11px;
        }

        .adt-testimonial-person span {
            font-size: 8px;
        }

        .adt-testimonial-person small {
            font-size: 7px;
        }

    .adt-testimonial-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

        .adt-testimonial-arrow-btn.prev {
            left: 5px;
        }

        .adt-testimonial-arrow-btn.next {
            right: 5px;
        }
}

@media (max-width: 1000px) {
    .adt-header {
        width: 100%;
        z-index: 99999;
    }

    .adt-nav {
        position: relative;
        width: 100%;
        height: 80px;
        min-height: 60px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        box-sizing: border-box;
    }

    .adt-brand {
        order: 1;
        display: flex;
        align-items: center;
        width: auto !important;
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
    }

        .adt-brand img {
            display: block;
            width: 105px;
            max-width: 105px;
            height: auto;
            margin: 0;
        }

    .adt-nav-menu {
        order: 2;
        position: static !important;
        width: auto !important;
        height: 60px;
        flex: 0 0 auto;
        margin-left: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

        .adt-nav-menu > a:not(.adt-login-btn) {
            display: none !important;
        }

    .adt-login-wrapper {
        position: relative;
        width: auto !important;
        height: 60px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 0 0 auto;
    }

    .adt-nav-menu .adt-login-btn {
        position: relative !important;
        display: inline-flex !important;
        width: 58px !important;
        min-width: 58px !important;
        max-width: 58px !important;
        height: 19px !important;
        min-height: 19px !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        background: #12AAFF;
        color: #fff !important;
        border: 0;
        border-radius: 4px;
        font-family: 'Mont', sans-serif;
        font-size: 12px !important;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        box-sizing: border-box;
        transform: none !important;
    }

        /* Elimina cualquier desplazamiento antiguo */
        .adt-nav-menu .adt-login-btn,
        .adt-nav-menu .adt-login-btn:hover,
        .adt-nav-menu .adt-login-btn.active {
            top: auto !important;
            bottom: auto !important;
            left: auto !important;
            right: auto !important;
        }

    /* -----------------------------------------------------
       HAMBURGUESA
    ----------------------------------------------------- */
    .adt-menu-toggle {
        order: 3;
        position: relative;
        display: flex !important;
        width: 34px !important;
        height: 34px !important;
        min-width: 34px;
        min-height: 34px;
        flex: 0 0 34px;
        margin: 0 0 0 8px !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        border: 0;
        outline: none;
        background: transparent;
        cursor: pointer;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

        /* -----------------------------------------------------
       LÍNEAS DE LA HAMBURGUESA
       
       Las posicionamos absolutamente para que la transición
       a X sea limpia y simétrica.
    ----------------------------------------------------- */
        .adt-menu-toggle span {
            position: absolute;
            left: 50%;
            display: block;
            width: 17px;
            height: 2px;
            margin: 0;
            background: #ffffff;
            border-radius: 2px;
            transform-origin: center center;
            transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .18s ease, width .28s ease;
            will-change: transform;
        }

            .adt-menu-toggle span:nth-child(1) {
                top: 10px;
                transform: translateX(-50%);
            }

            .adt-menu-toggle span:nth-child(2) {
                top: 16px;
                transform: translateX(-50%);
            }

            .adt-menu-toggle span:nth-child(3) {
                top: 22px;
                transform: translateX(-50%);
            }

        /* -----------------------------------------------------
       HAMBURGUESA → X
    ----------------------------------------------------- */
        .adt-menu-toggle[aria-expanded="true"] span:nth-child(1) {
            top: 16px;
            transform: translateX(-50%) rotate(45deg);
        }

        .adt-menu-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
            transform: translateX(-50%) scaleX(0);
        }

        .adt-menu-toggle[aria-expanded="true"] span:nth-child(3) {
            top: 16px;
            transform: translateX(-50%) rotate(-45deg);
        }

    .adt-nav-menu.open {
        position: absolute !important;
        top: 60px !important;
        left: 14px !important;
        right: 14px !important;
        width: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 12px 10px 16px !important;
        background: #002d78 !important;
        border-radius: 0 0 14px 14px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .25) !important;
        gap: 2px !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scaleY(1);
        transform-origin: top center;
        pointer-events: auto;
        z-index: 100000;
        transition: opacity .25s ease, transform .30s cubic-bezier(.22, .61, .36, 1), visibility .30s ease;
    }

        /* -----------------------------------------------------
       LINKS DEL MENÚ ABIERTO
    ----------------------------------------------------- */
        .adt-nav-menu.open > a:not(.adt-login-btn) {
            display: flex !important;
            width: 100%;
            height: 38px;
            padding: 0 12px;
            align-items: center;
            justify-content: flex-start;
            color: #ffffff !important;
            font-family: 'Mont', sans-serif;
            font-size: 10px !important;
            font-weight: 600;
            line-height: 1;
            text-decoration: none;
            box-sizing: border-box;
            border-radius: 7px;
            opacity: 1;
            transform: translateX(0);
            transition: background-color .18s ease, color .18s ease, transform .25s ease;
        }

            .adt-nav-menu.open > a:not(.adt-login-btn):hover {
                color: #12AAFF !important;
                background: rgba(255, 255, 255, .05);
                transform: translateX(3px);
            }

        /* -----------------------------------------------------
       LOGIN NO APARECE DENTRO DEL PANEL DEL MENÚ
       
       Sigue estando arriba, junto al hamburguesa.
    ----------------------------------------------------- */
        .adt-nav-menu.open .adt-login-wrapper {
            display: none !important;
        }

    /* -----------------------------------------------------
       DROPDOWN DEL LOGIN
    ----------------------------------------------------- */
    .adt-login-menu {
        position: fixed !important;
        top: 68px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: calc(100vh - 82px);
        margin: 0 !important;
        padding: 24px 18px 20px !important;
        overflow-y: auto;
        box-sizing: border-box;
        z-index: 100001;
    }

        .adt-login-menu::before {
            top: -7px !important;
            right: 64px !important;
            width: 14px;
            height: 14px;
            display: block !important;
        }

    .adt-plans-wrapper {
        width: 850px;
    }

    .adt-plan-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 900px) {
    .adt-footer {
        height: 180px;
        padding: 0;
    }

    .adt-footer-container {
        max-width: calc(100% - 60px);
    }

    .adt-footer-logo {
        width: 130px;
    }

    .adt-footer-adex {
        min-width: 170px;
    }

    .adt-footer-description {
        margin-top: 10px;
        font-size: 10px;
    }

    .adt-module-carousel {
        right: 0 !important;
    }

    .adt-modules-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        width: 100%;
    }

    /*
       En tablet seguimos mostrando el GIF
       encima del carrusel.
    */
    .adt-module-map {
        min-height: 300px;
        width: 100%;
        order: 1;
    }

    .adt-module-carousel {
        order: 2;
        margin: 0 auto;
    }

    .adt-module-gif {
        width: min(600px, 90vw);
        left: 50%;
        top: 50%;
    }

    .adt-module-carousel {
        --adt-card-gap: 10px;
        position: relative;
        order: 1;
        width: calc(100vw - 40px);
        max-width: 660px;
        height: auto;
        min-height: 170px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .adt-module-viewport {
        position: relative;
        width: 100%;
        height: 150px;
        overflow: hidden;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .adt-module-track {
        position: absolute;
        top: 0;
        left: 0;
        width: max-content;
        height: 150px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: var(--adt-card-gap);
        transform: translate3d(0, 0, 0);
        transition: transform .55s cubic-bezier(.22, .61, .36, 1);
        will-change: transform;
        margin: 0;
        padding: 0;
    }

    .adt-module-card {
        flex: 0 0 calc((100vw - 50px) / 2);
        width: calc((100vw - 50px) / 2);
        min-width: calc((100vw - 50px) / 2);
        max-width: calc((100vw - 50px) / 2);
        height: 150px;
        min-height: 150px;
        max-height: 150px;
        padding: 15px 10px 8px !important;
        box-sizing: border-box;
        border-radius: 9px;
    }

    .adt-module-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        margin-bottom: 5px;
    }

    .modulo-svg {
        width: 32px;
        height: 32px;
    }

    .adt-module-card h3 {
        font-size: 13px;
        line-height: 1.05;
        margin-bottom: 3px;
    }

    .adt-module-card p {
        max-width: 100%;
        font-size: 10px;
        line-height: 1.15;
        padding-top: 3px;
    }
    /* -----------------------------------------------------
   FLECHAS DEL CARRUSEL
   HORIZONTAL: IZQUIERDA ← CARRUSEL → DERECHA
----------------------------------------------------- */

    .adt-module-arrow {
        position: absolute !important;
        top: 50% !important;
        bottom: auto !important;
        width: 34px !important;
        height: 34px !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 100 !important;
        transform: translateY(-50%) !important;
    }


    /* =====================================================
   FLECHA IZQUIERDA
===================================================== */

    .adt-module-arrow-up {
        left: -40px !important;
        right: auto !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) rotate(180deg) !important;
    }


    /* =====================================================
   FLECHA DERECHA
===================================================== */

    .adt-module-arrow-down {
        right: -35px !important;
        left: auto !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
    }


        /* =====================================================
   IMPORTANTE
   El icono NO debe rotarse.
   El botón completo ya determina la dirección.
===================================================== */

        .adt-module-arrow-up .adt-module-arrow-icon,
        .adt-module-arrow-down .adt-module-arrow-icon {
            transform: none !important;
        }


    /* =====================================================
   HOVER
===================================================== */

    .adt-module-arrow:hover {
        transform: translateY(-50%) scale(1.08) !important;
    }

    .adt-module-arrow-up:hover {
        transform: translateY(-50%) rotate(180deg) scale(1.08) !important;
    }

    .adt-module-arrow-down:hover {
        transform: translateY(-50%) scale(1.08) !important;
    }

    .adt-module-map {
        order: 2;
        width: 100%;
        min-height: 280px;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: 10px;
    }

    .adt-module-gif {
        position: absolute;
        width: min(520px, 95vw);
        max-width: 95vw;
        height: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        object-fit: contain;
        z-index: 5;
        pointer-events: none;
        box-shadow: none;
    }
}

@media (max-width: 850px) {
    .adt-header {
        width: 100%;
        z-index: 99999;
    }

    .adt-nav {
        position: relative;
        width: 100%;
        height: 80px;
        min-height: 60px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        box-sizing: border-box;
    }

    .adt-brand {
        order: 1;
        display: flex;
        align-items: center;
        width: auto !important;
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
    }

        .adt-brand img {
            display: block;
            width: 150px;
            max-width: 150px;
            height: auto;
            margin: 0;
        }

    .adt-nav-menu {
        order: 2;
        position: static !important;
        width: auto !important;
        height: 60px;
        flex: 0 0 auto;
        margin-left: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

        .adt-nav-menu > a:not(.adt-login-btn) {
            display: none !important;
        }

    .adt-login-wrapper {
        position: relative;
        width: auto !important;
        height: 60px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 0 0 auto;
    }

    .adt-nav-menu .adt-login-btn {
        position: relative !important;
        display: inline-flex !important;
        width: 70px !important;
        min-width: 58px !important;
        max-width: 100px !important;
        height: 24px !important;
        min-height: 27px !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        background: #12AAFF;
        color: #fff !important;
        border: 0;
        border-radius: 4px;
        font-family: 'Mont', sans-serif;
        font-size: 12px !important;
        font-weight: 700;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        box-sizing: border-box;
        transform: none !important;
    }

        .adt-nav-menu .adt-login-btn,
        .adt-nav-menu .adt-login-btn:hover,
        .adt-nav-menu .adt-login-btn.active {
            top: auto !important;
            bottom: auto !important;
            left: auto !important;
            right: auto !important;
        }

    .adt-menu-toggle {
        order: 3;
        position: relative;
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 34px;
        min-height: 34px;
        flex: 0 0 34px;
        margin: 0 0 0 8px !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        border: 0;
        outline: none;
        background: transparent;
        cursor: pointer;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

        .adt-menu-toggle span {
            position: absolute;
            left: 50%;
            display: block;
            width: 20px;
            height: 3px;
            margin: 0;
            background: #ffffff;
            border-radius: 2px;
            transform-origin: center center;
            transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .18s ease, width .28s ease;
            will-change: transform;
        }

            .adt-menu-toggle span:nth-child(1) {
                top: 10px;
                transform: translateX(-50%);
            }

            .adt-menu-toggle span:nth-child(2) {
                top: 16px;
                transform: translateX(-50%);
            }

            .adt-menu-toggle span:nth-child(3) {
                top: 22px;
                transform: translateX(-50%);
            }

        /* -----------------------------------------------------
       HAMBURGUESA → X
    ----------------------------------------------------- */
        .adt-menu-toggle[aria-expanded="true"] span:nth-child(1) {
            top: 16px;
            transform: translateX(-50%) rotate(45deg);
        }

        .adt-menu-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
            transform: translateX(-50%) scaleX(0);
        }

        .adt-menu-toggle[aria-expanded="true"] span:nth-child(3) {
            top: 16px;
            transform: translateX(-50%) rotate(-45deg);
        }

    .adt-nav-menu.open {
        position: absolute !important;
        top: 60px !important;
        left: 14px !important;
        right: 14px !important;
        width: auto !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 12px 10px 16px !important;
        background: #002d78 !important;
        border-radius: 0 0 14px 14px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .25) !important;
        gap: 2px !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scaleY(1);
        transform-origin: top center;
        pointer-events: auto;
        z-index: 100000;
        transition: opacity .25s ease, transform .30s cubic-bezier(.22, .61, .36, 1), visibility .30s ease;
    }

        /* -----------------------------------------------------
       LINKS DEL MENÚ ABIERTO
    ----------------------------------------------------- */
        .adt-nav-menu.open > a:not(.adt-login-btn) {
            display: flex !important;
            width: 100%;
            height: 38px;
            padding: 0 12px;
            align-items: center;
            justify-content: flex-start;
            color: #ffffff !important;
            font-family: 'Mont', sans-serif;
            font-size: 10px !important;
            font-weight: 600;
            line-height: 1;
            text-decoration: none;
            box-sizing: border-box;
            border-radius: 7px;
            opacity: 1;
            transform: translateX(0);
            transition: background-color .18s ease, color .18s ease, transform .25s ease;
        }

            .adt-nav-menu.open > a:not(.adt-login-btn):hover {
                color: #12AAFF !important;
                background: rgba(255, 255, 255, .05);
                transform: translateX(3px);
            }

        .adt-nav-menu.open .adt-login-wrapper {
            display: none !important;
        }

    .adt-login-menu {
        position: fixed !important;
        top: 68px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: calc(100vh - 82px);
        margin: 0 !important;
        padding: 24px 18px 20px !important;
        overflow-y: auto;
        box-sizing: border-box;
        z-index: 100001;
    }

        .adt-login-menu::before {
            top: -7px !important;
            right: 64px !important;
            width: 14px;
            height: 14px;
            display: block !important;
        }

    .adt-nav-menu:not(.open) {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .adt-nav {
        min-height: 70px;
    }

    .adt-menu-toggle {
        display: block;
    }

    .adt-nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 15px 20px 20px;
        background: #002d78;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
        gap: 2px;
    }

        .adt-nav-menu.active {
            display: flex;
        }

        .adt-nav-menu > a:not(.adt-login-btn) {
            width: 100%;
            justify-content: flex-start;
            height: 42px;
            padding: 0 10px;
            font-size: 12px;
        }

    .adt-login-wrapper {
        width: 100%;
        margin: 8px 0 0;
        display: block;
    }

    .adt-login-btn {
        width: 100%;
    }

    .adt-login-menu {
        position: absolute !important;
        top: calc(100% + 12px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        min-width: 0;
        max-width: 360px;
        margin: 0 auto !important;
    }

        .adt-login-menu::before {
            display: none;
        }

    .adt-client-slider {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .adt-client-viewport {
        width: calc(100% - 90px);
        flex-basis: calc(100% - 90px);
        height: 300px;
    }

    .adt-client-slider .adt-client-card {
        flex-basis: 140px !important;
        width: 140px !important;
        min-width: 140px !important;
        max-width: 140px !important;
        height: 210px !important;
    }

    .adt-client-track {
        top: 40px;
        height: 210px;
        gap: 10px;
    }

    .adt-client-slider .adt-slider-arrow.prev {
        left: -60px;
    }

    .adt-client-slider .adt-slider-arrow.next {
        right: -60px;
    }

    .adt-tutorial-layout {
        grid-template-columns: 1fr;
        row-gap: 30px;
        width: 100%;
        max-width: calc(100% - 50px);
    }

    .adt-tutorial-left {
        width: 100%;
    }

    .adt-tutorial-title {
        margin-bottom: 22px;
    }

    .adt-tutorial-feature {
        width: 100%;
    }

    .adt-tutorial-main-image {
        width: 100%;
        max-width: 390px;
        height: 220px;
    }

    .adt-tutorial-list {
        width: 100%;
        max-width: 500px;
    }
}

@media (min-width: 561px) and (max-width: 820px) {
    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .adt-hero {
        position: relative;
        height: 490px !important;
        min-height: 410px !important;
        overflow: visible !important;
        border-radius: 0 0 55px 55px;
        margin-bottom: 120px;
    }


    /* -----------------------------------------------------
       CONTENEDOR
       ----------------------------------------------------- */

    .adt-hero-grid {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 100%;
        display: block;
        padding: 0 !important;
        margin: 0;
    }


    /* -----------------------------------------------------
       TEXTO DEL HERO
       ----------------------------------------------------- */

    .adt-hero-copy {
        position: relative;
        z-index: 10;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 80px 40px 0 !important;
        margin: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    /* -----------------------------------------------------
       TÍTULO
       ----------------------------------------------------- */

    .adt-hero h1 {
        width: 100%;
        max-width: 560px;
        margin: 0 auto 18px !important;
        font-size: 43px !important;
        line-height: 1.08;
        letter-spacing: -1.2px;
        text-align: center;
    }


        .adt-hero h1 .adt-arrow {
            display: inline-block;
            margin-right: 7px !important;
            transform: translateY(-3px);
        }


            .adt-hero h1 .adt-arrow img {
                width: 28px;
                height: 28px;
                object-fit: contain;
            }


    /* -----------------------------------------------------
       DESCRIPCIÓN
       ----------------------------------------------------- */

    .adt-hero p {
        width: 100%;
        max-width: 470px;
        margin: 0 auto 18px !important;
        font-size: 15px !important;
        line-height: 1.4;
        text-align: center;
    }


    /* -----------------------------------------------------
       BOTÓN DEMO
       ----------------------------------------------------- */

    .adt-hero .adt-btn-red {
        min-width: 220px !important;
        height: 42px !important;
        padding: 0 25px !important;
        font-size: 13px !important;
        border-radius: 25px;
    }


    /* -----------------------------------------------------
       ÁREA VISUAL
       ----------------------------------------------------- */

    .adt-hero-art {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0;
        margin: 0;
        padding: 0;
        overflow: visible !important;
        z-index: 20;
    }


    /* -----------------------------------------------------
       CÍRCULO
       ----------------------------------------------------- */

    .adt-hero-circle {
        display: none !important;
    }


    /* -----------------------------------------------------
       VIDEO
       
       El video se sale del hero.
       En 768px de ancho queda centrado.
       ----------------------------------------------------- */

    .adt-hero-video {
        position: absolute !important;
        top: 230px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 430px !important;
        max-width: 430px !important;
        min-width: 430px !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin: 0 !important;
        overflow: hidden;
        border-radius: 0 !important;
        background: #F9E36B;
        box-shadow: none;
        z-index: 100;
    }


    /* -----------------------------------------------------
       VIDEO HTML
       ----------------------------------------------------- */

    .adt-hero-video-element {
        display: block;
        width: 100% !important;
        height: 100% !important;
        margin: 0;
        object-fit: cover;
        border-radius: 0 !important;
        pointer-events: none;
    }


    /* -----------------------------------------------------
       BOTÓN SONIDO
       ----------------------------------------------------- */

    .adt-sound-button {
        left: auto !important;
        right: 12px !important;
        bottom: 12px !important;
        width: 76px !important;
        min-width: 76px !important;
        height: 31px !important;
        z-index: 200 !important;
    }
}

@media (max-width: 820px) {
    .adt-container {
        width: min(100% - 28px, 620px);
    }

    .adt-menu-toggle {
        display: block;
    }

    .adt-nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 14px;
        right: 14px;
        background: var(--adt-blue-deep);
        border-radius: 16px;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    }

        .adt-nav-menu.open {
            display: flex;
        }

    .adt-login-btn {
        text-align: center;
    }

    .adt-hero {
        min-height: 820px;
    }

    .adt-hero-grid,
    .adt-modules-grid,
    .adt-tutorial-layout,
    .adt-faq-grid,
    .adt-demo-grid,
    .adt-footer-grid {
        grid-template-columns: 1fr;
    }

    .adt-hero-grid {
        padding-top: 110px;
    }

    .adt-hero-copy {
        text-align: center;
        margin: auto;
    }

    .adt-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .adt-hero-art {
        min-height: 340px;
    }

        .adt-hero-art img {
            height: 250px;
        }

    .adt-modules-grid {
        gap: 20px;
    }

    .adt-client-logos {
        flex-wrap: wrap;
    }

    .adt-plans-grid {
        grid-template-columns: 1fr;
        box-shadow: none;
        overflow: visible;
    }

    .adt-plan-card {
        border: 0;
        border-radius: 20px;
        margin-bottom: 14px;
        box-shadow: var(--adt-shadow);
    }

    .adt-plan-featured {
        transform: none;
    }

    .adt-testimonial-card.active {
        grid-template-columns: 1fr;
    }

    .adt-testimonial-photo {
        height: 230px;
    }

    .adt-testimonial-copy {
        padding: 30px 24px;
    }

    .adt-faq-image {
        max-width: 500px;
        margin: auto;
    }

        .adt-faq-image img {
            height: 330px;
        }

    .adt-demo-grid {
        gap: 45px;
    }

    .adt-demo-copy {
        order: -1;
    }

    .adt-footer-right {
        align-items: flex-start;
    }

    .adt-hero {
        height: auto;
        min-height: 700px;
        overflow: hidden;
        border-radius: 0 0 55px 55px;
    }

    .adt-hero-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    /* 
       El width: 100rem de desktop estaba
       sacando todo el contenido de la pantalla.
    */
    .adt-hero-copy {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 35px 20px 0;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .adt-hero h1 {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 22px;
        font-size: clamp(31px, 9vw, 42px);
        line-height: 1.08;
        letter-spacing: -1px;
    }

        .adt-hero h1 .adt-arrow {
            display: inline-block;
            margin-right: 5px !important;
            transform: translateY(-2px);
        }

            .adt-hero h1 .adt-arrow img {
                width: 27px;
                height: 27px;
                object-fit: contain;
            }

    .adt-hero p {
        width: 100%;
        max-width: 330px;
        margin: 0 auto 25px;
        font-size: 14px;
        line-height: 1.45;
        text-align: center;
    }

    .adt-hero .adt-btn-red {
        min-width: 220px;
        width: auto;
        height: 42px;
        padding: 0 22px;
        font-size: 13px;
        border-radius: 25px;
    }

    .adt-hero-art {
        position: relative;
        width: 100%;
        height: 300px;
        min-height: 300px;
        margin-top: 20px;
        overflow: visible;
    }

    .adt-hero-circle {
        /*width: 280px;
        height: 280px;
        top: 5px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-radius: 50%;*/
        display: none;
    }
}

@media (min-width: 521px) and (max-width: 768px) {
    .adt-facts {
        padding: 35px 0 130px;
    }

    .adt-facts-container {
        width: calc(100% - 40px);
        max-width: 700px;
        min-height: 300px;
        padding: 30px 25px 25px;
        border-radius: 27px;
    }

    .adt-facts-slider {
        width: calc(100% - 70px);
        bottom: -78px;
    }

    .adt-facts-track {
        gap: 8px;
    }

    .adt-facts-arrow {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

        .adt-facts-arrow.prev {
            left: -42px;
        }

        .adt-facts-arrow.next {
            right: -42px;
        }

    .adt-facts-title-text > span {
        font-size: 28px;
    }

    .adt-facts-title-text > strong {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .adt-plans {
        padding-top: 0 !important;
        padding-bottom: 20px;
        background: #fff;
    }

    .adt-plans-title {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 72%;
        margin: 60px auto 20px;
        font-size: 26px !important;
        line-height: 1.1;
        font-weight: 700;
        color: #12aaff;
    }

        .adt-plans-title .adt-faq-title-arrow {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            object-fit: contain;
        }

    .adt-plans-tabs {
        width: 72%;
        max-width: 280px;
        height: 36px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        background: #dff3fc;
        border-radius: 25px;
        overflow: hidden;
        padding: 0;
    }

    .adt-plan-tab {
        flex: 1;
        width: 33.333%;
        height: 36px;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        background: transparent;
        color: #ffffff;
        font-family: inherit;
        font-size: 10px;
        font-weight: 600;
        line-height: 36px;
        text-align: center;
        border-radius: 25px;
        cursor: pointer;
        transition: background-color .25s ease, color .25s ease;
    }

        .adt-plan-tab.active {
            background: #12aaff;
            color: #fff;
        }

        .adt-plan-tab:active {
            transform: none !important;
        }

        .adt-plan-tab:focus {
            outline: none !important;
            box-shadow: none !important;
        }

    .adt-plans-wrapper {
        width: 72%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        box-shadow: none !important;
        background: transparent;
        overflow: visible;
    }

        .adt-plans-wrapper .adt-plan-card {
            display: none;
            width: 100%;
            min-height: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
            box-sizing: border-box;
            background: #fff !important;
            border: 1px solid #1d1d1d !important;
            border-radius: 10px !important;
            box-shadow: none !important;
            overflow: hidden;
            color: #082d70;
            opacity: 1;
        }

            .adt-plans-wrapper .adt-plan-card.active {
                display: block;
                width: 100%;
                opacity: 1 !important;
                transform: none !important;
                animation: adtPlanFadeMobile .25s ease;
            }

            .adt-plans-wrapper .adt-plan-card.adt-plan-featured {
                background: #fff !important;
                border: 1px solid #1d1d1d !important;
                border-radius: 10px !important;
                box-shadow: none !important;
                margin: 0 !important;
                transform: none !important;
            }

    .adt-plan-content {
        padding: 42px 18px 26px !important;
        text-align: center;
        box-sizing: border-box;
    }

    .adt-plan-recommended {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 0;
        padding: 0;
        color: #082d70;
        font-size: 8px;
        line-height: 1;
        font-weight: 500;
    }

        .adt-plan-recommended span {
            font-size: 8px;
            color: #082d70;
            font-weight: 500;
        }

    .adt-recommended-star {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .adt-recommended-star .modulo-svg {
            width: 20px !important;
            height: 20px !important;
            object-fit: contain;
        }

    .adt-plan-name {
        margin: 0 0 10px;
        font-size: 15px !important;
        line-height: 1.1;
        font-weight: 400;
        color: #082d70;
    }

    .adt-plan-price {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 145px;
        height: 40px;
        padding: 0 14px;
        box-sizing: border-box;
        border: 1px solid #12aaff;
        border-radius: 9px;
        font-size: 25px !important;
        line-height: 1;
        font-weight: 700;
        color: #082d70;
        margin: 0 auto 4px;
    }

    .adt-plan-tax {
        margin: 0 0 12px;
        font-size: 12px;
        line-height: 1.1;
        font-style: italic;
        color: #082d70;
    }

    .adt-plan-users {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        margin: 0 0 15px;
        color: #082d70;
    }

        .adt-plan-users strong {
            font-size: 25px;
            line-height: 1;
            font-weight: 500;
        }

        .adt-plan-users span {
            font-size: 12px;
            line-height: 1;
            font-weight: 400;
        }

    .adt-plan-duration {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 0 22px;
        color: #082d70;
    }

        .adt-plan-duration strong {
            font-size: 16px;
            line-height: 1;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .adt-plan-duration span {
            font-size: 11px;
            line-height: 1.2;
            font-weight: 400;
            text-align: center;
        }

    .adt-plan-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 0 20px;
        color: #082d70;
    }

    .adt-check {
        width: 50px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }

        .adt-check .modulo-svg {
            width: 45px !important;
            height: 45px !important;
            object-fit: contain;
        }

    .adt-plan-feature > span {
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
        color: #082d70;
    }

    .adt-plan-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 174px;
        height: 42px;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
        border-radius: 24px;
        background: #002f87 !important;
        color: #fff !important;
        text-decoration: none !important;
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        box-shadow: none !important;
    }

        .adt-plan-button span {
            margin-left: 10px;
            font-size: 24px;
            line-height: 1;
            font-weight: 400;
        }

        .adt-plan-button:hover,
        .adt-plan-button:focus,
        .adt-plan-button:active {
            background: #002f87 !important;
            color: #fff !important;
            transform: none !important;
            box-shadow: none !important;
        }

    .adt-plans-footer {
        width: 72%;
        margin: 15px auto 0;
        padding: 0;
        text-align: center;
    }

        .adt-plans-footer p {
            margin: 0;
            font-size: 10px !important;
            line-height: 1.25;
            color: #082d70;
        }

        .adt-plans-footer a {
            color: #12aaff;
            font-weight: 700;
            text-decoration: underline;
        }

    /* =====================================================
       ANIMACIÓN
    ===================================================== */
    @keyframes adtPlanFadeMobile {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .adt-testimonials {
        padding: 45px 0 55px;
    }

    .adt-testimonial-title {
        margin-bottom: 25px;
    }

        .adt-testimonial-title > .adt-testimonial-arrow {
            font-size: 32px;
        }

    .adt-testimonial-title-text > span {
        font-size: 25px;
    }

    .adt-testimonial-title-text > strong {
        font-size: 30px;
        margin-left: 55px;
    }

    .adt-testimonial-viewport {
        max-width: calc(100% - 80px);
    }

    .adt-testimonial-card {
        flex-basis: 340px;
        width: 340px;
        height: 230px;
    }

    .adt-testimonial-text {
        height: 160px;
        padding: 25px 22px 15px;
    }

        .adt-testimonial-text p {
            font-size: 10px;
        }

    .adt-testimonial-footer {
        height: 70px;
        padding-left: 80px;
    }

    .adt-testimonial-logo {
        width: 56px;
        height: 56px;
        left: 20px;
    }

    .adt-testimonial-arrow-btn {
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
}

@media (max-width: 700px) {
    .adt-faq {
        padding: 35px 0 45px;
    }

        .adt-faq > .adt-container {
            max-width: calc(100% - 40px);
        }

    .adt-faq-grid {
        grid-template-columns: 165px minmax(0, 1fr);
        column-gap: 20px;
    }

    .adt-faq-image {
        width: 165px;
        height: 210px;
        margin-left: -10px;
    }

        .adt-faq-image img {
            width: 200px;
            max-height: 210px;
        }

    .adt-faq-title {
        margin-bottom: 12px;
    }

    .adt-faq-title-arrow {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        margin-right: 5px;
    }

    .adt-faq-title h2 {
        font-size: 18px;
    }

    .adt-faq-question {
        min-height: 39px;
        font-size: 9px;
    }

    .adt-faq-icon {
        width: 13px;
        height: 13px;
        flex-basis: 13px;
    }

    .adt-footer {
        width: 100%;
        height: 268px;
        min-height: 268px;
        padding: 20px 0 14px;
        box-sizing: border-box;
        background: #001d5f;
        overflow: hidden;
    }

    .adt-footer-container {
        width: 100%;
        max-width: none;
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
    }

    .adt-footer-left {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
    }

    .adt-footer-logo {
        display: block;
        width: 145px;
        height: auto;
        margin: 0 auto 7px;
        object-fit: contain;
    }

    .adt-footer-membership {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
    }

    .adt-footer-membership-title {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 12px;
        line-height: 1.1;
        font-weight: 400;
        white-space: nowrap;
    }

    .adt-footer-arrow {
        display: block;
        width: 20px;
        height: 20px;
        min-width: 20px;
        flex: 0 0 20px;
        margin: 0 4px 0 0;
        object-fit: contain;
    }

    .adt-footer-contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 166px;
        min-width: 166px;
        height: 24px;
        margin: 7px 0 0;
        padding: 0 10px;
        box-sizing: border-box;
        background: #12aaff;
        color: #fff !important;
        border-radius: 15px;
        font-size: 9px;
        line-height: 1;
        font-weight: 700;
        text-decoration: none !important;
        transition: background .2s ease;
    }

        .adt-footer-contact:hover {
            background: #12aaff;
            transform: none;
        }

    /* =====================================================
       BLOQUE DERECHO
    ===================================================== */
    .adt-footer-right {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .adt-footer-adex {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin: 20px 0 0;
        padding: 0;
    }

    .adt-footer-description {
        margin: 0;
        color: #fff;
        font-size: 9px;
        line-height: 1.25;
        font-weight: 400;
        text-align: center;
    }

    .adt-footer-adex-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 4px 0 0;
        padding: 0;
    }

        .adt-footer-adex-logo img {
            display: block;
            width: 110px;
            height: auto;
            max-width: 105px;
            object-fit: contain;
        }

    .adt-footer-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin: 8px 0 0;
        padding: 0;
    }

        .adt-footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 12px;
            height: 12px;
            margin: 0;
            padding: 0;
            text-decoration: none;
            flex: 0 0 12px;
        }

            .adt-footer-social a img {
                display: block;
                width: 35px;
                height: 35px;
                object-fit: contain;
            }

    .adt-floating {
        width: 60px;
        height: 60px;
        right: 12px;
        bottom: 12px;
    }

    .adt-top {
        right: 12px;
        bottom: 82px;
    }

    .adt-video-modal {
        padding: 20px;
    }

    .adt-video-modal-content {
        width: 95vw;
        padding: 8px;
        border-radius: 12px;
    }

    .adt-video-close {
        width: 34px;
        height: 34px;
        top: -12px;
        right: -12px;
        font-size: 22px;
    }

    .adt-tutorial-layout {
        display: block;
        width: 100%;
        max-width: calc(100% - 32px);
        margin: 0 auto;
    }

    .adt-tutorial-left {
        width: 100%;
    }

    .adt-tutorial-title {
        margin-bottom: 18px;
    }

    .adt-tutorial-feature {
        display: none;
        overflow: hidden;
        width: 100%;
        margin: 0;
    }

    .adt-tutorial-main-image {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 16 / 9;
    }

        .adt-tutorial-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .adt-tutorial-feature-info {
        width: 100%;
        margin-top: 12px;
    }

        .adt-tutorial-feature-info h3 {
            font-size: 17px;
            line-height: 1.15;
            margin-top: 7px;
        }

    .adt-tutorial-list {
        position: relative;
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        gap: 0;
        margin-top: 25px auto 0;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x;
    }

        .adt-tutorial-list::-webkit-scrollbar {
            display: none;
        }

    .adt-tutorial-item {
        position: relative;
        display: grid;
        grid-template-columns: 150px 170px;
        column-gap: 16px;
        align-items: center;
        justify-content: center;
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        min-height: 90px;
        margin: 0;
        padding: 4px 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        box-sizing: border-box;
    }

    .adt-tutorial-thumb {
        width: 150px;
        height: 85px;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 0;
    }

        .adt-tutorial-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .adt-tutorial-item-info {
        min-width: 0;
        margin-left: 90px;
    }

    .adt-tutorial-item-title {
        font-size: 12px;
        padding: 5px 10px;
    }

    .adt-tutorial-item-info p {
        line-height: 1.25;
        margin-top: 7px;
    }

    .adt-tutorial-play-sm {
        width: 38px;
        height: 38px;
    }

    .adt-tutorial-mobile-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        margin-top: 13px;
    }

    .adt-tutorial-mobile-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #c8d5e8;
        cursor: pointer;
        transition: width .25s ease, background-color .25s ease, transform .25s ease;
    }

        .adt-tutorial-mobile-dot.active {
            width: 20px;
            border-radius: 10px;
            background: #004A98;
        }

    .adt-tutorial-mobile-arrow {
        position: absolute;
        top: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 50%;
        background: #ffffff;
        color: #004A98;
        box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
        font-size: 15px;
        cursor: pointer;
        transform: translateY(-50%);
        z-index: 20;
    }

        .adt-tutorial-mobile-arrow.prev {
            left: -8px;
            font-size: 28px;
        }

        .adt-tutorial-mobile-arrow.next {
            right: -8px;
            font-size: 28px;
        }

    .adt-modules-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        width: 100%;
    }

    .adt-module-title {
        max-width: 100%;
        justify-content: center;
    }

        .adt-module-title .adt-2-arrow {
            font-size: 34px !important;
            margin-right: 6px !important;
        }

    .adt-module-title-text > span {
        font-size: 29px;
    }

    .adt-module-title-text > strong {
        font-size: 31px;
        margin-left: 38px;
    }

    .adt-module-carousel {
        position: relative;
        order: 1;
        width: 330px;
        max-width: calc(100vw - 60px);
        height: 150px;
        min-height: 150px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .adt-module-viewport {
        position: relative;
        width: 310px;
        max-width: 310px;
        height: 150px;
        overflow: hidden;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .adt-module-track {
        position: absolute;
        top: 0;
        left: 0;
        width: max-content;
        height: 150px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 10px;
        transform: translate3d(0, 0, 0);
        transition: transform .55s cubic-bezier(.22, .61, .36, 1);
        will-change: transform;
        margin: 0;
        padding: 0;
    }

    .adt-module-card {
        flex: 0 0 150px;
        width: 150px;
        min-width: 150px;
        max-width: 150px;
        height: 150px;
        min-height: 150px;
        max-height: 150px;
        padding: 15px 10px 8px !important;
        box-sizing: border-box;
        border-radius: 9px;
    }

    .adt-module-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        margin-bottom: 5px;
    }

    .modulo-svg {
        width: 32px;
        height: 32px;
    }

    .adt-module-card h3 {
        font-size: 13px;
        line-height: 1.05;
        margin-bottom: 3px;
    }

    .adt-module-card p {
        max-width: 100%;
        font-size: 9px;
        line-height: 1.15;
        padding-top: 3px;
    }

    .adt-module-arrow {
        position: absolute;
        top: 50%;
        left: auto;
        bottom: auto;
        width: 34px;
        height: 34px;
        transform: translateY(-50%);
        z-index: 100;
    }

    .adt-module-arrow-up {
        left: -7px;
        top: 50%;
        transform: translateY(-50%) rotate(180deg);
    }

    .adt-module-arrow-down {
        right: -7px;
        top: 50%;
        transform: translateY(-50%);
    }

    .adt-module-arrow-up .adt-module-arrow-icon {
        transform: rotate(90deg);
    }

    .adt-module-arrow-down .adt-module-arrow-icon {
        transform: rotate(90deg);
    }

    .adt-module-arrow:hover {
        transform: translateY(-50%) scale(1.08);
    }

    .adt-module-arrow-up:hover {
        transform: translateY(-50%) rotate(180deg) scale(1.08);
    }

    .adt-module-map {
        order: 2;
        width: 100%;
        min-height: 280px;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-top: 10px;
    }

    .adt-module-gif {
        position: absolute;
        width: min(520px, 95vw);
        max-width: 95vw;
        height: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        object-fit: contain;
        z-index: 5;
        pointer-events: none;
        box-shadow: none;
    }
}

/* =========================================================
   MEDIA QUERIES - MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .adt-login-menu {
        position: fixed;
        top: 75px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: none;
        max-height: calc(100vh - 95px);
        overflow-y: auto;
    }

        .adt-login-menu::before {
            right: 25px;
        }

    .adt-clients {
        padding-bottom: 1px;
        overflow: visible;
        position: relative;
    }

    /*.adt-client-title {
        margin-bottom: 5px;
    }*/
    .adt-client-title-text > span {
        font-size: 24px;
        line-height: 1;
    }

    .adt-client-title-text > strong {
        font-size: 26px;
        line-height: 1;
        margin-left: 28px;
    }

    .adt-client-title .adt-title-arrow {
        font-size: 27px !important;
    }

    .adt-client-slider {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 320px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .adt-client-viewport {
        width: calc(100% - 48px);
        flex: 0 0 calc(100% - 48px);
        height: 285px;
        position: relative;
        overflow: hidden;
    }

    .adt-client-track {
        position: absolute;
        top: 35px;
        left: 0;
        height: 210px;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 14px !important;
        width: max-content !important;
        margin: 0;
        padding: 0;
        transition: transform .55s cubic-bezier(.22, .61, .36, 1);
        will-change: transform;
    }

    .adt-client-slider .adt-client-card {
        flex: 0 0 100px !important;
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
        height: 190px !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 18px;
        opacity: .72;
        transform: scale(.88);
        transform-origin: center center;
        transition: transform .45s cubic-bezier(.22, .61, .36, 1), opacity .45s ease, box-shadow .45s ease;
        z-index: 1;
    }

        .adt-client-slider .adt-client-card.active {
            transform: scale(1.22);
            opacity: 1;
            z-index: 20;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .30);
        }

    .adt-client-slider .adt-client-card-content {
        padding: 0 7px 10px;
    }

        .adt-client-slider .adt-client-card-content > span {
            font-size: 9px;
            line-height: 1.05;
        }

        .adt-client-slider .adt-client-card-content a {
            font-size: 8px;
        }

    .adt-client-slider .adt-slider-arrow {
        width: 30px !important;
        height: 30px !important;
        z-index: 50;
        top: 50%;
        transform: translateY(-50%);
    }

        .adt-client-slider .adt-slider-arrow:hover {
            transform: translateY(-50%);
        }

        .adt-client-slider .adt-slider-arrow:active {
            transform: translateY(-50%);
        }

        .adt-client-slider .adt-slider-arrow.prev {
            left: 3px;
        }

        .adt-client-slider .adt-slider-arrow.next {
            right: 3px;
        }

    /* =========================================================
   CARD INFORMACIÓN + LOGOS
   MOBILE
   TODO DENTRO DEL MISMO CARD
========================================================= */
    .adt-client-logos {
        position: relative;
        z-index: 100;
        width: calc(100% - 32px);
        height: auto;
        min-height: 0;
        margin: 40px auto -35px;
        padding: 14px 18px 10px;
        box-sizing: border-box;
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .18);
        /* IMPORTANTE */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .adt-client-info {
        width: 100%;
        height: auto;
        padding: 0;
        padding-top: 4px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

        .adt-client-info p {
            width: 100%;
            margin: 0;
            color: #153b78;
            font-size: 10px;
            line-height: 1.28;
            font-weight: 500;
            text-align: left;
        }

    .logos-group {
        width: 100%;
        height: auto;
        margin-top: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex-wrap: wrap;
    }

    .logos-row-1,
    .logos-row-2,
    .logos-row-3 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .logos-group img {
        width: 47px;
        height: 22px;
        object-fit: contain;
        display: block;
    }

    .adt-tutorials {
        padding: 45px 0 60px;
    }

    .adt-tutorial-layout {
        max-width: calc(100% - 30px);
    }

    .adt-tutorial-title-arrow {
        font-size: 32px;
    }

    .adt-tutorial-title-text > span {
        font-size: 28px;
    }

    .adt-tutorial-title-text > strong {
        font-size: 14px;
    }

    .adt-tutorial-main-image {
        height: 210px;
    }

    .adt-tutorial-item {
        grid-template-columns: 110px 1fr;
        column-gap: 10px;
    }

    .adt-tutorial-thumb {
        width: 150px;
        height: 80px;
        left: 40px;
    }

    .adt-tutorial-item-info p {
        font-size: 11px;
    }
}

@media (max-width: 560px) {
    .adt-nav {
        min-height: 72px;
    }

    .adt-brand img {
        width: 145px;
    }

    .adt-hero h1 {
        font-size: 42px;
    }

    .adt-hero-art {
        min-height: 280px;
    }

    .adt-hero-circle {
        width: 270px;
    }


    .adt-section {
        padding: 68px 0;
    }

    .adt-section-title {
        margin-bottom: 10px;
    }

    .adt-client-logos img {
        max-width: 65px;
        max-height: 30px;
    }


    .adt-client-slider {
        width: 100% !important;
        max-width: 100% !important;
    }

    .adt-client-viewport {
        width: 320px !important;
        flex: 0 0 305px !important;
        max-width: 320px !important;
        overflow: hidden !important;
    }

    .adt-client-track {
        gap: 10px !important;
    }

    .adt-client-slider .adt-client-card {
        flex: 0 0 100px !important;
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
        height: 190px !important;
        transform: scale(.88);
    }

        .adt-client-slider .adt-client-card.active {
            transform: scale(1.18);
        }

    /* =====================================================
       TESTIMONIOS - MOBILE 560px
       Corrección del corte del footer
    ===================================================== */

    .adt-testimonials {
        position: relative;
        width: 100%;
        min-height: 327px;
        padding: 36px 0 32px;
        box-sizing: border-box;
        overflow: hidden;
        background-color: #12AAFF;
        background-image: url("/assets/img/fondo-3.png");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
    }

    .adt-testimonial-title {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: fit-content;
        margin: 0 auto 20px;
        line-height: 1;
    }

        .adt-testimonial-title > .adt-testimonial-arrow,
        .adt-testimonial-title > .adt-faq-title-arrow {
            flex: 0 0 auto;
            width: 18px !important;
            height: 18px !important;
            margin: 3px 5px 0 0 !important;
            object-fit: contain;
            font-size: 0 !important;
        }

    .adt-testimonial-title-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1;
    }

        .adt-testimonial-title-text > span {
            color: #fff;
            font-size: 20px !important;
            line-height: 1;
            font-weight: 400;
            white-space: nowrap;
        }

        .adt-testimonial-title-text > strong {
            color: #fff;
            font-size: 24px !important;
            line-height: .95;
            font-weight: 800;
            margin-left: 0 !important;
            align-self: center;
            white-space: nowrap;
        }

    .adt-testimonial-slider {
        position: relative;
        width: 100%;
        height: 205px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .adt-testimonial-viewport {
        position: relative;
        width: 235px !important;
        max-width: 235px !important;
        height: 205px !important;
        margin: 0 auto;
        padding: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box;
    }

    .adt-testimonial-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 12px;
        width: max-content !important;
        height: 205px;
        align-items: center;
        transition: transform .55s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    .adt-testimonial-card {
        flex: 0 0 235px !important;
        width: 235px !important;
        max-width: 235px !important;
        height: 201px !important;
        min-height: 201px !important;
        box-sizing: border-box;
        overflow: hidden !important;
        border-radius: 20px 20px 0 0;
    }

    /*
       IMPORTANTE:
       El estilo base tiene margin: 30px en .adt-testimonial-text.
       Ese margen hacía que texto + footer superaran la altura
       de la tarjeta y el footer quedara fuera/cortado.
    */
    .adt-testimonial-text {
        width: 100%;
        height: 143px !important;
        margin: 0 !important;
        padding: 25px 18px 10px !important;
        box-sizing: border-box;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

        .adt-testimonial-text p {
            width: 100%;
            max-width: 100%;
            margin: 0 !important;
            color: #082d70;
            font-size: 10px !important;
            line-height: 1.25;
            font-weight: 400;
            text-align: center;
        }

    .adt-testimonial-footer {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        height: 58px !important;
        min-height: 58px !important;
        margin: 0 !important;
        padding: 0 8px 0 70px !important;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        background: #002f87;
        border-radius: 0 0 20px 20px;
        overflow: visible;
    }

    .adt-testimonial-logo {
        position: absolute !important;
        left: 20px !important;
        top: 50% !important;
        width: 52px !important;
        height: 52px !important;
        margin: 0 !important;
        padding: 4px;
        transform: translateY(-50%) !important;
        box-sizing: border-box;
        border-radius: 50%;
        background: #fff;
        border: 3px solid #12AAFF;
        overflow: hidden;
        z-index: 3;
    }

        .adt-testimonial-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

    .adt-testimonial-person {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        margin: 0 0 0 8px !important;
        padding: 0;
        text-align: left;
        color: #fff;
        line-height: 1.05;
    }

        .adt-testimonial-person strong {
            font-size: 9px !important;
            font-weight: 800;
            color: #fff;
            margin: 0 0 2px;
        }

        .adt-testimonial-person span {
            font-size: 7px !important;
            line-height: 1.1;
            color: #fff;
        }

        .adt-testimonial-person small {
            font-size: 8px !important;
            line-height: 1.1;
            color: #fff;
            font-weight: 700;
            margin-top: 2px;
        }

    .adt-testimonial-arrow-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 30 !important;
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: #0050a4;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px !important;
        line-height: 1;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    }

        .adt-testimonial-arrow-btn.prev {
            left: 18px !important;
        }

        .adt-testimonial-arrow-btn.next {
            right: 18px !important;
        }

        .adt-testimonial-arrow-btn:hover,
        .adt-testimonial-arrow-btn:focus,
        .adt-testimonial-arrow-btn:active {
            transform: translateY(-50%) !important;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
        }

    .adt-plan-tabs {
        overflow-x: auto;
        justify-content: flex-start;
    }

        .adt-plan-tabs button {
            white-space: nowrap;
            padding-inline: 16px;
        }

    .adt-facts-grid {
        grid-template-columns: 1fr;
    }

    .adt-login-card {
        padding: 30px 22px;
        border-radius: 25px;
    }

    .adt-laptop {
        min-height: 260px;
    }

    .adt-laptop-circle {
        width: 240px;
        height: 240px;
    }

    .adt-laptop img {
        height: 190px;
    }

    .adt-floating {
        width: 72px;
        height: 72px;
        right: 15px;
        bottom: 18px;
        font-size: 8px;
    }

    .adt-top {
        right: 15px;
        bottom: 105px;
    }


    /* =====================================================
       HERO MOBILE
    ===================================================== */

    .adt-hero {
        height: 400px !important;
        min-height: 330px !important;
        overflow: visible !important;
        border-radius: 0 0 45px 45px;
        margin-bottom: 40px;
    }


    /* =====================================================
       CONTENEDOR DEL HERO
    ===================================================== */

    .adt-hero-grid {
        position: relative;
        width: 100%;
        height: 100%;
        display: block;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0;
        gap: 0;
    }


    /* =====================================================
       CONTENEDOR DEL TEXTO
    ===================================================== */

    .adt-hero-copy {
        position: relative;
        z-index: 10;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 62px 20px 0 !important;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    /* =====================================================
       TÍTULO
       
       El texto queda centrado.
       La flecha queda FUERA del flujo del texto.
    ===================================================== */

    .adt-hero h1 {
        position: relative;
        width: 100%;
        max-width: 285px;
        margin-left: 65px;
        font-size: 28px !important;
        line-height: 1.03;
        letter-spacing: -0.7px;
        text-align: left;
    }


        /* =====================================================
       FLECHA ROJA
       
       No ocupa espacio dentro del texto.
       Queda visualmente a la izquierda.
    ===================================================== */

        .adt-hero h1 .adt-arrow {
            position: absolute !important;
            left: -24px !important;
            top: 4px !important;
            display: block;
            width: 22px;
            height: 22px;
            margin: 0 !important;
            padding: 0;
            transform: none !important;
            z-index: 20;
        }


            .adt-hero h1 .adt-arrow img {
                display: block;
                width: 22px;
                height: 22px;
                object-fit: contain;
            }


        /* =====================================================
       TEXTO AZUL
    ===================================================== */

        .adt-hero h1 .blue {
            display: inline;
            font-size: 33px;
            color: var(--adt-cyan);
            font-weight: 800;
        }


    /* =====================================================
       DESCRIPCIÓN
       
       El BLOQUE está centrado,
       pero el TEXTO está alineado a la izquierda.
       
       Esto es como la segunda imagen.
    ===================================================== */

    .adt-hero p {
        width: 100%;
        max-width: 245px;
        margin: 0 auto 19px !important;
        font-size: 11px !important;
        line-height: 1.28;
        text-align: left;
    }


        .adt-hero p strong {
            font-weight: 700;
        }


    /* =====================================================
       BOTÓN DEMO
       
       El botón queda centrado independientemente
       de la alineación del párrafo.
    ===================================================== */

    .adt-hero .adt-btn-red {
        min-width: 175px !important;
        width: auto !important;
        height: 36px !important;
        padding: 0 18px !important;
        margin-bottom: 15px;
        font-size: 11px !important;
        border-radius: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
    }


    /* =====================================================
       ÁREA VISUAL
    ===================================================== */

    .adt-hero-art {
        position: static !important;
        width: 100% !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        z-index: 20;
    }


    /* =====================================================
       CÍRCULO
    ===================================================== */

    .adt-hero-circle {
        display: none !important;
    }


    /* =====================================================
       VIDEO
       
       Centrado horizontalmente.
    ===================================================== */

    .adt-hero-video {
        position: absolute !important;
        bottom: -170px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 280px !important;
        max-width: 300px !important;
        min-width: 230px !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin: 0 !important;
        overflow: hidden;
        border-radius: 10px !important;
        background: #F9E36B;
        box-shadow: none;
        z-index: 100;
    }


    /* =====================================================
       VIDEO HTML
    ===================================================== */

    .adt-hero-video-element {
        display: block;
        width: 100% !important;
        height: 100% !important;
        margin: 0;
        object-fit: cover;
        border-radius: 10px !important;
        pointer-events: none;
    }


    /* =====================================================
       BOTÓN SONIDO
    ===================================================== */

    .adt-sound-button {
        left: auto !important;
        right: 8px !important;
        bottom: 8px !important;
        width: 60px !important;
        min-width: 50px !important;
        height: 25px !important;
        z-index: 200 !important;
    }
}



@media (max-width: 550px) {
    .adt-faq {
        padding: 30px 0 45px;
    }

        .adt-faq > .adt-container {
            width: 100%;
            max-width: calc(100% - 40px);
            margin: 0 auto;
        }

    /* -----------------------------------------------------
       OCULTAR IMAGEN EN MOBILE
    ----------------------------------------------------- */
    .adt-faq-image {
        display: none;
    }

    .adt-faq-grid {
        display: block;
        width: 100%;
    }

    .adt-faq-content {
        width: 100%;
    }

    .adt-faq-title {
        width: 100%;
        min-height: 35px;
        margin: 0 auto 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .adt-faq-title-arrow {
        width: 25px !important;
        height: 25px !important;
        min-width: 25px !important;
        min-height: 25px !important;
        flex: 0 0 25px !important;
        margin: 0 5px 0 0 !important;
    }

    .adt-faq-title h2 {
        font-size: 20px;
        line-height: 1;
        font-weight: 700;
        white-space: nowrap;
    }

    .adt-accordion {
        width: 310px;
        margin: 0 auto;
    }

    .adt-faq-question {
        width: 100%;
        min-height: 37px;
        padding: 0 2px;
        gap: 8px;
        font-size: 10.5px;
        line-height: 1.15;
    }

        .adt-faq-question > span {
            text-align: left;
            font-size: 14px !important;
        }

    .adt-faq-icon {
        width: 25px !important;
        height: 25px !important;
        min-width: 25px !important;
        min-height: 25px !important;
        flex: 0 0 20px !important;
        margin-right: 0;
    }

    .adt-faq-item {
        border-bottom: 1px solid #002d78;
    }

    .adt-answer {
        padding: 0 22px 0 2px;
        font-size: 12px;
        line-height: 1.4;
    }

    .adt-answer-list {
        gap: 4px;
    }

        .adt-answer-list li {
            font-size: 11px;
            line-height: 1.35;
            padding-left: 14px;
        }
}

@media (max-width: 520px) {
    .adt-facts {
        position: relative;
        width: 100%;
        padding: 12px 0 210px !important;
        overflow: visible !important;
    }

    .adt-facts-container {
        position: relative;
        width: calc(100% - 42px) !important;
        max-width: 350px !important;
        height: 105px !important;
        min-height: 105px !important;
        margin: 0 auto !important;
        padding: 17px 10px 0 !important;
        box-sizing: border-box;
        background-color: #001d5f;
        background-image: url("/assets/img/fondo-4.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 18px;
        overflow: visible !important;
        z-index: 1;
    }

    .adt-facts-title {
        position: relative;
        z-index: 20;
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin: 0 auto;
        line-height: 1;
    }

    .adt-facts-title-arrow,
    .adt-faq-title-arrow {
        display: block;
        width: 22px !important;
        height: 22px !important;
        flex: 0 0 22px !important;
        object-fit: contain;
        margin: 1px 4px 0 0;
    }

    .adt-facts-title-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .adt-facts-title-text > span {
            display: block;
            color: #fff;
            font-size: 23px !important;
            line-height: .95;
            font-weight: 800;
            white-space: nowrap;
        }

        .adt-facts-title-text > strong {
            display: block;
            margin-top: 5px;
            max-width: 240px;
            color: rgba(255, 255, 255, .9);
            font-size: 9.5px !important;
            line-height: 1.2;
            font-weight: 400;
            text-align: center;
        }

    .adt-facts-slider {
        position: absolute !important;
        top: 58px !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        width: 200px !important;
        max-width: 200px !important;
        margin-top: 10px;
        transform: translateX(-50%) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 30;
    }

    .adt-facts-viewport {
        position: relative;
        width: 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box;
    }

    .adt-facts-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start;
        gap: 0 !important;
        width: max-content !important;
        margin: 0 !important;
        padding: 0 !important;
        transform-style: flat;
        will-change: transform;
        transition: transform .55s cubic-bezier(.22, .61, .36, 1) !important;
    }

    .adt-facts-slider .adt-fact-card {
        position: relative;
        display: block !important;
        flex: 0 0 200px !important;
        width: 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
        overflow: hidden !important;
        background: transparent;
        border: none;
        border-radius: 0;
        flex-shrink: 0 !important;
        z-index: 5;
    }

        .adt-facts-slider .adt-fact-card img {
            display: block !important;
            width: 200px !important;
            min-width: 200px !important;
            max-width: 200px !important;
            height: auto !important;
            margin: 0 !important;
            padding: 0 !important;
            border-radius: 5px;
            object-fit: contain !important;
            object-position: center center;
            transform: none !important;
            transition: none !important;
        }

        .adt-facts-slider .adt-fact-card:hover img {
            transform: none !important;
        }

    .adt-facts-arrow {
        position: absolute;
        top: 50%;
        width: 34px !important;
        height: 34px !important;
        padding: 0 !important;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: #002d78;
        font-size: 25px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 50;
        cursor: pointer;
        transform: translateY(-50%);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .14);
    }

        .adt-facts-arrow.prev {
            left: -43px !important;
        }

        .adt-facts-arrow.next {
            right: -43px !important;
        }

        .adt-facts-arrow:hover,
        .adt-facts-arrow:focus,
        .adt-facts-arrow:active {
            transform: translateY(-50%);
        }
}

@media (max-width: 500px) {
    /* -----------------------------------------------------
       CONTENEDOR GENERAL
    ----------------------------------------------------- */

    .adt-modules {
        overflow: hidden;
    }

        .adt-modules .adt-container {
            width: 100%;
            max-width: 100%;
            padding: 0;
        }


    /* -----------------------------------------------------
       TÍTULO
    ----------------------------------------------------- */

    .adt-module-title {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 18px;
        padding: 0 15px;
        box-sizing: border-box;
    }

        .adt-module-title > .adt-faq-title-arrow {
            width: 18px !important;
            height: 18px !important;
            min-width: 18px !important;
            min-height: 18px !important;
            flex: 0 0 18px;
            margin: 3px 5px 0 0 !important;
        }

    .adt-module-title-text {
        margin: 0 !important;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1;
    }

        .adt-module-title-text > span {
            font-size: 21px !important;
            line-height: .95 !important;
            white-space: nowrap;
        }

        .adt-module-title-text > strong {
            font-size: 25px !important;
            line-height: .95 !important;
            margin-left: 28px !important;
            white-space: nowrap;
        }


    /* -----------------------------------------------------
       GRID
    ----------------------------------------------------- */

    .adt-modules-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0 !important;
        margin: 0;
        padding: 0;
    }


    /* -----------------------------------------------------
       CARRUSEL
    ----------------------------------------------------- */

    .adt-module-carousel {
        /* IMPORTANTE:
           dejamos las variables independientes de desktop */
        --adt-card-width: 105px;
        --adt-card-height: 112px;
        --adt-card-gap: 6px;
        position: relative;
        order: 1;
        width: 230px !important;
        max-width: 230px !important;
        height: 112px !important;
        min-height: 112px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
        right: auto !important;
        left: auto !important;
    }


    /* -----------------------------------------------------
       VIEWPORT
    ----------------------------------------------------- */

    .adt-module-viewport {
        position: relative;
        width: 300px !important;
        max-width: 400px !important;
        height: 112px !important;
        min-height: 112px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        overflow: hidden !important;
        flex: 0 0 350px !important;
        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       TRACK
    ----------------------------------------------------- */

    .adt-module-track {
        position: absolute;
        top: 0;
        left: 0;
        width: max-content !important;
        height: 112px !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
        gap: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translate3d(0, 0, 0);
        transition: transform .55s cubic-bezier(.22, .61, .36, 1);
        will-change: transform;
    }


    /* -----------------------------------------------------
       TARJETAS
    ----------------------------------------------------- */

    .adt-module-card {
        position: relative;
        flex: 0 0 170px !important;
        width: 200px !important;
        min-width: 105px !important;
        max-width: 300px !important;
        height: 112px !important;
        min-height: 112px !important;
        max-height: 112px !important;
        box-sizing: border-box;
        padding: 9px 6px 6px !important;
        margin: 0 !important;
        border-radius: 7px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center;
    }


    /* -----------------------------------------------------
       ICONO
    ----------------------------------------------------- */

    .adt-module-icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        min-height: 24px !important;
        margin: 0 auto 4px !important;
        flex: 0 0 24px;
    }

        .adt-module-icon .modulo-svg,
        .modulo-svg {
            width: 22px !important;
            height: 22px !important;
            max-width: 22px !important;
        }


    /* -----------------------------------------------------
       TÍTULO DE TARJETA
    ----------------------------------------------------- */

    .adt-module-card h3 {
        width: 100% !important;
        margin: 0 0 3px !important;
        font-size: 8.5px !important;
        line-height: 1.05 !important;
        font-weight: 800 !important;
        text-align: center !important;
    }


    /* -----------------------------------------------------
       TEXTO DE TARJETA
    ----------------------------------------------------- */

    .adt-module-card p {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        font-size: 6.8px !important;
        line-height: 1.12 !important;
        text-align: center !important;
        overflow: hidden;
    }




    /* -----------------------------------------------------
       GIF / MAPA
    ----------------------------------------------------- */

    .adt-module-map {
        order: 2;
        width: 100% !important;
        height: 220px !important;
        min-height: 220px !important;
        margin-top: 10px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .adt-module-gif {
        position: absolute;
        width: min(360px, 90vw) !important;
        max-width: 90vw !important;
        height: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        object-fit: contain;
        box-shadow: none !important;
    }

    .adt-module-title-text > span {
        font-size: 26px;
    }

    .adt-module-title-text > strong {
        font-size: 28px;
        margin-left: 32px;
    }

    .adt-module-carousel {
        width: 330px;
        max-width: calc(100vw - 60px);
        min-height: 150px;
        height: 150px;
    }

    .adt-module-viewport {
        width: 310px;
        max-width: 310px;
        height: 150px;
    }

    .adt-module-track {
        height: 150px;
        gap: 10px;
    }

    .adt-module-card {
        flex-basis: 150px;
        width: 150px;
        min-width: 150px;
        max-width: 150px;
        height: 150px;
        min-height: 150px;
        max-height: 150px;
        padding: 12px 8px 7px !important;
    }

    .adt-module-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .adt-module-arrow-up {
        left: -90px !important;
        top:40px !important;
    }

    .adt-module-arrow-down {
        right: -85px !important;
        top: 40px !important;
    }



    .adt-module-arrow-up .adt-module-arrow-icon {
        transform: rotate(90deg);
        
    }

    .adt-module-arrow-down .adt-module-arrow-icon {
        transform: rotate(90deg);
    }

    .modulo-svg {
        width: 29px;
        height: 29px;
    }

    .adt-module-card h3 {
        font-size: 11px;
    }

    .adt-module-card p {
        font-size: 10px;
        line-height: 1.15;
    }

    .adt-module-arrow {
        width: 32px;
        height: 32px;
    }


    /* GIF */
    .adt-module-map {
        min-height: 230px;
        height: 230px;
    }

    .adt-module-gif {
        width: 94vw;
        max-width: 94vw;
    }


    .adt-module-arrow-up,
    .adt-module-arrow-up:hover,
    .adt-module-arrow-up:focus,
    .adt-module-arrow-up:active {
        transform: rotate(90deg) !important;
    }

    .adt-module-arrow-down,
    .adt-module-arrow-down:hover,
    .adt-module-arrow-down:focus,
    .adt-module-arrow-down:active {
        transform: rotate(270deg) !important;
    }

    .adt-module-arrow-up .adt-module-arrow-icon,
    .adt-module-arrow-up:hover .adt-module-arrow-icon,
    .adt-module-arrow-up:focus .adt-module-arrow-icon,
    .adt-module-arrow-up:active .adt-module-arrow-icon {
        transform: rotate(90deg) !important;
    }

    .adt-module-arrow-down .adt-module-arrow-icon,
    .adt-module-arrow-down:hover .adt-module-arrow-icon,
    .adt-module-arrow-down:focus .adt-module-arrow-icon,
    .adt-module-arrow-down:active .adt-module-arrow-icon {
        transform: rotate(90deg) !important;
    }

    .adt-module-arrow {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        user-select: none;
    }

    .adt-testimonials {
        position: relative;
        background-color: #12AAFF;
        /* Mantener el mismo fondo utilizado en desktop */
        background-image: url("/assets/img/fondo-3.png");
        background-repeat: no-repeat;
        /*
         * En mobile queremos que el patrón sea visible
         * alrededor del contenido.
         */
        background-position: center top;
        background-size: cover;
        padding: 36px 0 32px;
        min-height: 327px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .adt-testimonial-title {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: fit-content;
        margin: 0 auto 20px;
        line-height: 1;
    }

        .adt-testimonial-title > .adt-testimonial-arrow,
        .adt-testimonial-title > .adt-faq-title-arrow {
            flex: 0 0 auto;
            width: 18px !important;
            height: 18px !important;
            margin: 3px 5px 0 0 !important;
            object-fit: contain;
            font-size: 0 !important;
        }

    .adt-testimonial-title-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1;
    }

        .adt-testimonial-title-text > span {
            color: #fff;
            font-size: 20px !important;
            line-height: 1;
            font-weight: 400;
            white-space: nowrap;
        }

        .adt-testimonial-title-text > strong {
            color: #fff;
            font-size: 24px !important;
            line-height: .95;
            font-weight: 800;
            margin-left: 0 !important;
            align-self: center;
            white-space: nowrap;
        }

    .adt-testimonial-slider {
        position: relative;
        width: 100%;
        height: 205px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .adt-testimonial-viewport {
        width: 235px !important;
        max-width: 235px !important;
        height: 205px;
        margin: 0 auto;
        padding: 0 !important;
        overflow: hidden;
        position: relative;
    }

    .adt-testimonial-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 12px;
        width: max-content;
        height: 205px;
        align-items: center;
        transition: transform .55s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    .adt-testimonial-card {
        flex: 0 0 235px !important;
        width: 235px !important;
        max-width: 235px !important;
        height: 201px !important;
    }

    .adt-testimonial-text {
        width: 100%;
        height: 143px !important;
        padding: 25px 18px 10px !important;
        box-sizing: border-box;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
    }

        .adt-testimonial-text p {
            width: 100%;
            margin: 0;
            color: #082d70;
            font-size: 10px !important;
            line-height: 1.25;
            font-weight: 400;
            text-align: center;
        }

    .adt-testimonial-footer {
        position: relative;
        width: 100%;
        height: 58px !important;
        padding: 0 8px 0 70px !important;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        background: #002f87;
        border-radius: 0 0 0 0;
    }

    .adt-testimonial-logo {
        position: absolute;
        left: 20px !important;
        top: 50%;
        transform: translateY(-50%);
        width: 52px !important;
        height: 52px !important;
        border-radius: 50%;
        background: #fff;
        border: 3px solid #12AAFF;
        overflow: hidden;
        z-index: 3;
    }

        .adt-testimonial-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

    .adt-testimonial-person {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 8px !important;
        text-align: left;
        color: #fff;
        line-height: 1.05;
    }

        .adt-testimonial-person strong {
            font-size: 9px !important;
            font-weight: 800;
            color: #fff;
            margin-bottom: 2px;
        }

        .adt-testimonial-person span {
            font-size: 7px !important;
            line-height: 1.1;
            color: #fff;
        }

        .adt-testimonial-person small {
            font-size: 8px !important;
            line-height: 1.1;
            color: #fff;
            font-weight: 700;
            margin-top: 2px;
        }

    .adt-testimonial-arrow-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 30;
        width: 30px !important;
        height: 30px !important;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #fff;
        color: #0050a4;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px !important;
        line-height: 1;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
        transition: transform .2s ease;
    }

        .adt-testimonial-arrow-btn.prev {
            left: 18px !important;
        }

        .adt-testimonial-arrow-btn.next {
            right: 18px !important;
        }

        .adt-testimonial-arrow-btn:hover {
            transform: translateY(-50%) !important;
            box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
        }
}

@media (max-width: 480px) {
    .adt-nav {
        height: 56px;
        min-height: 56px;
        padding-left: 12px;
        padding-right: 10px;
    }

    .adt-nav-menu {
        height: 56px;
    }

    .adt-brand img {
        width: 94px;
        max-width: 94px;
    }

    .adt-login-wrapper {
        height: 56px;
    }

    .adt-nav-menu .adt-login-btn {
        width: 57px !important;
        min-width: 57px !important;
        max-width: 57px !important;
        height: 18px !important;
        font-size: 12px !important;
    }

    .adt-menu-toggle {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px;
        min-height: 32px;
        flex-basis: 32px;
        margin-left: 7px !important;
    }

        .adt-menu-toggle span {
            width: 16px;
        }

            .adt-menu-toggle span:nth-child(1) {
                top: 9px;
            }

            .adt-menu-toggle span:nth-child(2) {
                top: 15px;
            }

            .adt-menu-toggle span:nth-child(3) {
                top: 21px;
            }

        .adt-menu-toggle[aria-expanded="true"] span:nth-child(1),
        .adt-menu-toggle[aria-expanded="true"] span:nth-child(3) {
            top: 15px;
        }

    .adt-nav-menu.open {
        top: 56px !important;
        left: 10px !important;
        right: 10px !important;
    }

    .adt-login-menu {
        top: 64px !important;
        left: 10px !important;
        right: 10px !important;
    }

        .adt-login-menu::before {
            right: 60px !important;
        }

    .adt-nav {
        padding-left: 15px;
        padding-right: 15px;
    }

    .adt-brand {
        width: 145px;
    }

        .adt-brand img {
            width: 140px;
        }

    .adt-login-menu {
        max-width: calc(100vw - 30px);
        padding: 24px 18px 20px !important;
    }

    .adt-login-title h3 {
        font-size: 23px;
    }

    .adt-login-input-group .form-control {
        height: 44px;
    }

    .adt-login-submit {
        height: 44px;
        line-height: 44px;
    }
}

@media (max-width: 420px) {
    .adt-tutorial-title-arrow {
        font-size: 28px;
    }

    .adt-tutorial-title-text > span {
        font-size: 25px;
    }

    .adt-tutorial-title-text > strong {
        font-size: 12px;
    }

    .adt-tutorial-main-image {
        height: 190px;
    }

    .adt-tutorial-item {
        grid-template-columns: 95px 1fr;
        column-gap: 9px;
    }

    .adt-tutorial-thumb {
        width: 140px;
        height: 80px;
        left: 30px;
    }

    .adt-tutorial-item-title {
        font-size: 8px;
        padding: 3px 8px;
    }

    .adt-tutorial-item-info p {
        font-size: 9px;
    }
}

@media (max-width: 390px) {
    .adt-client-slider {
        height: 305px;
    }

    .adt-client-viewport {
        width: calc(100% - 42px);
        flex-basis: calc(100% - 42px);
        height: 275px;
    }

    .adt-client-track {
        top: 32px;
        height: 200px;
        /*
         * Separación entre tarjetas.
         */
        gap: 12px !important;
    }

    .adt-client-slider .adt-client-card {
        flex: 0 0 92px !important;
        width: 92px !important;
        min-width: 92px !important;
        max-width: 92px !important;
        height: 178px !important;
        border-radius: 17px;
        transform: scale(.88);
    }

        .adt-client-slider .adt-client-card.active {
            transform: scale(1.20);
        }

    .adt-client-slider .adt-client-card-content {
        padding: 0 6px 9px;
    }

        .adt-client-slider .adt-client-card-content > span {
            font-size: 8.5px;
        }

        .adt-client-slider .adt-client-card-content a {
            font-size: 7.5px;
        }

    .adt-client-slider .adt-slider-arrow {
        width: 40px;
        height: 40px;
    }

        .adt-client-slider .adt-slider-arrow.prev {
            left: 2px;
        }

        .adt-client-slider .adt-slider-arrow.next {
            right: 2px;
        }

    .adt-client-logos {
        width: calc(100% - 28px);
        height: 126px;
        min-height: 0;
        margin-top: 0;
        padding: 11px 14px;
        border-radius: 21px;
        grid-template-columns: 38% 62%;
    }

    .adt-client-info {
        padding-right: 8px;
    }

        .adt-client-info p {
            font-size: 10px;
            line-height: 1.25;
        }

    .logos-group {
        gap: 2px;
    }

        .logos-group img {
            width: 48px;
            height: 23px;
        }

    .adt-plans-title {
        width: 72%;
        margin-top: 60px;
        margin-bottom: 18px;
        font-size: 25px !important;
    }

        .adt-plans-title .adt-faq-title-arrow {
            width: 17px;
            height: 17px;
            margin-right: 9px;
        }

    .adt-plans-tabs {
        width: 72%;
        height: 36px;
        margin-bottom: 24px;
    }

    .adt-plan-tab {
        height: 36px;
        font-size: 9px;
        line-height: 36px;
    }

    .adt-plans-wrapper {
        width: 72%;
        max-width: 270px;
    }

    .adt-plan-content {
        padding: 42px 16px 25px !important;
    }

    .adt-plan-name {
        font-size: 15px !important;
    }

    .adt-plan-price {
        min-width: 146px;
        height: 40px;
        font-size: 24px !important;
    }

    .adt-plan-users {
        margin-bottom: 15px;
    }

        .adt-plan-users strong {
            font-size: 24px;
        }

    .adt-plan-duration {
        margin-bottom: 21px;
    }

        .adt-plan-duration strong {
            font-size: 16px;
        }

        .adt-plan-duration span {
            font-size: 11px;
        }

    .adt-plan-feature {
        margin-bottom: 20px;
    }

        .adt-plan-feature > span {
            font-size: 12px;
        }

    .adt-plan-button {
        width: 174px;
        height: 42px;
        font-size: 18px;
    }

    .adt-plans-footer {
        width: 72%;
        margin-top: 14px;
    }

        .adt-plans-footer p {
            font-size: 10px !important;
            line-height: 1.25;
        }
}

@media (max-width: 380px) {
    .adt-faq {
        padding-top: 25px;
    }

        .adt-faq > .adt-container {
            max-width: calc(100% - 28px);
        }

    .adt-faq-title {
        margin-bottom: 9px;
    }

    .adt-faq-title-arrow {
        width: 23px !important;
        height: 23px !important;
        min-width: 23px !important;
        min-height: 23px !important;
        flex-basis: 23px !important;
    }

    .adt-faq-title h2 {
        font-size: 18px;
    }

    .adt-faq-question {
        min-height: 35px;
        font-size: 9px;
    }

    .adt-faq-icon {
        width: 19px !important;
        height: 19px !important;
        min-width: 19px !important;
        min-height: 19px !important;
        flex-basis: 19px !important;
    }

    .adt-answer {
        font-size: 9px;
    }

    .adt-footer {
        height: 265px;
        min-height: 265px;
        padding-top: 18px;
    }

    .adt-footer-logo {
        width: 140px;
        margin-bottom: 6px;
    }

    .adt-footer-membership-title {
        font-size: 11px;
    }

    .adt-footer-arrow {
        width: 19px;
        height: 19px;
        min-width: 19px;
        flex-basis: 19px;
    }

    .adt-footer-contact {
        width: 160px;
        min-width: 160px;
        height: 23px;
        margin-top: 6px;
        font-size: 8.5px;
    }

    .adt-footer-adex {
        margin-top: 18px;
    }

    .adt-footer-description {
        font-size: 7.5px;
    }

    .adt-footer-adex-logo img {
        width: 100px;
        max-width: 100px;
    }

    .adt-footer-social {
        gap: 4px;
        margin-top: 7px;
    }

        .adt-footer-social a,
        .adt-footer-social a img {
            width: 30px;
            height: 30px;
        }


    /* =====================================================
       HERO MOBILE MUY PEQUEÑO
    ===================================================== */

    .adt-hero {
        height: 330px !important;
        min-height: 330px !important;
        overflow: visible !important;
        border-radius: 0 0 45px 45px;
        margin-bottom: 110px;
    }


    .adt-hero-grid {
        position: relative;
        width: 100%;
        height: 100%;
        display: block;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0;
    }


    .adt-hero-copy {
        position: relative;
        z-index: 10;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 52px 15px 0 40px !important;
        margin: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }


    .adt-hero h1 {
        width: 100%;
        max-width: 275px;
        margin: 0 0 11px 0 !important;
        font-size: 27px !important;
        line-height: 1.03;
        letter-spacing: -0.6px;
        text-align: left;
    }


        .adt-hero h1 .adt-arrow {
            display: inline-block;
            margin-right: 3px !important;
            transform: translateY(-2px);
        }


            .adt-hero h1 .adt-arrow img {
                width: 21px;
                height: 21px;
                object-fit: contain;
            }


        .adt-hero h1 .blue {
            display: inline;
            color: var(--adt-cyan);
            font-weight: 800;
        }


    .adt-hero p {
        width: 100%;
        max-width: 230px;
        margin: 0 0 13px 20px !important;
        font-size: 10.5px !important;
        line-height: 1.28;
        text-align: left;
    }


    .adt-hero .adt-btn-red {
        min-width: 170px !important;
        width: auto !important;
        height: 35px !important;
        padding: 0 17px !important;
        margin-left: 21px;
        font-size: 10px !important;
        border-radius: 22px;
    }


    .adt-hero-art {
        position: absolute !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        z-index: 20;
    }


    .adt-hero-circle {
        display: none !important;
    }


    .adt-hero-video {
        position: absolute !important;
        top: -40px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 70vw !important;
        max-width: 230px !important;
        min-width: 0 !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin: 0 !important;
        overflow: hidden;
        border-radius: 0 !important;
        background: #F9E36B;
        box-shadow: none;
        z-index: 100;
    }


    .adt-hero-video-element {
        display: block;
        width: 100% !important;
        height: 100% !important;
        margin: 0;
        object-fit: cover;
        border-radius: 0 !important;
        pointer-events: none;
    }


    .adt-sound-button {
        left: auto !important;
        right: 8px !important;
        bottom: 8px !important;
        width: 55px !important;
        min-width: 48px !important;
        height: 23px !important;
        z-index: 200 !important;
    }


    /* =====================================================
       RESTO — SIN CAMBIOS
    ===================================================== */

    .adt-module-title-text > span {
        font-size: 23px;
    }

    .adt-module-title-text > strong {
        font-size: 25px;
        margin-left: 28px;
    }

    .adt-module-carousel {
        width: calc(100vw - 20px);
    }

    .adt-module-card {
        flex-basis: calc((100vw - 34px) / 2);
        width: calc((100vw - 34px) / 2);
        min-width: calc((100vw - 34px) / 2);
        max-width: calc((100vw - 34px) / 2);
    }

        .adt-module-card h3 {
            font-size: 10px;
        }

        .adt-module-card p {
            font-size: 7.5px;
        }

    .adt-module-map {
        min-height: 200px;
        height: 200px;
    }

    .adt-facts {
        padding-bottom: 210px !important;
    }

    .adt-facts-container {
        width: calc(100% - 30px) !important;
        max-width: 350px !important;
        height: 100px !important;
        min-height: 100px !important;
        padding-top: 16px !important;
        border-radius: 17px;
    }

    .adt-facts-title-text > span {
        font-size: 21px !important;
    }

    .adt-facts-title-text > strong {
        font-size: 8px !important;
        max-width: 220px;
    }

    .adt-facts-slider {
        top: 56px !important;
        width: 190px !important;
        max-width: 190px !important;
    }

    .adt-facts-viewport {
        width: 190px !important;
        min-width: 190px !important;
        max-width: 190px !important;
    }

    .adt-facts-slider .adt-fact-card {
        flex-basis: 190px !important;
        width: 190px !important;
        min-width: 190px !important;
        max-width: 190px !important;
    }

        .adt-facts-slider .adt-fact-card img {
            width: 190px !important;
            min-width: 190px !important;
            max-width: 190px !important;
        }

    .adt-facts-arrow {
        width: 32px !important;
        height: 32px !important;
        font-size: 23px;
    }

        .adt-facts-arrow.prev {
            left: -39px !important;
        }

        .adt-facts-arrow.next {
            right: -39px !important;
        }
}

@media (max-width: 360px) {
    .adt-testimonials {
        padding-top: 34px;
        min-height: 320px;
    }

    .adt-testimonial-title {
        margin-bottom: 18px;
    }

    .adt-testimonial-title-text > span {
        font-size: 19px !important;
    }

    .adt-testimonial-title-text > strong {
        font-size: 23px !important;
    }

    .adt-testimonial-viewport {
        width: calc(100% - 90px) !important;
        max-width: 240px !important;
    }

    .adt-testimonial-card {
        flex-basis: calc(100vw - 100px) !important;
        width: calc(100vw - 100px) !important;
        max-width: 240px !important;
        height: 195px !important;
    }

    .adt-testimonial-text {
        height: 138px !important;
        padding: 22px 15px 8px !important;
    }

    .adt-testimonial-footer {
        height: 57px !important;
    }

    .adt-testimonial-arrow-btn.prev {
        left: 14px !important;
    }

    .adt-testimonial-arrow-btn.next {
        right: 14px !important;
    }
}

@media (max-width: 350px) {
    .adt-nav {
        height: 54px;
        min-height: 54px;
        padding-left: 10px;
        padding-right: 8px;
    }

    .adt-nav-menu {
        height: 54px;
    }

    .adt-brand img {
        width: 88px;
        max-width: 88px;
    }

    .adt-login-wrapper {
        height: 54px;
    }

    .adt-nav-menu .adt-login-btn {
        width: 54px !important;
        min-width: 54px !important;
        max-width: 54px !important;
        height: 17px !important;
        font-size: 6.5px !important;
    }

    .adt-menu-toggle {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px;
        min-height: 30px;
        flex-basis: 30px;
        margin-left: 6px !important;
    }

        .adt-menu-toggle span {
            width: 15px;
        }

            .adt-menu-toggle span:nth-child(1) {
                top: 8px;
            }

            .adt-menu-toggle span:nth-child(2) {
                top: 14px;
            }

            .adt-menu-toggle span:nth-child(3) {
                top: 20px;
            }

        .adt-menu-toggle[aria-expanded="true"] span:nth-child(1),
        .adt-menu-toggle[aria-expanded="true"] span:nth-child(3) {
            top: 14px;
        }

    .adt-nav-menu.open {
        top: 54px !important;
        left: 8px !important;
        right: 8px !important;
    }

    .adt-login-menu {
        top: 62px !important;
        left: 8px !important;
        right: 8px !important;
    }

        .adt-login-menu::before {
            right: 55px !important;
        }

    .adt-client-slider {
        height: 295px;
    }

    .adt-client-viewport {
        width: calc(100% - 38px);
        flex-basis: calc(100% - 38px);
        height: 265px;
    }

    .adt-client-track {
        top: 30px;
        height: 190px;
        gap: 10px !important;
    }

    .adt-client-slider .adt-client-card {
        flex: 0 0 84px !important;
        width: 84px !important;
        min-width: 84px !important;
        max-width: 84px !important;
        height: 165px !important;
        border-radius: 16px;
        transform: scale(.86);
    }

        .adt-client-slider .adt-client-card.active {
            transform: scale(1.18);
        }

    .adt-client-slider .adt-client-card-content > span {
        font-size: 8px;
    }

    .adt-client-slider .adt-client-card-content a {
        font-size: 7px;
    }

    .adt-client-slider .adt-slider-arrow {
        width: 38px;
        height: 38px;
    }

    .adt-client-logos {
        width: calc(100% - 24px);
        height: 122px;
        padding: 10px 12px;
        border-radius: 20px;
    }

    .adt-client-info {
        padding-right: 7px;
    }

        .adt-client-info p {
            font-size: 8.5px;
            line-height: 1.23;
        }

    .logos-group img {
        width: 43px;
        height: 21px;
    }
}


@media (min-width: 700px) and (max-width: 768px) and (min-height: 900px) and (orientation: portrait) {

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

    .adt-hero {
        position: relative !important;
        width: 100% !important;
        height: 560px !important;
        min-height: 560px !important;
        display: block !important;
        overflow: hidden !important;
        margin: 0 !important;
        border-radius: 0 0 55px 55px;
        background-size: 100% auto !important;
        background-position: center top !important;
    }


    /* =====================================================
       CONTENEDOR
       Mantiene texto y video en DOS COLUMNAS.
    ===================================================== */

    .adt-hero-grid {
        position: relative !important;
        z-index: 2;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: 44% 56% !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 70px 24px 20px !important;
        box-sizing: border-box;
    }


    /* =====================================================
       COLUMNA DE TEXTO
    ===================================================== */

    .adt-hero-copy {
        position: relative !important;
        z-index: 20 !important;
        width: 100% !important;
        max-width: 325px !important;
        margin: 0 !important;
        padding: 0 0 0 8px !important;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }


    /* =====================================================
       TÍTULO
    ===================================================== */

    .adt-hero h1 {
        position: relative !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 0 17px 0 !important;
        font-size: 38px !important;
        line-height: 1.02 !important;
        letter-spacing: -1.1px !important;
        text-align: left !important;
    }

        .adt-hero h1 .adt-arrow {
            display: inline-block !important;
            width: auto !important;
            height: auto !important;
            margin-right: 5px !important;
            transform: translateY(-3px) !important;
            font-size: 25px !important;
            line-height: 1 !important;
        }

            .adt-hero h1 .adt-arrow img {
                width: 20px !important;
                height: 20px !important;
                object-fit: contain;
            }

        .adt-hero h1 .blue {
            font-size: inherit !important;
            line-height: inherit !important;
        }


    /* =====================================================
       DESCRIPCIÓN
    ===================================================== */

    .adt-hero p {
        width: 100% !important;
        max-width: 275px !important;
        margin: 0 0 20px 0 !important;
        font-size: 12px !important;
        line-height: 1.32 !important;
        text-align: left !important;
    }


    /* =====================================================
       BOTÓN
    ===================================================== */

    .adt-hero .adt-btn-red {
        min-width: 165px !important;
        width: auto !important;
        height: 36px !important;
        padding: 0 18px !important;
        font-size: 11px !important;
        line-height: 1 !important;
        border-radius: 22px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    }


    /* =====================================================
       ÁREA VISUAL
       Se convierte en una capa independiente a la derecha.
    ===================================================== */

    .adt-hero-art {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: 56% !important;
        height: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        z-index: 10 !important;
        pointer-events: none;
    }


    /* =====================================================
       CÍRCULO
       No se necesita en esta resolución.
    ===================================================== */

    .adt-hero-circle {
        display: none !important;
    }


    /* =====================================================
       VIDEO
       Se coloca dentro de la mitad derecha del hero.
    ===================================================== */

    .adt-hero-video {
        position: absolute !important;
        top: 165px !important;
        right: 8px !important;
        left: auto !important;
        transform: none !important;
        width: 360px !important;
        max-width: calc(100% - 8px) !important;
        min-width: 0 !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin: 0 !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        background: #000 !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
        z-index: 50 !important;
        pointer-events: auto;
    }


    /* =====================================================
       VIDEO HTML
    ===================================================== */

    .adt-hero-video-element {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        pointer-events: none;
    }


    /* =====================================================
       BOTÓN DE SONIDO
    ===================================================== */

    .adt-sound-button {
        left: auto !important;
        right: 10px !important;
        bottom: 10px !important;
        width: 68px !important;
        min-width: 68px !important;
        height: 28px !important;
        z-index: 200 !important;
    }


    .adt-client-slider {
        width: 540px !important;
        max-width: calc(100% - 20px) !important;
        height: 300px !important;
        margin: 10px auto 0 !important;
        overflow: visible !important;
    }

    .adt-client-viewport {
        width: 480px !important;
        max-width: 550px !important;
        flex: 0 0 550px !important;
        height: 390px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        margin-top: 30px;
        top: 20px;
    }

    .adt-client-track {
        top: 50px !important;
        gap: 10px !important;
        height: 210px !important;
    }

    .adt-client-slider .adt-client-card {
        flex: 0 0 180px !important;
        width: 140px !important;
        min-width: 140px !important;
        max-width: 300px !important;
        height: 270px !important;
        transform: scale(.90) !important;
    }

        .adt-client-slider .adt-client-card.active {
            transform: scale(1.15) !important;
            opacity: 1 !important;
            z-index: 20 !important;
        }

        .adt-client-slider .adt-client-card:not(.active):not(:has(+ .adt-client-card.active)) {
            margin-right: 0 !important;
        }
}


/* =========================================================
   FIX — IPAD PRO 13" PORTRAIT
   Resolución objetivo: 1032 x 1376

   En este tamaño el breakpoint 821-1100px cambia
   .adt-modules-grid a una columna, pero el carrusel
   conserva la configuración vertical de desktop.
   Eso hace que las tarjetas queden fuera de la composición
   esperada.

   Aquí mostramos el GIF arriba y el carrusel horizontal
   debajo, con 3 tarjetas visibles.
========================================================= */

@media (min-width: 1001px) and (max-width: 1100px) and (min-height: 1000px) and (orientation: portrait) {

    /* -----------------------------------------
       SECCIÓN MÓDULOS
    ----------------------------------------- */

    .adt-modules {
        width: 100% !important;
        overflow: visible !important;
    }

    .adt-modules-grid {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }

    /* -----------------------------------------
       GIF / IMAGEN
    ----------------------------------------- */

    .adt-module-map {
        order: 1 !important;
        width: 100% !important;
        height: 330px !important;
        min-height: 330px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }

    .adt-module-gif {
        position: absolute !important;
        width: min(600px, 90vw) !important;
        max-width: 600px !important;
        height: auto !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    /* -----------------------------------------
       CARRUSEL HORIZONTAL
    ----------------------------------------- */

    .adt-module-carousel {
        --adt-card-width: 205px !important;
        --adt-card-height: 170px !important;
        --adt-card-gap: 10px !important;
        order: 2 !important;
        position: relative !important;
        right: auto !important;
        left: auto !important;
        width: 750px !important;
        max-width: calc(100% - 80px) !important;
        height: 190px !important;
        min-height: 190px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
    }

    .adt-module-viewport {
        position: relative !important;
        width: 650px !important;
        max-width: 800px !important;
        height: 200px !important;
        flex: 0 0 780px !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .adt-module-track {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: max-content !important;
        height: 170px !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translate3d(0, 0, 0);
    }

    .adt-module-card {
        flex: 0 0 250px !important;
        width: 205px !important;
        min-width: 205px !important;
        max-width: 250px !important;
        height: 200px !important;
        min-height: 170px !important;
        max-height: 200px !important;
        box-sizing: border-box !important;
    }

    /* -----------------------------------------
       FLECHAS: VERTICAL → HORIZONTAL
    ----------------------------------------- */

    .adt-module-arrow {
        position: absolute !important;
        top: 50% !important;
        bottom: auto !important;
        width: 40px !important;
        height: 40px !important;
        z-index: 100 !important;
        transform: translateY(-50%) !important;
    }

        .adt-module-arrow:hover {
            transform: translateY(-50%) scale(1.08) !important;
        }

    .adt-module-arrow-up {
        left: -60px !important;
        right: auto !important;
    }

    .adt-module-arrow-down {
        right: -60px !important;
        left: auto !important;
    }

        .adt-module-arrow-up .adt-module-arrow-icon,
        .adt-module-arrow-down .adt-module-arrow-icon {
            transform: none !important;
        }

    .adt-module-arrow-up .adt-module-arrow-icon {
        transform: rotate(180deg) !important;
    }
}
