:root {
    --blue: #1464e8;
    --blue-dark: #0b47b7;
    --navy: #0f2745;
    --text: #23354d;
    --muted: #66778d;
    --light: #f4f8ff;
    --white: #ffffff;
    --border: #dce6f3;
    --green: #17a765;
    --shadow: 0 18px 50px rgba(15, 39, 69, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

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

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.brand img {
    display: block;
    width: auto;
    height: 46px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--blue);
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    min-height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 0 20px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(20,100,232,.22);
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-outline {
    background: #fff;
    color: var(--blue);
    border-color: #a9c6ef;
}

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

.btn-ghost-light {
    color: #fff;
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(70,160,255,.48),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #0860df,
            #1479f0 48%,
            #0b59cf
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(
            rgba(255,255,255,.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.12) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.hero-copy h1 {
    margin: 14px 0 18px;
    max-width: 650px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;
}

.hero-copy h1 span {
    display: block;
}

.hero-copy p {
    max-width: 610px;
    margin: 0;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255,255,255,.9);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.hero-visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
}

.orbit-one {
    width: 350px;
    height: 350px;
}

.orbit-two {
    width: 255px;
    height: 255px;
}

.router-card,
.speed-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(255,255,255,.17);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
}

.router-card {
    left: 12%;
    top: 28%;
    width: 260px;
    min-height: 122px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.router-icon {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--blue);
    font-size: 32px;
    font-weight: 1000;
}

.router-card strong,
.router-card span {
    display: block;
}

.router-card span {
    margin-top: 5px;
    color: rgba(255,255,255,.8);
}

.router-light {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    right: 16px;
    top: 16px;
    background: #56ffae;
    box-shadow: 0 0 16px #56ffae;
}

.speed-card {
    right: 2%;
    bottom: 14%;
    width: 240px;
    border-radius: 18px;
    padding: 18px;
}

.speed-card span,
.speed-card strong,
.speed-card small {
    display: block;
}

.speed-card span {
    font-size: 13px;
    opacity: .8;
}

.speed-card strong {
    margin: 5px 0;
    font-size: 26px;
}

.speed-card small {
    opacity: .7;
}

.section {
    padding: 88px 0;
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-kicker {
    color: var(--blue);
}

.section-heading h2,
.request-copy h2 {
    color: var(--navy);
    margin: 8px 0 12px;
    font-size: clamp(32px, 4vw, 46px);
    letter-spacing: -.03em;
}

.section-heading p,
.request-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.plans-section {
    background: #fff;
}

.plans-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.plan-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15,39,69,.06);
    transition: .2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #a8c9f5;
}

.plan-card h3 {
    color: var(--navy);
    margin: 0 0 20px;
    font-size: 21px;
}

.plan-speed {
    color: var(--blue);
    font-size: 48px;
    line-height: 1;
    font-weight: 950;
}

.plan-speed span {
    font-size: 16px;
}

.plan-upload {
    margin-top: 9px;
    color: var(--muted);
    font-size: 14px;
}

.plan-price {
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-price span {
    color: var(--blue);
    font-weight: 900;
}

.plan-price strong {
    color: var(--navy);
    font-size: 38px;
}

.plan-price small {
    color: var(--muted);
}

.plan-card ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.plan-card li {
    margin: 10px 0;
}

.plan-card li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--green);
    font-weight: 900;
}

.plan-card .btn {
    width: 100%;
}

.plan-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eaf2ff;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
}

.coverage-section {
    background: var(--light);
}

.coverage-layout {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 24px;
    align-items: stretch;
}

.map-shell,
.coverage-card {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.map-shell {
    overflow: hidden;
    min-height: 470px;
}

#coverageMap {
    width: 100%;
    height: 100%;
    min-height: 470px;
}

.coverage-card {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.coverage-status {
    color: var(--green);
    background: #e9fbf2;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 900;
}

.coverage-card h3 {
    margin: 18px 0 10px;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.18;
}

.coverage-card p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.coverage-card .btn {
    width: 100%;
    margin-top: 10px;
}

.location-message {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.request-section {
    background: #fff;
}

.request-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 70px;
    align-items: start;
}

.request-copy {
    position: sticky;
    top: 110px;
}

.request-flow {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.request-flow div {
    display: flex;
    gap: 13px;
    align-items: center;
}

.request-flow strong {
    flex: 0 0 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #eaf2ff;
    color: var(--blue);
}

.request-flow span {
    color: var(--text);
    font-weight: 700;
}

.request-form-card {
    padding: 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.form-full {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cbd9ea;
    border-radius: 10px;
    padding: 13px 14px;
    background: #fff;
    color: var(--text);
    outline: none;
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(20,100,232,.10);
}

textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    min-height: 50px;
}

.form-note {
    margin: 12px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}

.alert {
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 12px;
    line-height: 1.5;
}

.alert-success {
    color: #12613d;
    background: #eafaf2;
    border: 1px solid #bdebd2;
}

.alert-error {
    color: #8d2525;
    background: #fff1f1;
    border: 1px solid #efc5c5;
}

.alert-error ul {
    margin-bottom: 0;
}

.request-number {
    margin-top: 6px;
}

.support-section {
    background: var(--light);
}

.support-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.support-grid article {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.support-icon {
    font-size: 28px;
}

.support-grid h3 {
    color: var(--navy);
    margin: 15px 0 8px;
}

.support-grid p {
    color: var(--muted);
    line-height: 1.65;
}

.support-grid a {
    color: var(--blue);
    font-weight: 800;
}

.site-footer {
    color: #d7e6fb;
    background: #0d2746;
}

.footer-grid {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1.4fr .6fr .6fr;
    gap: 50px;
}

.footer-logo {
    max-width: 230px;
    max-height: 58px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-grid p {
    color: #9fb4cf;
}

.footer-grid strong,
.footer-grid a {
    display: block;
}

.footer-grid strong {
    margin-bottom: 12px;
    color: #fff;
}

.footer-grid a {
    margin: 9px 0;
    color: #b9cce5;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 18px 20px;
    text-align: center;
    color: #88a2c2;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
}

@media (max-width: 980px) {
    .main-nav {
        display: none;
    }

    .hero-grid,
    .coverage-layout,
    .request-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding: 65px 0;
    }

    .hero-visual {
        min-height: 320px;
    }

    .plans-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .request-copy {
        position: static;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .brand img {
        height: 38px;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .header-actions .btn-primary {
        padding: 0 12px;
        font-size: 12px;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-copy h1 {
        font-size: 46px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 300px;
    }

    .router-card {
        left: 0;
    }

    .speed-card {
        right: 0;
    }

    .section {
        padding: 65px 0;
    }

    .plans-grid,
    .support-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .request-form-card,
    .coverage-card {
        padding: 22px;
    }

    .map-shell,
    #coverageMap {
        min-height: 380px;
    }
}

/* =========================================================
   HN - LOGO PRINCIPAL RESPONSIVE
   ========================================================= */

.brand img,
.footer-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none !important;
    background: linear-gradient(
        135deg,
        #061b46 0%,
        #0b4fc4 55%,
        #0b92f4 100%
    );
    padding: 10px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(7, 27, 74, 0.22);
}

.site-header .brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .brand img {
    width: 100%;
    max-width: 360px;
    min-width: 220px;
    max-height: 78px;
}

.site-footer .footer-logo {
    width: 100%;
    max-width: 340px;
    max-height: 78px;
}

/* =========================================================
   HN - HEADER RESPONSIVE
   ========================================================= */

.site-header .container,
.header-container,
.navbar,
.nav-wrapper {
    flex-wrap: wrap;
}

.site-header .brand,
.header-left {
    flex: 1 1 260px;
    min-width: 220px;
}

.site-header nav,
.main-nav,
.header-center {
    flex: 1 1 420px;
    min-width: 240px;
}

.site-header .header-actions,
.header-actions,
.header-right {
    flex: 1 1 260px;
    min-width: 220px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

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

@media (max-width: 992px) {
    .site-header .brand img {
        max-width: 300px;
        min-width: 200px;
        max-height: 68px;
        padding: 8px 14px;
    }

    .site-footer .footer-logo {
        max-width: 280px;
        max-height: 64px;
        padding: 8px 14px;
    }

    .site-header .header-actions,
    .header-actions,
    .header-right {
        justify-content: flex-start;
    }
}

/* =========================================================
   HN - RESPONSIVE MOVIL
   ========================================================= */

@media (max-width: 768px) {
    .site-header .brand,
    .header-left {
        width: 100%;
        justify-content: center;
    }

    .site-header .brand img {
        max-width: 260px;
        min-width: 180px;
        max-height: 60px;
        padding: 8px 12px;
        border-radius: 14px;
    }

    .site-footer .footer-logo {
        max-width: 240px;
        max-height: 56px;
        padding: 8px 12px;
        border-radius: 14px;
        margin: 0 auto;
    }

    .site-header nav,
    .main-nav,
    .header-center,
    .site-header .header-actions,
    .header-actions,
    .header-right {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* =========================================================
   HN - MOVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {
    .site-header .brand img {
        max-width: 220px;
        min-width: 160px;
        max-height: 52px;
        padding: 7px 10px;
    }

    .site-footer .footer-logo {
        max-width: 210px;
        max-height: 50px;
        padding: 7px 10px;
    }
}

/* =========================================================
   HN - FORMULARIO INSTALACION / CEDULA
   ========================================================= */

#installationRequestForm input#cedula {
    letter-spacing: 0.5px;
}

/* HN - AJUSTE FINAL LOGO OFICIAL */

.brand img,
.footer-logo {
    filter: none !important;
    object-fit: contain;
    background:
        linear-gradient(
            135deg,
            #061b46 0%,
            #0b4fc4 55%,
            #0b92f4 100%
        );
    padding: 8px 14px;
    border-radius: 14px;
}

.site-header .brand img {
    max-width: 300px;
    max-height: 64px;
}

.site-footer .footer-logo {
    max-width: 300px;
    max-height: 68px;
}

/* =========================================================
   HN - LOGO OFICIAL FINAL
   Agrandar SOLO el logo, sin banner azul
   ========================================================= */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Quitar completamente el cuadro/fondo del logo */
.brand img,
.footer-logo,
.site-header .brand img,
.site-footer .footer-logo {
    background: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    width: auto !important;
    height: auto !important;

    object-fit: contain !important;

    /*
     * Hace visibles las letras blancas
     * SIN poner un banner detrás.
     */
    filter:
        drop-shadow(0 1px 1px rgba(5, 28, 66, .95))
        drop-shadow(0 0 2px rgba(5, 28, 66, .70))
        !important;
}

/* LOGO GRANDE EN PC */
.site-header .brand img {
    width: 350px !important;
    max-width: 350px !important;
}

/* Footer */
.site-footer .footer-logo {
    width: 320px !important;
    max-width: 320px !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .site-header .brand img {
        width: 300px !important;
        max-width: 300px !important;
    }

}


/* =========================================================
   CELULARES
   ========================================================= */

@media (max-width: 768px) {

    .header-inner {
        gap: 10px;
        min-height: 72px;
    }

    .site-header .brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-header .brand img {
        width: 245px !important;
        max-width: 100% !important;
    }

    .site-footer .footer-logo {
        width: 245px !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {

    .site-header .brand img {
        width: 205px !important;
    }

    .site-footer .footer-logo {
        width: 215px !important;
    }

}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 360px) {

    .site-header .brand img {
        width: 180px !important;
    }

}

/* =========================================================
   HENRY NETWORK
   RESPONSIVE COMPLETO WEB PUBLICA
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 28px));
}


/* =========================================================
   HEADER
   ========================================================= */

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.site-header .brand {
    flex: 0 1 auto;
    min-width: 0;
}

.site-header .brand img {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    width: 350px !important;
    max-width: 350px !important;
    height: auto !important;
    object-fit: contain !important;

    filter:
        drop-shadow(0 1px 1px rgba(5, 28, 66, .90))
        drop-shadow(0 0 2px rgba(5, 28, 66, .55))
        !important;
}

.main-nav {
    flex: 1 1 auto;
    justify-content: center;
}

.header-actions {
    flex: 0 0 auto;
}


/* =========================================================
   HERO / BANNER PRINCIPAL
   ========================================================= */

.hero-grid {
    width: 100%;
}

.hero-copy,
.hero-visual {
    min-width: 0;
}

.hero-copy h1 {
    word-break: normal;
    overflow-wrap: break-word;
}

.hero-buttons {
    flex-wrap: wrap;
}


/* =========================================================
   PLANES
   ========================================================= */

.plans-grid {
    align-items: stretch;
}

.plan-card {
    min-width: 0;
    height: 100%;
}

.plan-card .btn {
    white-space: normal;
    text-align: center;
}


/* =========================================================
   MAPA
   ========================================================= */

.coverage-layout {
    width: 100%;
}

.map-shell,
.coverage-card {
    min-width: 0;
}

#coverageMap {
    width: 100%;
}


/* =========================================================
   FORMULARIO
   ========================================================= */

.request-layout,
.request-form-card,
.request-copy {
    min-width: 0;
}

.form-grid {
    width: 100%;
}

.form-group {
    min-width: 0;
}

input,
select,
textarea,
button {
    max-width: 100%;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer-grid > div {
    min-width: 0;
}

.site-footer .footer-logo {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;

    width: 320px !important;
    max-width: 100% !important;
    height: auto !important;

    filter:
        drop-shadow(0 1px 1px rgba(0, 0, 0, .65))
        !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .container {
        width: min(100% - 28px, 960px);
    }

    .site-header .brand img {
        width: 290px !important;
        max-width: 290px !important;
    }

    .main-nav {
        gap: 16px;
        font-size: 13px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .plans-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .coverage-layout {
        grid-template-columns:
            1.2fr .8fr;
    }

}


/* =========================================================
   CELULARES
   2 BLOQUES
   ========================================================= */

@media (max-width: 768px) {

    .container {
        width: calc(100% - 20px);
    }


    /* ---------- HEADER EN 2 BLOQUES ---------- */

    .header-inner {
        min-height: 72px;
        display: grid;
        grid-template-columns:
            minmax(0, 1fr)
            auto;
        gap: 10px;
        padding: 8px 0;
    }

    .site-header .brand {
        min-width: 0;
    }

    .site-header .brand img {
        width: 230px !important;
        max-width: 100% !important;
    }

    .header-actions {
        display: flex;
        justify-content: flex-end;
        gap: 6px;
    }

    .header-actions .btn {
        min-height: 40px;
        padding: 0 11px;
        font-size: 11px;
        white-space: nowrap;
    }

    /*
     * Navegacion debajo del logo/botones.
     */
    .main-nav {
        grid-column: 1 / -1;

        display: flex !important;
        justify-content: center;
        flex-wrap: wrap;

        gap: 5px 16px;
        padding: 5px 0 3px;

        font-size: 12px;
    }


    /* ---------- HERO ---------- */

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 20px;
        padding: 48px 0;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1 {
        font-size: clamp(
            38px,
            11vw,
            54px
        );
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        min-height: 280px;
    }

    .router-card {
        left: 2%;
        width: min(250px, 72%);
    }

    .speed-card {
        right: 2%;
        width: min(220px, 65%);
    }


    /* ---------- TITULOS ---------- */

    .section {
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2,
    .request-copy h2 {
        font-size: 31px;
    }

    .section-heading p,
    .request-copy p {
        font-size: 15px;
    }


    /* ---------- PLANES EN 2 BLOQUES ---------- */

    .plans-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .plan-card {
        padding: 18px 14px;
        border-radius: 15px;
    }

    .plan-card h3 {
        padding-right: 0;
        font-size: 16px;
    }

    .plan-badge {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }

    .plan-speed {
        font-size: 34px;
    }

    .plan-speed span {
        font-size: 12px;
    }

    .plan-upload {
        font-size: 12px;
    }

    .plan-price {
        margin: 18px 0;
    }

    .plan-price strong {
        font-size: 29px;
    }

    .plan-card ul {
        font-size: 12px;
    }

    .plan-card .btn {
        padding: 8px;
        min-height: 42px;
        font-size: 11px;
    }


    /* ---------- MAPA ---------- */

    .coverage-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-shell,
    #coverageMap {
        min-height: 360px;
    }

    .coverage-card {
        padding: 22px;
    }


    /* ---------- SOLICITUD ---------- */

    .request-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .request-copy {
        position: static;
    }

    .request-form-card {
        padding: 20px;
    }

    /*
     * Formulario en 2 bloques.
     */
    .form-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .form-full {
        grid-column: 1 / -1;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }


    /* ---------- SOPORTE EN 2 BLOQUES ---------- */

    .support-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .support-grid article {
        padding: 20px 15px;
    }

    /*
     * Tercera tarjeta usa el ancho completo.
     */
    .support-grid article:last-child {
        grid-column: 1 / -1;
    }


    /* ---------- FOOTER ---------- */

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;
        padding: 35px 0;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .site-footer .footer-logo {
        width: 250px !important;
        margin: 0 auto;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 16px);
    }

    .header-inner {
        grid-template-columns:
            minmax(0, 1fr)
            auto;
    }

    .site-header .brand img {
        width: 195px !important;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .header-actions .btn-primary {
        font-size: 10px;
        padding: 0 9px;
    }

    .main-nav {
        gap: 4px 12px;
        font-size: 11px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .hero-visual {
        min-height: 250px;
    }

    .router-card {
        width: 70%;
        padding: 14px;
    }

    .speed-card {
        width: 62%;
        padding: 13px;
    }

    .speed-card strong {
        font-size: 20px;
    }


    /*
     * Seguimos manteniendo 2 bloques para planes.
     */
    .plans-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .plan-card {
        padding: 15px 10px;
    }

    .plan-speed {
        font-size: 29px;
    }

    .plan-price strong {
        font-size: 25px;
    }


    /*
     * Formulario: 2 bloques para datos cortos.
     */
    .form-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .support-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   Para evitar cortes cambiamos a una sola columna.
   ========================================================= */

@media (max-width: 360px) {

    .site-header .brand img {
        width: 165px !important;
    }

    .main-nav {
        font-size: 10px;
        gap: 4px 8px;
    }

    .hero-copy h1 {
        font-size: 35px;
    }

    .plans-grid,
    .form-grid,
    .support-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .support-grid article:last-child,
    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .plan-card {
        padding: 20px;
    }

    .plan-speed {
        font-size: 38px;
    }

    .plan-price strong {
        font-size: 32px;
    }

}

/* =========================================================
   HN - HEADER MISMO COLOR DEL FOOTER
   ========================================================= */

.site-header {
    background: #0d2746 !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 8px 24px rgba(13,39,70,.16);
}

/* Logo sin fondo adicional */
.site-header .brand img {
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

/* Menú */
.site-header .main-nav a {
    color: #d7e6fb !important;
}

.site-header .main-nav a:hover {
    color: #ffffff !important;
}

/* Botón iniciar sesión */
.site-header .btn-outline {
    color: #ffffff !important;
    background: transparent !important;
    border-color: rgba(255,255,255,.65) !important;
}

.site-header .btn-outline:hover {
    background: rgba(255,255,255,.10) !important;
    border-color: #ffffff !important;
}

/* Botón solicitar instalación */
.site-header .btn-primary {
    background: #1464e8 !important;
    color: #ffffff !important;
    border-color: #1464e8 !important;
}

.site-header .btn-primary:hover {
    background: #2d7cf0 !important;
}

/* =========================================================
   HN - HEADER MOBILE
   ========================================================= */

@media (max-width: 768px) {
    .site-header {
        background: #0d2746 !important;
    }

    .site-header .main-nav a {
        color: #d7e6fb !important;
    }
}

/* =========================================================
   HN - POSICION FINAL HEADER
   Logo izquierda / Menu centro / Botones derecha
   ========================================================= */

.site-header .header-inner {
    width: min(1180px, calc(100% - 32px)) !important;
    min-height: 86px !important;
    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns:
        330px
        minmax(300px, 1fr)
        auto !important;

    align-items: center !important;
    gap: 24px !important;

    padding: 8px 0 !important;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-header .brand {
    width: 100% !important;
    min-width: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    margin: 0 !important;
}

.site-header .brand img {
    display: block !important;

    width: 310px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 72px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: left center !important;

    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    filter: none !important;
}


/* =========================================================
   MENU CENTRAL
   ========================================================= */

.site-header .main-nav {
    width: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-wrap: nowrap !important;

    gap: 24px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   BOTONES DERECHA
   ========================================================= */

.site-header .header-actions {
    width: auto !important;
    min-width: max-content !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    flex-wrap: nowrap !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 !important;
}

.site-header .header-actions .btn {
    width: auto !important;

    min-height: 44px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;

    padding: 0 16px !important;

    white-space: nowrap !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .site-header .header-inner {
        grid-template-columns:
            270px
            1fr
            auto !important;

        gap: 15px !important;
    }

    .site-header .brand img {
        width: 255px !important;
    }

    .site-header .main-nav {
        gap: 14px !important;
        font-size: 12px !important;
    }

    .site-header .header-actions .btn {
        padding: 0 11px !important;
        font-size: 12px !important;
    }

}


/* =========================================================
   CELULARES
   2 BLOQUES ARRIBA + MENU ABAJO
   ========================================================= */

@media (max-width: 768px) {

    .site-header .header-inner {
        width: calc(100% - 20px) !important;

        grid-template-columns:
            minmax(0, 1fr)
            auto !important;

        grid-template-areas:
            "logo actions"
            "menu menu" !important;

        gap: 8px 10px !important;

        min-height: auto !important;

        padding: 9px 0 !important;
    }


    /* Logo - bloque izquierdo */

    .site-header .brand {
        grid-area: logo !important;

        min-width: 0 !important;

        justify-content: flex-start !important;
    }

    .site-header .brand img {
        width: 210px !important;
        max-width: 100% !important;

        max-height: 58px !important;
    }


    /* Botones - bloque derecho */

    .site-header .header-actions {
        grid-area: actions !important;

        min-width: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;
        justify-content: center !important;

        gap: 5px !important;
    }

    .site-header .header-actions .btn {
        min-height: 34px !important;

        padding: 0 10px !important;

        font-size: 10px !important;

        border-radius: 8px !important;
    }


    /*
     * Mostrar los DOS botones.
     * Esto anula la regla vieja que ocultaba
     * Iniciar sesión en celulares.
     */

    .site-header .header-actions .btn-outline {
        display: inline-flex !important;
    }


    /* Menu debajo */

    .site-header .main-nav {
        grid-area: menu !important;

        width: 100% !important;

        display: flex !important;

        justify-content: center !important;

        flex-wrap: wrap !important;

        gap: 6px 18px !important;

        padding: 6px 0 2px !important;

        font-size: 12px !important;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {

    .site-header .header-inner {
        width: calc(100% - 14px) !important;

        grid-template-columns:
            minmax(0, 1fr)
            125px !important;

        gap: 7px !important;
    }

    .site-header .brand img {
        width: 185px !important;
        max-height: 52px !important;
    }

    .site-header .header-actions {
        width: 125px !important;
    }

    .site-header .header-actions .btn {
        width: 100% !important;

        min-height: 32px !important;

        padding: 0 5px !important;

        font-size: 9px !important;
    }

    .site-header .main-nav {
        gap: 5px 12px !important;

        font-size: 11px !important;
    }

}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 360px) {

    .site-header .header-inner {
        grid-template-columns:
            minmax(0, 1fr)
            112px !important;
    }

    .site-header .brand img {
        width: 160px !important;
    }

    .site-header .header-actions {
        width: 112px !important;
    }

    .site-header .header-actions .btn {
        font-size: 8px !important;
        padding: 0 4px !important;
    }

    .site-header .main-nav {
        gap: 5px 9px !important;
        font-size: 10px !important;
    }

}

/* =========================================================
   HN - HERO PRINCIPAL POSICION FINAL
   ========================================================= */

.hero {
    position: relative !important;
    overflow: hidden !important;
}

.hero .hero-grid {
    position: relative !important;

    width: min(1180px, calc(100% - 32px)) !important;
    min-height: 520px !important;

    margin: 0 auto !important;
    padding: 55px 0 !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, .95fr) !important;

    align-items: center !important;

    gap: 65px !important;
}


/* =========================================================
   BLOQUE IZQUIERDO
   ========================================================= */

.hero .hero-copy {
    width: 100% !important;
    max-width: 650px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    text-align: left !important;

    margin: 0 !important;
    padding: 0 !important;
}

.hero .eyebrow {
    display: block !important;

    margin: 0 0 16px !important;

    color: #ffffff !important;

    font-size: 13px !important;
    line-height: 1.3 !important;

    font-weight: 900 !important;

    letter-spacing: .13em !important;
}


/* TITULO */

.hero .hero-title,
.hero .hero-copy h1 {
    display: block !important;

    width: 100% !important;

    margin:
        0
        0
        22px
        0 !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size:
        clamp(
            46px,
            5vw,
            72px
        ) !important;

    line-height: 1.02 !important;

    letter-spacing: -.04em !important;

    font-weight: 900 !important;
}

.hero .hero-title span,
.hero .hero-copy h1 span {
    display: block !important;

    margin-top: 5px !important;

    color: #ffffff !important;
}


/* DESCRIPCION */

.hero .hero-copy p {
    display: block !important;

    width: 100% !important;
    max-width: 610px !important;

    margin: 0 !important;

    color: rgba(
        255,
        255,
        255,
        .90
    ) !important;

    font-size: 18px !important;
    line-height: 1.65 !important;
}


/* BOTONES */

.hero .hero-buttons {
    width: 100% !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: flex-start !important;

    flex-wrap: wrap !important;

    gap: 12px !important;

    margin-top: 30px !important;
}

.hero .hero-buttons .btn {
    width: auto !important;

    min-width: 145px !important;
    min-height: 46px !important;

    margin: 0 !important;

    padding: 0 20px !important;
}


/* =========================================================
   BLOQUE DERECHO
   ========================================================= */

.hero .hero-visual {
    position: relative !important;

    width: 100% !important;
    min-width: 0 !important;

    height: 390px !important;
    min-height: 390px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* ORBITAS */

.hero .orbit-one {
    position: absolute !important;

    width: 340px !important;
    height: 340px !important;

    left: 50% !important;
    top: 50% !important;

    transform:
        translate(
            -50%,
            -50%
        ) !important;
}

.hero .orbit-two {
    position: absolute !important;

    width: 245px !important;
    height: 245px !important;

    left: 50% !important;
    top: 50% !important;

    transform:
        translate(
            -50%,
            -50%
        ) !important;
}


/* TARJETA HENRY NETWORK */

.hero .router-card {
    position: absolute !important;

    left: 20px !important;
    top: 85px !important;

    width: 270px !important;
    min-height: 120px !important;

    margin: 0 !important;

    padding: 20px !important;

    display: flex !important;

    align-items: center !important;

    gap: 15px !important;

    border-radius: 20px !important;
}

.hero .router-card > div:last-child {
    display: flex !important;
    flex-direction: column !important;

    gap: 3px !important;
}

.hero .router-card strong {
    display: block !important;

    margin: 0 !important;

    color: #ffffff !important;

    font-size: 17px !important;

    line-height: 1.3 !important;
}

.hero .router-card span {
    display: block !important;

    margin: 0 !important;

    color: rgba(
        255,
        255,
        255,
        .80
    ) !important;

    font-size: 13px !important;
}


/* CUADRO H */

.hero .router-icon {
    flex:
        0
        0
        62px !important;

    width: 62px !important;
    height: 62px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 16px !important;

    font-size: 32px !important;
}


/* TARJETA VELOCIDAD */

.hero .speed-card {
    position: absolute !important;

    right: 15px !important;
    bottom: 65px !important;

    width: 250px !important;

    margin: 0 !important;

    padding: 20px !important;

    border-radius: 18px !important;
}

.hero .speed-card span,
.hero .speed-card strong,
.hero .speed-card small {
    display: block !important;

    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero .speed-card span {
    margin-bottom: 6px !important;

    font-size: 13px !important;
}

.hero .speed-card strong {
    margin-bottom: 5px !important;

    font-size: 25px !important;
    line-height: 1.2 !important;
}

.hero .speed-card small {
    font-size: 12px !important;
    line-height: 1.4 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, .85fr)
            !important;

        gap: 30px !important;
    }

    .hero .hero-copy h1,
    .hero .hero-title {
        font-size: 50px !important;
    }

    .hero .hero-visual {
        height: 350px !important;
        min-height: 350px !important;
    }

    .hero .router-card {
        left: 0 !important;
        width: 240px !important;
    }

    .hero .speed-card {
        right: 0 !important;
        width: 220px !important;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 768px) {

    .hero .hero-grid {
        width:
            calc(
                100% - 24px
            ) !important;

        min-height: auto !important;

        grid-template-columns:
            1fr !important;

        gap: 25px !important;

        padding:
            45px
            0
            35px !important;
    }


    /* Texto centrado */

    .hero .hero-copy {
        width: 100% !important;

        max-width: 100% !important;

        align-items: center !important;

        text-align: center !important;
    }

    .hero .eyebrow {
        text-align: center !important;
    }

    .hero .hero-copy h1,
    .hero .hero-title {
        max-width: 100% !important;

        margin-bottom:
            18px !important;

        text-align: center !important;

        font-size:
            clamp(
                38px,
                11vw,
                50px
            ) !important;
    }

    .hero .hero-copy h1 span,
    .hero .hero-title span {
        margin-top:
            3px !important;
    }

    .hero .hero-copy p {
        max-width:
            520px !important;

        margin:
            0
            auto !important;

        text-align:
            center !important;

        font-size:
            16px !important;
    }


    /* Botones */

    .hero .hero-buttons {
        justify-content:
            center !important;

        margin-top:
            24px !important;
    }

    .hero .hero-buttons .btn {
        flex:
            1
            1
            140px !important;

        max-width:
            190px !important;
    }


    /* Visual */

    .hero .hero-visual {
        width: 100% !important;

        height: 300px !important;
        min-height: 300px !important;

        margin:
            0
            auto !important;
    }

    .hero .orbit-one {
        width:
            280px !important;

        height:
            280px !important;
    }

    .hero .orbit-two {
        width:
            205px !important;

        height:
            205px !important;
    }


    /*
     * Dos tarjetas ordenadas.
     */

    .hero .router-card {
        left:
            3% !important;

        top:
            55px !important;

        width:
            min(
                245px,
                70%
            ) !important;

        min-height:
            105px !important;

        padding:
            15px !important;
    }

    .hero .speed-card {
        right:
            3% !important;

        bottom:
            35px !important;

        width:
            min(
                220px,
                65%
            ) !important;

        padding:
            15px !important;
    }

}


/* =========================================================
   CELULAR PEQUEÑO
   ========================================================= */

@media (max-width: 480px) {

    .hero .hero-grid {
        width:
            calc(
                100% - 18px
            ) !important;

        padding-top:
            36px !important;
    }

    .hero .hero-copy h1,
    .hero .hero-title {
        font-size:
            clamp(
                34px,
                10vw,
                42px
            ) !important;
    }

    .hero .hero-copy p {
        font-size:
            15px !important;
    }

    .hero .hero-buttons {
        display:
            grid !important;

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            ) !important;

        width:
            100% !important;

        gap:
            8px !important;
    }

    .hero .hero-buttons .btn {
        width:
            100% !important;

        min-width:
            0 !important;

        max-width:
            none !important;

        padding:
            0
            8px !important;

        font-size:
            12px !important;
    }


    /*
     * Mantener las dos tarjetas,
     * pero sin superponerlas.
     */

    .hero .hero-visual {
        height:
            280px !important;

        min-height:
            280px !important;
    }

    .hero .router-card {
        left:
            0 !important;

        top:
            45px !important;

        width:
            70% !important;
    }

    .hero .speed-card {
        right:
            0 !important;

        bottom:
            25px !important;

        width:
            65% !important;
    }

    .hero .router-icon {
        flex-basis:
            52px !important;

        width:
            52px !important;

        height:
            52px !important;

        font-size:
            27px !important;
    }

    .hero .router-card strong {
        font-size:
            14px !important;
    }

    .hero .router-card span {
        font-size:
            11px !important;
    }

    .hero .speed-card strong {
        font-size:
            19px !important;
    }

}


/* =========================================================
   TELEFONOS MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 360px) {

    .hero .hero-copy h1,
    .hero .hero-title {
        font-size:
            32px !important;
    }

    .hero .hero-buttons {
        grid-template-columns:
            1fr !important;
    }

    .hero .hero-visual {
        height:
            300px !important;

        min-height:
            300px !important;
    }

    .hero .router-card {
        width:
            78% !important;
    }

    .hero .speed-card {
        width:
            72% !important;
    }

}

/* =========================================================
   HN - MENU ACCIONES MOVIL
   ========================================================= */

.mobile-actions-menu {
    display: none;
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 768px) {

    /*
     * Ocultar los dos botones normales.
     */
    .site-header .header-actions {
        display: none !important;
    }


    /*
     * Header:
     * Logo izquierda / botón menú derecha.
     */
    .site-header .header-inner {
        grid-template-columns:
            minmax(0, 1fr)
            auto !important;

        grid-template-areas:
            "logo mobilemenu"
            "menu menu" !important;
    }


    /* ---------- BOTON DESPLEGABLE ---------- */

    .mobile-actions-menu {
        grid-area: mobilemenu;

        position: relative;

        display: block !important;

        margin: 0;
        padding: 0;
    }

    .mobile-actions-menu summary {
        list-style: none;

        min-width: 105px;
        min-height: 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 8px;

        padding: 0 14px;

        border: 1px solid rgba(255,255,255,.55);
        border-radius: 9px;

        background: #1464e8;

        color: #ffffff;

        font-size: 12px;
        font-weight: 800;

        cursor: pointer;

        user-select: none;
    }

    .mobile-actions-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu-arrow {
        display: inline-block;

        font-size: 17px;
        line-height: 1;

        transition: transform .2s ease;
    }

    .mobile-actions-menu[open]
    .mobile-menu-arrow {
        transform: rotate(180deg);
    }


    /* ---------- CONTENIDO DEL MENU ---------- */

    .mobile-actions-dropdown {
        position: absolute;

        top: calc(100% + 8px);
        right: 0;

        z-index: 2000;

        width: 205px;

        padding: 8px;

        border:
            1px solid
            rgba(255,255,255,.12);

        border-radius: 12px;

        background: #0d2746;

        box-shadow:
            0 16px 38px
            rgba(0,0,0,.28);
    }

    .mobile-action-link {
        width: 100%;
        min-height: 43px;

        display: flex;
        align-items: center;

        padding: 0 13px;

        border-radius: 8px;

        color: #d7e6fb !important;

        font-size: 13px;
        font-weight: 700;

        text-align: left;
    }

    .mobile-action-link:hover {
        background:
            rgba(255,255,255,.08);
        color: #ffffff !important;
    }

    .mobile-action-primary {
        margin-top: 5px;

        background: #1464e8;

        color: #ffffff !important;
    }

    .mobile-action-primary:hover {
        background: #2d7cf0;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {

    .mobile-actions-menu summary {
        min-width: 92px;
        min-height: 38px;

        padding: 0 11px;

        font-size: 11px;
    }

    .mobile-actions-dropdown {
        width: 190px;
    }

}


/* =========================================================
   PC / TABLET GRANDE
   ========================================================= */

@media (min-width: 769px) {

    .mobile-actions-menu {
        display: none !important;
    }

    .site-header .header-actions {
        display: flex !important;
    }

}

/* =========================================================
   HN - DESCARGA APP
   ========================================================= */

.app-download-section {
    background: #ffffff;
}

.app-download-card {
    position: relative;
    overflow: hidden;

    min-height: 260px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(330px, .75fr);

    align-items: center;

    gap: 50px;

    padding: 45px 50px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #0d2746 0%,
            #0c3c79 55%,
            #1464e8 100%
        );

    box-shadow:
        0 20px 50px
        rgba(13,39,70,.16);
}

.app-download-card::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    top: -110px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.16);
}

.app-download-copy {
    position: relative;
    z-index: 2;
}

.app-download-copy .section-kicker {
    color: #7fc2ff;
}

.app-download-copy h2 {
    margin: 9px 0 14px;

    color: #ffffff;

    font-size:
        clamp(
            32px,
            4vw,
            46px
        );

    line-height: 1.08;

    letter-spacing: -.03em;
}

.app-download-copy p {
    max-width: 560px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .82
        );

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   STORE BADGES
   ========================================================= */

.app-store-area {
    position: relative;
    z-index: 2;
}

.app-coming-soon {
    margin: 0 0 12px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    text-align: center;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .1em;
}

.app-store-buttons {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    align-items: start;

    gap: 12px;
}

.app-store-item {
    min-width: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;
}

.app-store-item img {
    display: block;

    width: 100%;
    max-width: 180px;

    height: 54px;

    object-fit: contain;

    /*
     * No alterar el artwork oficial.
     */
    filter: none !important;
}

.app-store-item span {
    color:
        rgba(
            255,
            255,
            255,
            .62
        );

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .app-download-card {
        grid-template-columns:
            1fr;

        gap: 30px;

        padding:
            38px
            30px;

        text-align: center;
    }

    .app-download-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .app-store-buttons {
        width: min(
            400px,
            100%
        );

        margin: 0 auto;
    }

}


/* =========================================================
   CELULAR - 2 BLOQUES
   ========================================================= */

@media (max-width: 600px) {

    .app-download-card {
        padding:
            30px
            16px;

        border-radius: 18px;
    }

    .app-download-copy h2 {
        font-size: 30px;
    }

    .app-download-copy p {
        font-size: 14px;
    }

    .app-store-buttons {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 8px;
    }

    .app-store-item img {
        width: 100%;
        max-width: 155px;
        height: 48px;
    }

    .app-store-item span {
        font-size: 9px;
    }

}


/* =========================================================
   CELULAR MUY PEQUEÑO
   ========================================================= */

@media (max-width: 360px) {

    .app-store-buttons {
        grid-template-columns: 1fr;
    }

    .app-store-item img {
        max-width: 170px;
        height: 52px;
    }

}

/* =========================================================
   HN - APP STORE BADGES MISMO TAMAÑO
   ========================================================= */

.app-store-buttons {
    align-items: stretch !important;
}

.app-store-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/*
 * Ambos logos ocupan exactamente
 * la misma caja visual.
 */
.app-store-item img {
    display: block !important;

    width: 170px !important;
    height: 52px !important;

    max-width: 170px !important;
    min-width: 170px !important;

    max-height: 52px !important;
    min-height: 52px !important;

    object-fit: contain !important;

    margin: 0 auto !important;

    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;

    box-shadow: none !important;

    filter: none !important;
}


/* TABLET */

@media (max-width: 900px) {

    .app-store-item img {
        width: 165px !important;
        height: 50px !important;

        max-width: 165px !important;
        min-width: 165px !important;

        max-height: 50px !important;
        min-height: 50px !important;
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .app-store-item img {
        width: 145px !important;
        height: 44px !important;

        max-width: 145px !important;
        min-width: 145px !important;

        max-height: 44px !important;
        min-height: 44px !important;
    }

}


/* CELULAR PEQUEÑO */

@media (max-width: 380px) {

    .app-store-item img {
        width: 135px !important;
        height: 41px !important;

        max-width: 135px !important;
        min-width: 135px !important;

        max-height: 41px !important;
        min-height: 41px !important;
    }

}

/* =========================================================
   HN - APP BADGES MISMO TAMAÑO VISUAL
   ========================================================= */

.app-store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.app-store-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-store-item img {
    display: block !important;
    width: 190px !important;
    height: 60px !important;
    max-width: 190px !important;
    max-height: 60px !important;
    min-width: 190px !important;
    min-height: 60px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

/* Google Play trae más espacio interno:
   lo ampliamos un poco para que se vea igual */
.app-store-item img[src*="google-play"] {
    transform: scale(1.12);
    transform-origin: center;
}

/* App Store queda normal */
.app-store-item img[src*="app-store"] {
    transform: scale(1);
    transform-origin: center;
}

/* TABLET */
@media (max-width: 768px) {
    .app-store-item img {
        width: 170px !important;
        height: 54px !important;
        max-width: 170px !important;
        max-height: 54px !important;
        min-width: 170px !important;
        min-height: 54px !important;
    }
}

/* CELULAR */
@media (max-width: 480px) {
    .app-store-item img {
        width: 150px !important;
        height: 48px !important;
        max-width: 150px !important;
        max-height: 48px !important;
        min-width: 150px !important;
        min-height: 48px !important;
    }

    .app-store-buttons {
        gap: 10px;
    }
}

/* =========================================================
   HN - SOLO APP STORE MAS PEQUENO
   NO TOCAR GOOGLE PLAY
   ========================================================= */

.app-store-item img[src*="app-store"] {
    transform: scale(.86) !important;
    transform-origin: center !important;
}

/* TABLET */
@media (max-width: 768px) {
    .app-store-item img[src*="app-store"] {
        transform: scale(.84) !important;
    }
}

/* CELULAR */
@media (max-width: 480px) {
    .app-store-item img[src*="app-store"] {
        transform: scale(.82) !important;
    }
}

/* =========================================================
   HN - SOLO GOOGLE PLAY MUCHO MAS GRANDE
   NO TOCAR APP STORE
   ========================================================= */

.app-store-item img[src*="google-play"] {
    transform: scale(1.45) !important;
    transform-origin: center !important;
}

/* TABLET */
@media (max-width: 768px) {
    .app-store-item img[src*="google-play"] {
        transform: scale(1.38) !important;
    }
}

/* CELULAR */
@media (max-width: 480px) {
    .app-store-item img[src*="google-play"] {
        transform: scale(1.30) !important;
    }
}

/* =========================================================
   HN - SOLO APP STORE MAS GRANDE
   NO TOCAR GOOGLE PLAY
   ========================================================= */

.app-store-item img[src*="app-store"] {
    transform: scale(1.08) !important;
    transform-origin: center !important;
}

/* TABLET */
@media (max-width: 768px) {
    .app-store-item img[src*="app-store"] {
        transform: scale(1.05) !important;
    }
}

/* CELULAR */
@media (max-width: 480px) {
    .app-store-item img[src*="app-store"] {
        transform: scale(1.02) !important;
    }
}

/* =========================================================
   HN - SOLO APP STORE MAS PEQUENO
   NO TOCAR GOOGLE PLAY
   ========================================================= */

.app-store-item img[src*="app-store"] {
    transform: scale(.90) !important;
    transform-origin: center !important;
}

/* TABLET */
@media (max-width: 768px) {
    .app-store-item img[src*="app-store"] {
        transform: scale(.88) !important;
    }
}

/* CELULAR */
@media (max-width: 480px) {
    .app-store-item img[src*="app-store"] {
        transform: scale(.86) !important;
    }
}

/* =========================================================
   HN - SOLO APP STORE MUCHO MAS PEQUENO
   GOOGLE PLAY NO SE TOCA
   ========================================================= */

.app-store-item img[src*="app-store"] {
    transform: scale(.68) !important;
    transform-origin: center !important;
}

@media (max-width: 768px) {
    .app-store-item img[src*="app-store"] {
        transform: scale(.64) !important;
    }
}

@media (max-width: 480px) {
    .app-store-item img[src*="app-store"] {
        transform: scale(.60) !important;
    }
}

/* =========================================================
   HN - AJUSTE FINAL BOTONES PLAY STORE / APP STORE
   ========================================================= */

.app-store-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
    margin-top: 18px !important;
}

.app-store-item,
.app-store-buttons a,
.app-store-buttons .app-store-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;

    height: 82px !important;
    min-height: 82px !important;
    max-height: 82px !important;

    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.app-store-item img,
.app-store-buttons a img,
.app-store-buttons .app-store-item img {
    display: block !important;

    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;

    height: 82px !important;
    min-height: 82px !important;
    max-height: 82px !important;

    object-fit: fill !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 14px !important;
}

@media (max-width: 768px) {
    .app-store-buttons {
        gap: 14px !important;
    }

    .app-store-item,
    .app-store-buttons a,
    .app-store-buttons .app-store-item,
    .app-store-item img,
    .app-store-buttons a img,
    .app-store-buttons .app-store-item img {
        width: 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;

        height: 72px !important;
        min-height: 72px !important;
        max-height: 72px !important;
    }
}

@media (max-width: 520px) {
    .app-store-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    .app-store-item,
    .app-store-buttons a,
    .app-store-buttons .app-store-item,
    .app-store-item img,
    .app-store-buttons a img,
    .app-store-buttons .app-store-item img {
        width: 230px !important;
        min-width: 230px !important;
        max-width: 230px !important;

        height: 74px !important;
        min-height: 74px !important;
        max-height: 74px !important;
    }
}

/* =========================================================
   HN - APP STORES SIEMPRE EN 2 BLOQUES
   ========================================================= */

.app-store-buttons {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 14px !important;

    align-items: center !important;
    justify-items: center !important;

    width: 100% !important;
}

.app-store-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* CELULAR */
@media (max-width: 520px) {

    .app-store-buttons {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 8px !important;
    }

    .app-store-item {
        width: 100% !important;
        min-width: 0 !important;
    }

}

/* =========================================================
   HN - SOLO GOOGLE PLAY
   Igualar visualmente al tamaño de App Store
   APP STORE NO SE TOCA
   ========================================================= */

img.google-play-badge[src*="google-play"] {
    transform: scale(1.27) !important;
    transform-origin: center center !important;
}

/* Tablet */
@media (max-width: 768px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.27) !important;
    }
}

/* Celular */
@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.27) !important;
    }
}

/* HN - GOOGLE PLAY UN POCO MAS PEQUENO */

img.google-play-badge[src*="google-play"] {
    transform: scale(1.20) !important;
    transform-origin: center center !important;
}

@media (max-width: 768px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.20) !important;
    }
}

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.20) !important;
    }
}

/* HN - GOOGLE PLAY UN POCO MAS PEQUENO */

img.google-play-badge[src*="google-play"] {
    transform: scale(1.14) !important;
    transform-origin: center center !important;
}

@media (max-width: 768px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.14) !important;
    }
}

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.14) !important;
    }
}

/* HN - GOOGLE PLAY UN POCO MAS PEQUENO */

img.google-play-badge[src*="google-play"] {
    transform: scale(1.10) !important;
    transform-origin: center center !important;
}

@media (max-width: 768px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.10) !important;
    }
}

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.10) !important;
    }
}

/* HN - GOOGLE PLAY UN POCO MAS PEQUENO */

img.google-play-badge[src*="google-play"] {
    transform: scale(1.06) !important;
    transform-origin: center center !important;
}

@media (max-width: 768px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.06) !important;
    }
}

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.06) !important;
    }
}

/* HN - GOOGLE PLAY UN POCO MAS PEQUENO */

img.google-play-badge[src*="google-play"] {
    transform: scale(1.03) !important;
    transform-origin: center center !important;
}

@media (max-width: 768px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.03) !important;
    }
}

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.03) !important;
    }
}

/* HN - GOOGLE PLAY UN POCO MAS PEQUENO */

img.google-play-badge[src*="google-play"] {
    transform: scale(1.00) !important;
    transform-origin: center center !important;
}

@media (max-width: 768px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.00) !important;
    }
}

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(1.00) !important;
    }
}

/* HN - SOLO GOOGLE PLAY MAS PEQUENO EN CELULAR */

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(.94) !important;
        transform-origin: center center !important;
    }
}

/* HN - SOLO GOOGLE PLAY MAS PEQUENO EN CELULAR */

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        transform: scale(.90) !important;
        transform-origin: center center !important;
    }
}

/* HN - SOLO GOOGLE PLAY MAS ESTRECHA EN CELULAR */

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        width: 92% !important;
        max-width: 92% !important;
        min-width: 0 !important;

        transform: scale(.90) !important;
        transform-origin: center center !important;
    }
}

/* SOLO GOOGLE PLAY MAS ESTRECHA EN CELULAR */

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        width: 88% !important;
        max-width: 88% !important;
        min-width: 0 !important;

        transform: scale(.90) !important;
        transform-origin: center center !important;
    }
}

/* SOLO GOOGLE PLAY AUN MAS ESTRECHA EN CELULAR */

@media (max-width: 480px) {
    img.google-play-badge[src*="google-play"] {
        width: 84% !important;
        max-width: 84% !important;
        min-width: 0 !important;

        transform: scale(.90) !important;
        transform-origin: center center !important;
    }
}

/* SOLO GOOGLE PLAY MAS ESTRECHA EN WEB / PC */

@media (min-width: 769px) {
    img.google-play-badge[src*="google-play"] {
        width: 94% !important;
        max-width: 94% !important;
        min-width: 0 !important;

        transform: scale(1.00) !important;
        transform-origin: center center !important;
    }
}

/* SOLO GOOGLE PLAY MAS ESTRECHA EN WEB / PC */

@media (min-width: 769px) {
    img.google-play-badge[src*="google-play"] {
        width: 90% !important;
        max-width: 90% !important;
        min-width: 0 !important;

        transform: scale(1.00) !important;
        transform-origin: center center !important;
    }
}

/* SOLO GOOGLE PLAY MAS ESTRECHA EN WEB / PC */

@media (min-width: 769px) {
    img.google-play-badge[src*="google-play"] {
        width: 86% !important;
        max-width: 86% !important;
        min-width: 0 !important;

        transform: scale(1.00) !important;
        transform-origin: center center !important;
    }
}

/* =========================================================
   HN - LOGO SUPERIOR MAS GRANDE
   SOLO HEADER
   ========================================================= */

/* PC */
@media (min-width: 769px) {

    .site-header .header-inner {
        grid-template-columns:
            430px
            minmax(280px, 1fr)
            auto !important;
    }

    .site-header .brand img {
        width: 410px !important;
        max-width: 410px !important;
        max-height: 92px !important;

        height: auto !important;
        object-fit: contain !important;
        object-position: left center !important;

        margin: 0 !important;
        padding: 0 !important;

        background: transparent !important;
        box-shadow: none !important;
        filter: none !important;
    }

    .site-header .header-inner {
        min-height: 104px !important;
    }
}


/* CELULAR */
@media (max-width: 768px) {

    .site-header .brand img {
        width: 285px !important;
        max-width: 100% !important;
        max-height: 76px !important;

        height: auto !important;
        object-fit: contain !important;
        object-position: left center !important;

        margin: 0 !important;
        padding: 0 !important;
    }

}


/* CELULAR PEQUEÑO */
@media (max-width: 480px) {

    .site-header .brand img {
        width: 245px !important;
        max-height: 68px !important;
    }

}


/* CELULAR MUY PEQUEÑO */
@media (max-width: 360px) {

    .site-header .brand img {
        width: 210px !important;
        max-height: 60px !important;
    }

}

/* =========================================================
   HN - FOOTER LOGO + SLOGAN CENTRADOS
   ========================================================= */

.site-footer .footer-grid > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
}

.site-footer .footer-logo {
    display: block !important;

    margin:
        0
        auto
        12px !important;

    width: 320px !important;
    max-width: 100% !important;
    height: auto !important;

    object-fit: contain !important;
}

.site-footer .footer-grid > div:first-child p {
    margin: 0 !important;

    text-align: center !important;

    color: #d7e6fb !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    line-height: 1.4 !important;
}


/* CELULAR */

@media (max-width: 768px) {

    .site-footer .footer-logo {
        width: 260px !important;
    }

    .site-footer .footer-grid > div:first-child p {
        font-size: 14px !important;
    }

}

/* =========================================================
   HN - LOGO FOOTER MUCHO MAS GRANDE
   SOLO ABAJO
   ========================================================= */

.site-footer .footer-logo {
    width: 430px !important;
    max-width: 100% !important;
    height: auto !important;

    margin:
        0
        auto
        14px !important;

    object-fit: contain !important;
}

/* TABLET */
@media (max-width: 900px) {
    .site-footer .footer-logo {
        width: 360px !important;
    }
}

/* CELULAR */
@media (max-width: 768px) {
    .site-footer .footer-logo {
        width: 310px !important;
    }
}

/* CELULAR PEQUEÑO */
@media (max-width: 480px) {
    .site-footer .footer-logo {
        width: 270px !important;
    }
}

/* =========================================================
   HN - MENU PRINCIPAL CENTRADO
   ========================================================= */

.site-header .main-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 28px !important;

    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;

    text-align: center !important;
}

.site-header .main-nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;

    text-align: center !important;
}


/* TABLET */
@media (max-width: 1024px) {
    .site-header .main-nav {
        gap: 18px !important;
    }
}


/* CELULAR */
@media (max-width: 768px) {
    .site-header .main-nav {
        width: 100% !important;

        display: grid !important;

        grid-template-columns:
            repeat(4, auto) !important;

        justify-content: center !important;
        align-items: center !important;

        gap: 8px 16px !important;

        margin: 0 auto !important;
        padding: 7px 0 2px !important;
    }

    .site-header .main-nav a {
        justify-content: center !important;
        text-align: center !important;
    }
}


/* CELULAR PEQUEÑO */
@media (max-width: 480px) {
    .site-header .main-nav {
        grid-template-columns:
            repeat(4, auto) !important;

        gap: 6px 10px !important;

        font-size: 11px !important;
    }
}


/* CELULAR MUY PEQUEÑO */
@media (max-width: 360px) {
    .site-header .main-nav {
        grid-template-columns:
            repeat(2, auto) !important;

        gap: 6px 18px !important;
    }
}


/* =========================================================
   HN-PUBLIC-CONTACT-CSS-V1
   ========================================================= */

.support-contact-panel {
    margin-top: 34px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow:
        0 18px 45px rgba(13, 39, 70, .07);
}

.support-contact-head {
    max-width: 720px;
    margin-bottom: 26px;
}

.support-contact-head h3 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: 28px;
}

.support-contact-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.support-contact-info {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.support-contact-item {
    min-height: 118px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: #f7faff;
    border: 1px solid #e2eaf4;
    border-radius: 14px;
}

.support-contact-item span {
    color: #71839a;
    font-size: 12px;
    font-weight: 700;
}

.support-contact-item strong,
.support-contact-item a {
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.support-contact-item a:hover {
    color: var(--blue);
}

.support-contact-item small {
    color: #61758d;
    line-height: 1.55;
}

.support-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hn-whatsapp-btn {
    color: #ffffff !important;
    background: #128c4a;
    border-color: #128c4a;
}

.hn-whatsapp-btn:hover {
    background: #0d783e;
}

.hn-contact-email-btn {
    color: var(--navy);
}

.site-footer .footer-grid {
    grid-template-columns:
        1.25fr .55fr .55fr 1fr;
}

.footer-contact .footer-hours {
    margin-top: 14px;
    color: #9fb4cf;
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 980px) {

    .support-contact-info {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .site-footer .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {

    .support-contact-panel {
        padding: 22px;
    }

    .support-contact-info,
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .support-contact-actions {
        flex-direction: column;
    }

    .support-contact-actions .btn {
        width: 100%;
    }
}



/* =========================================================
   HN-PUBLIC-LEGAL-CSS-V1
   ========================================================= */

.legal-page {
    background: #f5f8fc;
}

.legal-header {
    background: #0d2746;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.legal-header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.legal-brand img {
    display: block;
    width: 260px;
    max-width: 100%;
}

.legal-header .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.45);
}

.legal-main {
    padding: 65px 0;
}

.legal-shell {
    max-width: 920px;
}

.legal-heading {
    margin-bottom: 28px;
}

.legal-heading h1 {
    margin: 8px 0;
    color: var(--navy);
    font-size: clamp(34px, 5vw, 52px);
}

.legal-heading p {
    color: var(--muted);
}

.legal-content {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow:
        0 20px 50px rgba(13,39,70,.07);
}

.legal-content h2 {
    margin: 32px 0 12px;
    color: var(--navy);
    font-size: 21px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: #536b84;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 7px;
}

.legal-nav {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.legal-nav a {
    color: var(--blue);
    font-weight: 800;
}

.legal-footer {
    padding: 28px 0;
    text-align: center;
    color: #9fb4cf;
    background: #0d2746;
}

.legal-footer p {
    margin: 6px 0;
}

.legal-footer a {
    color: #fff;
}

.footer-legal-links {
    padding: 18px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-legal-links a {
    color: #b9cce5;
    font-size: 12px;
    font-weight: 700;
}

.footer-legal-links a:hover {
    color: #fff;
}

@media (max-width: 680px) {

    .legal-header-inner {
        min-height: 78px;
    }

    .legal-brand img {
        width: 190px;
    }

    .legal-header .btn {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 11px;
    }

    .legal-main {
        padding: 42px 0;
    }

    .legal-content {
        padding: 24px;
    }

    .legal-nav {
        flex-direction: column;
    }
}


/* =========================================================
   HN-HIDE-CONTACT-BANNER-V1
   Oculta únicamente el banner Contacto directo
   ========================================================= */
.support-contact-panel {
    display: none !important;
}
