:root {
    --atw-primary: #0d8aa6;
    --atw-primary-2: #14a8c7;
    --atw-primary-3: #083b52;
    --atw-primary-4: #062a3a;
    --atw-accent: #28c7d9;
    --atw-accent-soft: #e8f9fc;

    --atw-success: #1da96b;
    --atw-success-soft: #e9f8f1;
    --atw-warning: #d89b1d;

    --atw-bg: #f4fbfd;
    --atw-bg-soft: #f8fcfd;
    --atw-surface: #ffffff;
    --atw-surface-2: #eff8fa;
    --atw-line: rgba(7, 57, 78, .10);
    --atw-line-strong: rgba(7, 57, 78, .18);

    --atw-text: #0f2230;
    --atw-text-2: #234255;
    --atw-muted: #5f7788;
    --atw-white: #ffffff;

    --atw-radius-xs: 10px;
    --atw-radius-sm: 14px;
    --atw-radius-md: 18px;
    --atw-radius-lg: 24px;
    --atw-radius-xl: 34px;

    --atw-shadow-xs: 0 6px 20px rgba(4, 34, 48, .05);
    --atw-shadow-sm: 0 12px 30px rgba(4, 34, 48, .08);
    --atw-shadow-md: 0 18px 45px rgba(4, 34, 48, .11);
    --atw-shadow-lg: 0 24px 60px rgba(4, 34, 48, .14);

    --atw-container-narrow: 1200px;
    --atw-transition: all .32s ease;
    --atw-header-offset: 108px;
}

/* =========================
   Base
   ========================= */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--atw-bg);
    color: var(--atw-text);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

section {
    position: relative;
}

.container,
.container-fluid {
    position: relative;
    z-index: 2;
}

.container {
    max-width: var(--atw-container-narrow);
}

p,
.lead,
li,
.small,
small {
    color: var(--atw-text-2);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.14rem;
    line-height: 1.82;
    color: var(--atw-text-2);
}

.text-muted,
small.text-muted,
.small.text-muted {
    color: var(--atw-muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
    color: var(--atw-primary-3);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
}

.display-4 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.display-5 {
    font-size: clamp(1.7rem, 3vw, 2.75rem);
}

h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

h3 {
    font-size: clamp(1.3rem, 1.9vw, 1.8rem);
}

h4 {
    font-size: clamp(1.12rem, 1.5vw, 1.4rem);
}

h5 {
    font-size: 1.05rem;
}

h6 {
    font-size: .93rem;
    letter-spacing: .03em;
}

a {
    color: var(--atw-primary);
    transition: var(--atw-transition);
}

a:hover {
    color: var(--atw-primary-3);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

hr {
    border-top: 1px solid var(--atw-line-strong);
}

mark {
    background: linear-gradient(180deg, transparent 58%, rgba(20, 168, 199, .16) 58%);
    color: inherit;
    padding: 0 .14em;
}

.text-primary,
.text-primary * {
    color: var(--atw-primary) !important;
}

.text-success,
.text-success * {
    color: var(--atw-success) !important;
}

.bg-light {
    background: var(--atw-surface-2) !important;
}

.bg-white {
    background: var(--atw-white) !important;
}

.bg-primary-3 {
    background:
        radial-gradient(circle at top right, rgba(40, 199, 217, .18), transparent 32%),
        linear-gradient(135deg, var(--atw-primary-4) 0%, var(--atw-primary-3) 100%) !important;
    color: var(--atw-white) !important;
}

.bg-primary-3 h1,
.bg-primary-3 h2,
.bg-primary-3 h3,
.bg-primary-3 h4,
.bg-primary-3 h5,
.bg-primary-3 h6,
.bg-primary-3 p,
.bg-primary-3 .lead,
.bg-primary-3 .small,
.bg-primary-3 small,
.bg-primary-3 li {
    color: var(--atw-white) !important;
}

.border,
.card,
.rounded,
.rounded-top {
    border-color: var(--atw-line) !important;
}

.shadow,
.shadow-sm,
.shadow-lg,
.hover-box-shadow:hover {
    box-shadow: var(--atw-shadow-sm) !important;
}

/* =========================
   Animaciones base
   ========================= */
@keyframes atwFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes atwPulse {

    0%,
    100% {
        opacity: .35;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(1.06);
    }
}

@keyframes atwGlow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(40, 199, 217, 0);
    }

    50% {
        box-shadow: 0 0 24px rgba(40, 199, 217, .14);
    }
}

@keyframes atwShine {
    0% {
        transform: translateX(-140%) skewX(-18deg);
        opacity: 0;
    }

    15% {
        opacity: .38;
    }

    35% {
        transform: translateX(180%) skewX(-18deg);
        opacity: 0;
    }

    100% {
        transform: translateX(180%) skewX(-18deg);
        opacity: 0;
    }
}

@keyframes atwBreath {

    0%,
    100% {
        transform: scale(1);
        opacity: .08;
    }

    50% {
        transform: scale(1.08);
        opacity: .16;
    }
}

@keyframes atwFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Buttons
   ========================= */
.btn {
    font-weight: 700;
    letter-spacing: .01em;
    border-radius: 999px;
    padding: .92rem 1.4rem;
    transition: var(--atw-transition);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn:focus,
.btn.focus {
    box-shadow: 0 0 0 .2rem rgba(20, 168, 199, .18) !important;
}

.btn-lg {
    padding: 1rem 1.6rem;
    font-size: 1rem;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .26), transparent);
    transform: translateX(-180%) skewX(-18deg);
    pointer-events: none;
}

.btn:hover::after {
    animation: atwShine 1.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-primary-2) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 25px rgba(13, 138, 166, .22);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--atw-primary-3) 0%, var(--atw-primary) 100%);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--atw-primary-3);
    border: 1.5px solid rgba(13, 138, 166, .28);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(8px);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--atw-accent-soft);
    color: var(--atw-primary-3);
    border-color: rgba(13, 138, 166, .45);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--atw-success) 0%, #23c87d 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 25px rgba(29, 169, 107, .20);
}

.btn-success:hover,
.btn-success:focus {
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--atw-primary-3);
}

.btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, .55);
}

/* =========================
   HERO
   ========================= */
#hero-cajeros {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(20, 168, 199, .10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    isolation: isolate;
}

/* marca de agua */
#hero-cajeros::before {
    content: "AT WATER";
    position: absolute;
    left: 3.2%;
    bottom: 5.5%;
    font-size: clamp(3.8rem, 11vw, 10rem);
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(8, 59, 82, .035);
    z-index: 0;
    line-height: .9;
    pointer-events: none;
    user-select: none;
}

#hero-cajeros::after {
    content: "";
    position: absolute;
    width: 580px;
    height: 580px;
    top: -170px;
    left: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 199, 217, .11) 0%, rgba(40, 199, 217, 0) 66%);
    animation: atwBreath 9s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.hero-cajeros-wrap {
    min-height: auto;
    position: relative;
    z-index: 2;
}

.hero-cajeros-copy {
    min-height: 760px;
    padding-top: calc(var(--atw-header-offset) + 42px);
    padding-bottom: 86px;
    padding-left: 12px;
    padding-right: 32px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    animation: atwFadeUp .7s ease;
}

.hero-cajeros-copy .container {
    margin-left: 0;
    max-width: 640px;
}

.hero-cajeros-copy .row {
    margin-left: 0;
    margin-right: 0;
}

.hero-cajeros-copy .col,
.hero-cajeros-copy .col-md-10,
.hero-cajeros-copy .col-xl-9 {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    flex: 0 0 100%;
}

.hero-kicker,
#hero-cajeros h6.text-primary {
    color: var(--atw-primary) !important;
    font-weight: 900;
    letter-spacing: .08em;
    font-size: .9rem;
    margin-bottom: 1.15rem;
}

.hero-title,
#hero-cajeros .display-5 {
    font-size: clamp(2.7rem, 4.35vw, 5rem) !important;
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.045em;
    color: #123b56;
    max-width: 10.3ch;
    margin-bottom: 1.5rem !important;
    text-wrap: balance;
}

.hero-lead {
    font-size: 1.18rem;
    line-height: 1.78;
    color: #29465a;
    max-width: 34ch;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.84;
    color: #36556a;
    max-width: 43ch;
    margin-bottom: 2rem;
}

#hero-cajeros .lead {
    font-size: 1.18rem;
    line-height: 1.78;
    color: #29465a;
    max-width: 34ch;
}

#hero-cajeros p:not(.lead) {
    max-width: 43ch;
}

.hero-actions,
#hero-cajeros .d-flex.flex-column.flex-sm-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.55rem !important;
    margin-bottom: .5rem;
}

.hero-actions .btn,
#hero-cajeros .d-flex.flex-column.flex-sm-row .btn {
    min-width: 224px;
    justify-content: center;
}

.hero-mini-cards {
    margin-top: 2rem !important;
    max-width: 760px;
}

.hero-mini-card,
#hero-cajeros .bg-light.rounded {
    background: rgba(255, 255, 255, .88) !important;
    border: 1px solid rgba(8, 59, 82, .09) !important;
    border-radius: 22px !important;
    padding: 1.2rem 1rem !important;
    box-shadow: 0 12px 30px rgba(6, 42, 58, .06);
    backdrop-filter: blur(10px);
    transition: var(--atw-transition);
    animation: atwGlow 6s ease-in-out infinite;
}

.hero-mini-card:hover,
#hero-cajeros .bg-light.rounded:hover {
    transform: translateY(-4px);
    box-shadow: var(--atw-shadow-md);
}

.hero-mini-card strong,
#hero-cajeros .bg-light.rounded strong {
    display: block;
    color: #18364b;
    font-size: 1.06rem;
    line-height: 1.35;
    margin-bottom: .4rem;
}

.hero-mini-card .small,
#hero-cajeros .bg-light.rounded .small {
    color: #5d7687 !important;
    font-size: .94rem;
    line-height: 1.58;
}

.hero-cajeros-media {
    min-height: 760px;
    height: 100%;
    display: flex;
    align-items: stretch;
    padding: 30px 30px 30px 10px;
    position: relative;
    z-index: 2;
}

.hero-cajeros-media::before {
    content: "";
    position: absolute;
    inset: 26px 26px 26px 6px;
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(13, 138, 166, .08), rgba(40, 199, 217, .02));
    z-index: 0;
    pointer-events: none;
}

.hero-cajeros-slider,
#hero-cajeros .controls-hover {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 42px;
    box-shadow: 0 26px 70px rgba(6, 42, 58, .16);
    z-index: 1;
}

.hero-cajeros-slider::after,
#hero-cajeros .controls-hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 42, 58, .12) 0%, rgba(6, 42, 58, 0) 22%, rgba(6, 42, 58, 0) 70%, rgba(6, 42, 58, .10) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-cajeros-slider .carousel-cell,
#hero-cajeros .carousel-cell {
    width: 100%;
    height: 100%;
}

.hero-cajeros-slider .carousel-cell img,
#hero-cajeros .carousel-cell img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    max-height: 840px;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 42px;
    transform: scale(1.02);
    transition: transform 8s ease;
}

.hero-cajeros-slider:hover .carousel-cell img,
#hero-cajeros .controls-hover:hover .carousel-cell img {
    transform: scale(1.06);
}

/* Flickity */
#hero-cajeros .flickity-viewport {
    height: 100% !important;
}

#hero-cajeros .flickity-slider {
    height: 100% !important;
}

.flickity-button {
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--atw-shadow-xs);
    transition: var(--atw-transition);
}

.flickity-button:hover {
    background: #fff;
    transform: translateY(-1px);
}

.flickity-page-dots .dot {
    background: var(--atw-primary);
}

/* =========================
   Cards / surfaces
   ========================= */
.card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--atw-line);
    border-radius: var(--atw-radius-md);
    overflow: hidden;
    box-shadow: var(--atw-shadow-xs);
    transition: var(--atw-transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--atw-shadow-md);
}

.card-body {
    padding: 1.5rem;
}

.rounded {
    border-radius: var(--atw-radius-md) !important;
}

.rounded-circle {
    box-shadow: var(--atw-shadow-xs);
}

.alert {
    border-radius: var(--atw-radius-md);
    border: 1px solid var(--atw-line);
    box-shadow: var(--atw-shadow-xs);
}

.alert-light,
.alert-white {
    background: rgba(255, 255, 255, .94);
    color: var(--atw-text);
}

/* =========================
   Tabs / pills / models
   ========================= */
.nav-pills .nav-item {
    width: 100%;
}

.nav-pills .btn,
.nav-pills .nav-link {
    border-radius: 18px;
    font-weight: 700;
}

.nav-pills .btn-primary,
.nav-pills .nav-link {
    background: #fff;
    color: var(--atw-primary-3);
    border: 1px solid rgba(13, 138, 166, .12);
    box-shadow: var(--atw-shadow-xs);
}

.nav-pills .btn-primary.active,
.nav-pills .nav-link.active,
.nav-pills .btn-primary:hover,
.nav-pills .nav-link:hover {
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-primary-2) 100%);
    color: #fff !important;
    border-color: transparent;
}

.tab-content>.tab-pane {
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--atw-line);
    border-radius: var(--atw-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--atw-shadow-sm);
}

.vip-product img {
    border-radius: var(--atw-radius-md);
    background: #fff;
    padding: .4rem;
    box-shadow: var(--atw-shadow-sm);
}

.vip-product h2,
.vip-product h1 {
    font-weight: 900;
}

/* =========================
   Accordions / FAQ
   ========================= */
#faq-atwater .card,
#faq-accordion .card {
    overflow: hidden;
}

#faq-atwater .card>a,
#faq-accordion .card>a {
    display: block;
    background: rgba(255, 255, 255, .94);
    color: var(--atw-text);
    border-radius: 0;
}

#faq-atwater .card>a:hover,
#faq-accordion .card>a:hover {
    background: var(--atw-accent-soft);
}

#faq-atwater .collapse,
#faq-accordion .collapse {
    background: linear-gradient(180deg, rgba(248, 252, 253, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

#faq-atwater .px-3,
#faq-accordion .px-3 {
    color: var(--atw-text-2);
}

/* =========================
   Forms / selectpicker
   ========================= */
label {
    color: var(--atw-primary-3);
    font-weight: 700;
    margin-bottom: .45rem;
}

.form-control,
.bootstrap-select .dropdown-toggle,
.selectFiltro+.dropdown-toggle {
    min-height: 54px;
    border-radius: 16px !important;
    border: 1px solid rgba(13, 138, 166, .18) !important;
    background: #fff !important;
    color: var(--atw-text) !important;
    box-shadow: none !important;
    padding: .85rem 1rem !important;
}

.form-control:focus,
.bootstrap-select .dropdown-toggle:focus,
.selectFiltro+.dropdown-toggle:focus {
    border-color: rgba(13, 138, 166, .42) !important;
    box-shadow: 0 0 0 .2rem rgba(20, 168, 199, .14) !important;
}

.bootstrap-select .dropdown-menu {
    border: none;
    border-radius: 18px;
    box-shadow: var(--atw-shadow-md);
    overflow: hidden;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background: var(--atw-primary);
}

/* =========================
   Sections fine tuning
   ========================= */
#que-es,
#compra-renta-alianza,
#financiacion,
#mantenimiento-documentos,
#buscar,
#cta-final,
#faq,
#miembro-red,
#tecnologia-purificacion,
#modelos {
    overflow: hidden;
}

#que-es::before,
#miembro-red::before,
#tecnologia-purificacion::before,
#mantenimiento-documentos::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 168, 199, .09) 0%, rgba(20, 168, 199, 0) 68%);
    pointer-events: none;
    z-index: 1;
}

#que-es::before {
    top: -140px;
    right: -110px;
}

#miembro-red::before {
    bottom: -160px;
    left: -130px;
}

#tecnologia-purificacion::before {
    top: -130px;
    left: -130px;
}

#mantenimiento-documentos::before {
    bottom: -140px;
    right: -110px;
}

#cta-final {
    overflow: hidden;
}

#cta-final::before,
#cta-final::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

#cta-final::before {
    width: 360px;
    height: 360px;
    top: -120px;
    left: -80px;
}

#cta-final::after {
    width: 460px;
    height: 460px;
    right: -160px;
    bottom: -180px;
}

#buscar .img-fluid,
#tecnologia-purificacion .img-fluid,
#modelos .img-fluid {
    border-radius: var(--atw-radius-lg);
}

/* =========================
   Utility premium members look
   ========================= */
.member-badge,
.atw-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(20, 168, 199, .08);
    color: var(--atw-primary-3);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .02em;
    border: 1px solid rgba(13, 138, 166, .12);
}

.atw-kpi {
    background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(248, 252, 253, .96) 100%);
    border: 1px solid var(--atw-line);
    border-radius: var(--atw-radius-md);
    padding: 1rem 1.1rem;
    box-shadow: var(--atw-shadow-xs);
}

.atw-kpi strong,
.atw-kpi h4 {
    color: var(--atw-primary-3);
}

.atw-glass {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: var(--atw-shadow-sm);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1399.98px) {
    .hero-cajeros-copy {
        min-height: 700px;
        padding-top: calc(var(--atw-header-offset) + 34px);
        padding-bottom: 68px;
    }

    .hero-cajeros-media {
        min-height: 700px;
        padding: 24px 24px 24px 10px;
    }

    .hero-title,
    #hero-cajeros .display-5 {
        font-size: clamp(2.45rem, 4vw, 4.2rem) !important;
        max-width: 10.8ch;
    }

    .hero-cajeros-slider .carousel-cell img,
    #hero-cajeros .carousel-cell img {
        min-height: 650px;
    }
}

@media (max-width: 1199.98px) {
    .tab-content>.tab-pane {
        padding: 1.25rem;
    }

    .hero-cajeros-copy {
        padding-left: 0;
        padding-right: 20px;
    }

    .hero-cajeros-copy .container {
        max-width: 560px;
    }

    .hero-title,
    #hero-cajeros .display-5 {
        font-size: clamp(2.25rem, 3.5vw, 3.6rem) !important;
        max-width: 11ch;
    }

    .hero-lead,
    #hero-cajeros .lead {
        font-size: 1.08rem;
        max-width: 36ch;
    }
}

@media (max-width: 991.98px) {
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    #hero-cajeros {
        padding-top: 0 !important;
    }

    #hero-cajeros::before {
        left: 50%;
        transform: translateX(-50%);
        bottom: 2%;
        font-size: clamp(3rem, 14vw, 6rem);
        text-align: center;
        width: 100%;
    }

    .hero-cajeros-wrap {
        display: block;
    }

    .hero-cajeros-copy {
        min-height: auto;
        padding-top: calc(var(--atw-header-offset) + 26px);
        padding-bottom: 34px;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .hero-cajeros-copy .container {
        margin: 0 auto;
        max-width: 720px;
    }

    .hero-title,
    .hero-lead,
    .hero-text,
    #hero-cajeros .display-5,
    #hero-cajeros .lead,
    #hero-cajeros p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title,
    #hero-cajeros .display-5 {
        font-size: clamp(2.2rem, 5vw, 3.3rem) !important;
        max-width: 14ch;
    }

    .hero-actions,
    #hero-cajeros .d-flex.flex-column.flex-sm-row {
        justify-content: center;
    }

    .hero-cajeros-media {
        min-height: auto;
        padding: 0 18px 24px 18px;
    }

    .hero-cajeros-media::before {
        inset: 0 12px 10px 12px;
        border-radius: 30px;
    }

    .hero-cajeros-slider,
    #hero-cajeros .controls-hover,
    .hero-cajeros-slider .carousel-cell img,
    #hero-cajeros .carousel-cell img {
        border-radius: 28px;
    }

    .hero-cajeros-slider .carousel-cell img,
    #hero-cajeros .carousel-cell img {
        min-height: 440px;
        max-height: 560px;
    }

    .hero-mini-cards {
        margin-left: auto;
        margin-right: auto;
    }

    #hero-cajeros .text-lg-left {
        text-align: center !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .nav-pills {
        gap: .75rem;
    }

    .nav-pills .nav-item {
        width: auto;
        flex: 1 1 calc(50% - .75rem);
    }

    .nav-pills .btn,
    .nav-pills .nav-link {
        text-align: center !important;
        justify-content: center;
        min-height: 70px;
    }

    .tab-content>.tab-pane {
        margin-top: 1rem;
    }

    #buscar .pr-lg-5,
    #que-es .pr-lg-4,
    #tecnologia-purificacion .text-lg-left,
    #compra-renta-alianza .text-lg-left {
        text-align: center !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15.8px;
    }

    .display-4 {
        font-size: 2.15rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    p,
    .lead {
        font-size: 1rem;
        line-height: 1.72;
    }

    .card-body,
    .alert,
    .tab-content>.tab-pane {
        padding: 1.1rem;
    }

    .btn,
    .btn-lg {
        width: 100%;
    }

    .d-flex.flex-column.flex-sm-row .btn {
        margin-right: 0 !important;
    }

    .nav-pills .nav-item {
        flex: 1 1 100%;
        width: 100%;
    }

    .vip-product h1,
    .vip-product h2 {
        font-size: 1.55rem;
    }

    .hero-cajeros-copy {
        padding-top: calc(var(--atw-header-offset) - 6px);
        padding-bottom: 26px;
    }

    .hero-kicker,
    #hero-cajeros h6.text-primary {
        font-size: .78rem;
    }

    .hero-title,
    #hero-cajeros .display-5 {
        font-size: clamp(1.95rem, 8vw, 2.7rem) !important;
        line-height: 1.04;
        max-width: 12ch;
    }

    .hero-lead,
    #hero-cajeros .lead {
        font-size: 1.02rem;
        line-height: 1.66;
    }

    .hero-text {
        font-size: .98rem;
        line-height: 1.72;
    }

    .hero-actions .btn,
    #hero-cajeros .d-flex.flex-column.flex-sm-row .btn {
        width: 100%;
        min-width: 100%;
    }

    .hero-cajeros-media {
        padding: 0 14px 20px 14px;
    }

    .hero-cajeros-slider .carousel-cell img,
    #hero-cajeros .carousel-cell img {
        min-height: 340px;
        max-height: 420px;
    }

    .hero-mini-card {
        text-align: left;
    }

    #hero-cajeros .bg-light.rounded,
    .bg-light.rounded {
        padding: 1rem !important;
    }

    .bootstrap-select,
    .bootstrap-select>.dropdown-toggle,
    .selectFiltro+.dropdown-toggle {
        width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    section {
        padding-top: 3.1rem;
        padding-bottom: 3.1rem;
    }

    .container {
        padding-left: 1.05rem;
        padding-right: 1.05rem;
    }

    h6 {
        font-size: .86rem;
    }

    .btn {
        padding: .9rem 1.05rem;
    }

    .hero-cajeros-copy {
        padding-top: calc(var(--atw-header-offset) - 16px);
    }

    .hero-title,
    #hero-cajeros .display-5 {
        font-size: clamp(1.82rem, 9vw, 2.35rem) !important;
        max-width: 100%;
    }

    .hero-cajeros-media {
        padding: 0 12px 18px 12px;
    }

    .hero-cajeros-slider,
    #hero-cajeros .controls-hover,
    .hero-cajeros-slider .carousel-cell img,
    #hero-cajeros .carousel-cell img,
    .rounded,
    .card,
    .tab-content>.tab-pane,
    .alert {
        border-radius: 18px !important;
    }

    .hero-cajeros-slider .carousel-cell img,
    #hero-cajeros .carousel-cell img {
        min-height: 295px;
        max-height: 350px;
    }

    .card:hover {
        transform: none;
    }
}

/* =========================
   Optional helper classes
   ========================= */
.atw-section-title {
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.atw-section-lead {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

.atw-surface {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--atw-line);
    border-radius: var(--atw-radius-lg);
    box-shadow: var(--atw-shadow-sm);
}

.atw-surface-soft {
    background: linear-gradient(180deg, rgba(248, 252, 253, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid var(--atw-line);
    border-radius: var(--atw-radius-lg);
}

.atw-divider {
    width: 84px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--atw-primary) 0%, var(--atw-accent) 100%);
    margin: 1rem auto 0;
}