:root {
    --sky: #1877c9;
    --sky-strong: #0c5da7;
    --sky-soft: #e8f4ff;
    --ink: #17212b;
    --muted: #5f6d7a;
    --line: #dbe3ec;
    --surface: #ffffff;
    --canvas: #f4f7fb;
    --coral: #f15b4f;
    --coral-strong: #d7473d;
    --green: #138a62;
    --yellow: #f4c542;
    --shadow: 0 12px 28px rgba(23, 33, 43, .09);
    --shadow-soft: 0 5px 16px rgba(23, 33, 43, .07);
    --container: 1120px;
}

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

html {
    min-width: 320px;
    background: var(--canvas);
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--canvas);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--sky-strong);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--coral-strong);
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(24, 119, 201, .36);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 16px;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
}

h1 {
    font-size: 38px;
}

h2 {
    margin-top: 34px;
    font-size: 28px;
}

h3 {
    margin-top: 26px;
    font-size: 21px;
}

h4 {
    font-size: 17px;
}

p {
    margin: 0 0 17px;
}

ul,
ol {
    margin-top: 0;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    border-radius: 6px;
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container,
.site-header__inner,
.site-footer__inner,
.site-footer__bottom,
.home-section__inner {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 100;
    min-height: 72px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
}

.site-brand:hover {
    color: var(--ink);
}

.site-brand__mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: #fff;
    background: var(--sky);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
}

.site-brand__name {
    font-size: 21px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0;
}

.site-brand__name span {
    color: var(--sky);
}

.desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.nav-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    color: #3c4956;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav-link img {
    opacity: .72;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--sky-strong);
    background: var(--sky-soft);
}

.nav-link:hover img,
.nav-link.is-active img {
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: relative;
}

.mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--sky-soft);
    border-radius: 7px;
    cursor: pointer;
    list-style: none;
}

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

.mobile-menu__panel {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 32px));
    gap: 4px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mobile-menu__panel .nav-link {
    width: 100%;
}

#content {
    width: 100%;
    min-height: 55vh;
    padding: 44px 0 64px;
}

#content.home-main {
    padding: 0;
}

#content > .container > .row:first-child > [class*="col-"] > h1:first-of-type,
#content > .container > h1:first-of-type {
    max-width: 900px;
    margin: 0 auto 12px;
    text-align: center;
}

#content > .container > .row:first-child > [class*="col-"] > h1:first-of-type + p,
#content > .container > h1:first-of-type + p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: var(--muted);
    text-align: center;
    font-size: 18px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.row > [class*="col-"] {
    width: 100%;
    min-width: 0;
    padding: 8px;
}

.col-xs-6 {
    width: 50% !important;
}

.col-xs-12 {
    width: 100% !important;
}

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

.text-justify {
    text-align: left;
}

.hidden-xs {
    display: inline;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 6px 0 28px;
    padding: 11px 14px;
    color: var(--muted);
    background: #eef3f8;
    border: 1px solid var(--line);
    border-radius: 7px;
    font-size: 14px;
    list-style: none;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li + li::before {
    margin-right: 7px;
    color: #8b98a6;
    content: "/";
}

.breadcrumb a {
    font-weight: 700;
    text-decoration: none;
}

.breadcrumb .active {
    color: var(--muted);
}

.panel {
    width: 100%;
    margin: 12px 0 34px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.panel-heading {
    padding: 18px 22px;
    color: #fff;
    background: var(--sky-strong);
}

.panel-info .panel-heading,
.panel-default .panel-heading {
    color: var(--ink);
    background: #edf5fb;
}

.panel-title {
    margin: 0;
    color: inherit;
    font-size: 19px;
    text-align: center;
}

.panel-body {
    padding: 24px;
}

.panel-body form .row {
    align-items: center;
}

.input-group {
    display: flex;
    width: 100%;
    gap: 10px;
}

.form-control {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 12px 15px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #aebaca;
    border-radius: 7px;
    box-shadow: none;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--sky);
    outline: 3px solid rgba(24, 119, 201, .15);
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    color: #fff;
    background: var(--sky);
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(24, 119, 201, .16);
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.btn:hover {
    color: #fff;
    background: var(--sky-strong);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(24, 119, 201, .2);
}

.btn-block {
    width: 100%;
}

.btn-success {
    background: var(--green);
}

.btn-danger,
.btn-warning {
    background: var(--coral);
}

.btn-dark {
    background: var(--ink);
}

.btn-info,
.btn-primary {
    background: var(--sky);
}

.well,
.normas,
.presentacion {
    width: 100%;
    margin: 20px 0 28px;
    padding: 22px;
    background: #edf3f8;
    border: 1px solid var(--line);
    border-left: 4px solid var(--sky);
    border-radius: 7px;
}

.well ul,
.normas ul {
    margin-bottom: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled li {
    margin-bottom: 8px;
}

.thumbnail {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.thumbnail:hover {
    border-color: #bdd5e8;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.thumbnail > a {
    display: block;
    overflow: hidden;
    background: #e8eef4;
}

.thumbnail img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform .25s ease;
}

.thumbnail:hover img {
    transform: scale(1.025);
}

.caption {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 17px;
}

.caption h3 {
    margin: 0 0 9px;
    font-size: 19px;
}

.caption h3 a {
    color: var(--ink);
    text-decoration: none;
}

.caption p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.submenu-related-channel {
    margin: 38px 0 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--sky);
    font-size: 25px;
}

.alert {
    margin: 16px 0;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 7px;
}

.alert-success {
    color: #075a3c;
    background: #e5f7ef;
    border-color: #a9dfc8;
}

.alert-danger {
    color: #8d251f;
    background: #fff0ee;
    border-color: #f2b8b2;
}

.fa,
.glyphicon {
    display: none !important;
}

.home-hero {
    position: relative;
    display: flex;
    min-height: 610px;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background-color: #183347;
    background-image: url('/images/hero-chat-argentinos.webp');
    background-position: center;
    background-size: cover;
}

.home-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(10, 31, 46, .62);
    content: "";
}

.home-hero__inner {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
    padding: 66px 0;
}

.home-hero__content {
    width: min(660px, 100%);
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 10px;
    color: #092c47;
    background: #d9f0ff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 850;
}

.home-hero__eyebrow img {
    width: 17px;
    height: 17px;
}

.home-hero h1 {
    max-width: 650px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 52px;
}

.home-hero__lead {
    max-width: 600px;
    margin-bottom: 28px;
    color: #eef7ff;
    font-size: 20px;
    line-height: 1.55;
}

.hero-chat-form {
    display: flex;
    width: min(620px, 100%);
    gap: 10px;
    align-items: end;
}

.hero-chat-form__field {
    min-width: 0;
    flex: 1;
}

.hero-chat-form label {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.hero-chat-form input {
    width: 100%;
    min-height: 58px;
    padding: 0 17px;
    color: var(--ink);
    background: #fff;
    border: 2px solid transparent;
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.hero-chat-form input:focus {
    border-color: #8ed0ff;
    outline: 3px solid rgba(142, 208, 255, .34);
}

.hero-chat-form .btn {
    min-height: 58px;
    padding-inline: 24px;
    background: var(--coral);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

.hero-chat-form .btn:hover {
    background: var(--coral-strong);
}

.hero-chat-form .btn img {
    width: 19px;
    height: 19px;
    filter: brightness(0) invert(1);
}

.home-hero__note {
    margin: 12px 0 0;
    color: #dfeef8;
    font-size: 13px;
}

.trust-band {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.trust-band__inner {
    display: grid;
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    min-height: 94px;
    align-items: center;
    gap: 13px;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
}

.trust-item:first-child {
    border-left: 1px solid var(--line);
}

.trust-item img {
    width: 25px;
    height: 25px;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item span {
    color: var(--muted);
    font-size: 13px;
}

.home-section {
    padding: 72px 0;
}

.home-section--white {
    background: #fff;
}

.home-section--tint {
    background: #eef5fa;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.section-heading h2 {
    max-width: 650px;
    margin: 0;
    font-size: 34px;
}

.section-heading p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}

.home-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-card:hover {
    color: var(--ink);
    border-color: #aecde6;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.home-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-card__body {
    padding: 18px;
}

.home-card h3 {
    margin: 0 0 7px;
    font-size: 19px;
}

.home-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.province-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.province-links a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    color: var(--ink);
    background: #fff;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-weight: 750;
    text-decoration: none;
}

.province-links a::after {
    color: var(--sky);
    content: "→";
}

.province-links a:hover {
    color: var(--sky-strong);
    background: var(--sky-soft);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: start;
}

.editorial-grid h2 {
    margin-top: 0;
}

.conversation-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.conversation-list li {
    position: relative;
    margin-bottom: 14px;
    padding: 15px 16px 15px 44px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
}

.conversation-list li::before {
    position: absolute;
    top: 15px;
    left: 16px;
    color: var(--coral);
    font-weight: 900;
    content: "#";
}

.home-faq details {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.home-faq summary {
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
}

.home-faq details p {
    margin: 12px 0 0;
    color: var(--muted);
}

.site-footer {
    color: #d7e0e8;
    background: #17212b;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 52px;
    padding-top: 48px;
    padding-bottom: 38px;
}

.site-brand--footer {
    color: #fff;
}

.site-brand--footer:hover {
    color: #fff;
}

.footer-brand p {
    max-width: 440px;
    margin: 17px 0 0;
    color: #aebac5;
    font-size: 14px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h2 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
}

.footer-column a {
    color: #c8d3dc;
    font-size: 14px;
    text-decoration: none;
}

.footer-column a:hover {
    color: #8ed0ff;
}

.site-footer__bottom {
    padding-top: 17px;
    padding-bottom: 17px;
    color: #95a5b2;
    border-top: 1px solid #32404c;
    font-size: 13px;
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
}

@media (min-width: 768px) {
    .col-sm-3 { width: 25% !important; }
    .col-sm-4 { width: 33.333% !important; }
    .col-sm-6 { width: 50% !important; }
    .col-sm-8 { width: 66.666% !important; }
    .col-sm-12 { width: 100% !important; }
}

@media (min-width: 992px) {
    .col-md-3 { width: 25% !important; }
    .col-md-4 { width: 33.333% !important; }
    .col-md-8 { width: 66.666% !important; }
    .col-md-10 { width: 83.333% !important; }
    .col-md-12 { width: 100% !important; }
    .col-md-offset-1 { margin-left: 8.333%; }
    .col-md-offset-2 { margin-left: 16.666%; }
    .col-lg-12 { width: 100% !important; }
}

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

    .mobile-menu {
        display: block;
    }

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

    .province-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    .site-header,
    .site-header__inner {
        min-height: 64px;
    }

    .site-brand__mark {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .site-brand__name {
        font-size: 19px;
    }

    #content {
        padding: 26px 0 42px;
    }

    #content > .container > .row:first-child > [class*="col-"] > h1:first-of-type + p,
    #content > .container > h1:first-of-type + p {
        font-size: 16px;
    }

    .hidden-xs {
        display: none !important;
    }

    .col-xs-6 {
        width: 100% !important;
    }

    .panel-body {
        padding: 18px;
    }

    .input-group,
    .hero-chat-form {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero {
        min-height: 620px;
        background-position: 62% center;
    }

    .home-hero::before {
        background: rgba(10, 31, 46, .72);
    }

    .home-hero__inner {
        padding: 48px 0;
    }

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

    .home-hero__lead {
        font-size: 18px;
    }

    .hero-chat-form .btn {
        width: 100%;
    }

    .trust-band__inner {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child {
        min-height: 76px;
        padding: 15px 5px;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-section {
        padding: 48px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

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

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 24px;
        padding-top: 36px;
        padding-bottom: 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand .site-brand {
        justify-content: center;
    }

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .site-header__inner,
    .site-footer__inner,
    .site-footer__bottom,
    .home-section__inner,
    .home-hero__inner,
    .trust-band__inner {
        width: min(calc(100% - 24px), var(--container));
    }

    .home-hero h1 {
        font-size: 34px;
    }

    .home-card-grid,
    .province-links {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
