:root {
    --blue: #1f5ebc;
    --blue-dark: #123b7a;
    --blue-deep: #0e3270;
    --blue-soft: #e9f2ff;
    --green: #35b96f;
    --green-dark: #16884a;
    --white: #ffffff;
    --ink: #14213d;
    --muted: #64748b;
    --line: #dbe7f5;
    --soft: #f7fbff;
    --shadow: 0 24px 70px rgba(18, 59, 122, .16);
    --radius: 24px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(219, 231, 245, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 12px 36px rgba(18, 59, 122, .12);
}

.navbar {
    width: min(1180px, 92%);
    min-height: var(--header-height);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--blue-dark);
    white-space: nowrap;
}

.brand-icon {
    width: 300px;
    overflow: hidden;
}

.brand-icon img {
    width: 200px !important;
    height: auto;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: .95rem;
    font-weight: 700;
    color: #24334a;
}

.nav-links a {
    transition: color .25s ease, transform .25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--blue);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 13px 22px;
    border-radius: 999px;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 12px 30px rgba(31, 94, 188, .22);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--blue-soft);
    border-radius: 14px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue-dark);
    margin: 5px auto;
    border-radius: 99px;
}

.promotions-main {
    flex: 1 0 auto;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 6%, rgba(53, 185, 111, .13), transparent 24%),
        radial-gradient(circle at 92% 12%, rgba(31, 94, 188, .12), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #f7fbff 100%);
}

.promo-hero {
    position: relative;
    width: min(1180px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(58px, 8vw, 108px) 0 clamp(38px, 6vw, 78px);
}

.promo-hero::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: min(900px, 92vw);
    height: 280px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(31, 94, 188, .08);
    filter: blur(16px);
    pointer-events: none;
}

.promo-hero-content,
.promo-hero-card {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    background: rgba(53, 185, 111, .12);
    border: 1px solid rgba(53, 185, 111, .25);
    padding: 8px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.eyebrow img {
    width: 30px;
}

.promo-hero h1 {
    max-width: 760px;
    margin: 20px 0 20px;
    color: var(--blue-dark);
    font-size: clamp(2.55rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: -.07em;
    text-wrap: balance;
}

.promo-hero p {
    max-width: 650px;
    color: #30435f;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 500;
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 16px 36px rgba(31, 94, 188, .24);
}

.btn-secondary {
    color: var(--blue-dark);
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(18, 59, 122, .08);
}

.promo-hero-card {
    justify-self: end;
    width: min(100%, 440px);
    overflow: hidden;
    border-radius: 34px;
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(53, 185, 111, .56), transparent 30%),
        linear-gradient(145deg, rgba(31, 94, 188, .98), rgba(18, 59, 122, .98));
    box-shadow: 0 30px 80px rgba(18, 59, 122, .30);
}

.promo-hero-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    opacity: .92;
}

.promo-hero-card-body {
    padding: clamp(24px, 4vw, 34px);
}

.promo-hero-card span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #eafff3;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .20);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.promo-hero-card h2 {
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.promo-hero-card p {
    color: #e5efff;
    font-size: 1rem;
}

.section {
    width: min(1180px, 92%);
    margin: 90px auto;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading h2 {
    margin: 18px 0 14px;
    color: var(--blue-dark);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.04rem;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.promo-card {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(15, 23, 42, .06);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.promo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(53, 185, 111, .45);
    box-shadow: 0 24px 60px rgba(31, 94, 188, .12);
}

.promo-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: var(--blue-soft);
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.06);
}

.promo-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 10px 26px rgba(18, 59, 122, .22);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.promo-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.promo-card h3 {
    margin-bottom: 12px;
    color: var(--blue-dark);
    font-size: clamp(1.35rem, 2.1vw, 1.9rem);
    line-height: 1.14;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.promo-card p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 1rem;
}

.promo-list {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.promo-list li {
    display: flex;
    align-items: flex-start;
    list-style: none;
}

.promo-list li img {
    width: 22px;
    height: auto;
    max-width: 100%;
    margin-right: 5px;

}

.promo-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.promo-note {
    color: var(--blue-dark);
    font-size: .88rem;
    font-weight: 800;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--green));
    font-size: .9rem;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(31, 94, 188, .18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.promo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(31, 94, 188, .24);
}

.promo-info-band {
    width: min(1180px, 92%);
    margin: 96px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.promo-info-card {
    padding: 26px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(15, 23, 42, .05);
}

.promo-info-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-dark);
    font-size: 1.05rem;
    line-height: 1.25;
}

.promo-info-card p {
    margin: 0;
    color: var(--muted);
}

.cta-band {
    width: min(1180px, 92%);
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 48px;
    border-radius: 32px;
    color: var(--white);
    background:
        radial-gradient(circle at 95% 20%, rgba(53, 185, 111, .8), transparent 26%),
        linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 30px 80px rgba(18, 59, 122, .26);
}

.cta-band h2 {
    color: var(--white);
    margin: 8px 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.cta-band p {
    color: #dbeafe;
    margin: 0;
}

.eyebrow.light {
    color: #eafff3;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .22);
}

.btn-white {
    flex: 0 0 auto;
    color: var(--blue-dark);
    background: var(--white);
}

/* SELECTOR DE WHATSAPP POR SUCURSAL */
.whatsapp-modal,
.social-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.social-modal {
    z-index: 3100;
}

.whatsapp-modal.is-open,
.social-modal.is-open {
    display: flex;
}

.whatsapp-modal__overlay,
.social-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 15, 30, 0.135);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.whatsapp-modal__panel,
.social-modal__panel {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: min(92vh, 760px);
    overflow: auto;
    padding: clamp(24px, 4vw, 38px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 100% 0%, rgb(255, 255, 255), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(219, 231, 245, .92);
    box-shadow: 0 35px 95px rgba(18, 59, 122, .32);
    animation: modalIn .24s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-modal__close,
.social-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue-dark);
    background: var(--white);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(18, 59, 122, .10);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.whatsapp-modal__close:hover,
.social-modal__close:hover {
    transform: rotate(8deg);
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--green));
}

.whatsapp-modal__header,
.social-modal__header {
    padding-right: 46px;
}

.social-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--green-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.social-modal__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.whatsapp-modal h2,
.social-modal h2 {
    margin: 0 0 10px;
    color: var(--blue-dark);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.whatsapp-modal p,
.social-modal p {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
}

.whatsapp-branches,
.social-branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.whatsapp-branch-card,
.social-branch-card {
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
    padding: 24px;
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 96% 8%, rgba(53, 185, 111, .55), transparent 30%),
        linear-gradient(145deg, rgba(31, 94, 188, .97), rgba(18, 59, 122, .98));
    box-shadow: 0 22px 58px rgba(18, 59, 122, .22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-branch-card:hover,
.social-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 72px rgba(18, 59, 122, .30);
}

.whatsapp-branch-card::after {
    content: "Abrir WhatsApp";
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    margin-top: 8px;
    padding: 3px 14px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: var(--white);
    font-size: .86rem;
    font-weight: 800;
}

.whatsapp-branch-card__tag,
.social-branch-card__tag {
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    color: #eafff3;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .20);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.whatsapp-branch-card strong,
.social-branch-card strong {
    display: block;
    margin-top: 12px;
    color: var(--white);
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.whatsapp-branch-card span:not(.whatsapp-branch-card__tag),
.whatsapp-branch-card small,
.social-branch-card span:not(.social-branch-card__tag):not(.social-branch-card__button),
.social-branch-card small {
    color: #e5efff;
    font-weight: 600;
    line-height: 1.42;
}

.whatsapp-branch-card small,
.social-branch-card small {
    display: block;
    color: #dbeafe;
}

.social-branch-card__button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    margin-top: 8px;
    padding: 3px 14px;
    border-radius: 999px;
    color: var(--blue-dark);
    background: var(--white);
    font-size: .86rem;
    font-weight: 800;
}

body.modal-open {
    overflow: hidden;
}

/* FOOTER */
.footer.footer-advanced {
    flex: 0 0 auto;
    display: block;
    padding: 0;
    color: #dbeafe;
    background:
        radial-gradient(circle at 10% 8%, rgba(53, 185, 111, .20), transparent 24%),
        radial-gradient(circle at 92% 18%, rgba(31, 94, 188, .35), transparent 26%),
        linear-gradient(135deg, #0e3270 0%, #123b7a 54%, #0b2558 100%);
    border-top: 1px solid rgba(219, 231, 245, .16);
}

.footer-advanced .footer-container {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .85fr 1.15fr .9fr;
    gap: clamp(28px, 4vw, 52px);
    padding: clamp(52px, 7vw, 82px) 0 42px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    width: min(230px, 100%);
    margin-bottom: 22px;
    padding: 10px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-about p,
.footer-list a,
.footer-branch small,
.footer-bottom p {
    color: rgba(219, 234, 254, .84);
}

.footer-about p {
    max-width: 330px;
    margin-bottom: 24px;
    font-size: .98rem;
}

.footer-title {
    position: relative;
    margin: 0 0 22px;
    color: var(--white);
    font-size: 1.18rem;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.footer-title::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: color .25s ease, transform .25s ease;
}

.footer-list a::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--green);
    opacity: .9;
}

.footer-list a:hover,
.footer-branch a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-branches {
    display: grid;
    gap: 16px;
}

.footer-branch {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.footer-branch strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: .98rem;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--white) !important;
    background: white;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
    font-size: .86rem;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
}

.footer-cta-middle {
    margin: 0 8px;
}

.footer-cta img {
    width: 35px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.footer-bottom {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(219, 234, 254, .22);
}

.footer-bottom p {
    margin: 0;
    font-size: .9rem;
}

.footer-bottom a {
    color: var(--white);
    font-weight: 800;
}

@media (max-width: 1180px) {
    .navbar {
        width: min(100% - 32px, 1180px);
        gap: 16px;
    }

    .nav-links {
        gap: 18px;
    }

    .brand-icon {
        width: 240px;
    }

    .brand-icon img {
        width: 185px !important;
    }
}

@media (max-width: 1040px) {
    .footer-advanced .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .promotions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 72px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 4%;
        right: 4%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: rgba(255, 255, 255, .98);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 14px;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .promo-hero {
        grid-template-columns: 1fr;
    }

    .promo-hero-card {
        justify-self: stretch;
        width: 100%;
    }

    .promo-info-band {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-branches,
    .social-branches {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .footer-advanced .footer-container {
        grid-template-columns: 1fr;
        padding-top: 46px;
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-socials .footer-cta {
        width: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .brand {
        gap: 8px;
    }

    .brand-icon {
        width: 170px;
    }

    .brand-icon img {
        width: 160px !important;
        height: auto;
    }

    .promo-hero {
        padding-top: 50px;
        padding-bottom: 44px;
    }

    .promo-hero h1 {
        font-size: clamp(2.3rem, 13vw, 3rem);
    }

    .promo-actions,
    .promo-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .promo-link {
        width: 100%;
    }

    .section,
    .promo-info-band,
    .cta-band {
        margin: 66px auto;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promo-card-image {
        height: 220px;
    }

    .cta-band {
        padding: 30px 22px;
    }

    .whatsapp-modal,
    .social-modal {
        padding: 14px;
        align-items: flex-end;
    }

    .whatsapp-modal__panel,
    .social-modal__panel {
        width: 100%;
        max-height: 88vh;
        border-radius: 28px 28px 22px 22px;
    }

    .whatsapp-modal__header,
    .social-modal__header {
        padding-right: 42px;
    }

    .whatsapp-branch-card,
    .social-branch-card {
        min-height: 230px;
    }
}

/* EFECTO DE CARGA INICIAL / PRELOADER */
body.is-loading {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 18% 18%, rgba(53, 185, 111, .16), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(31, 94, 188, .16), transparent 32%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #e9f2ff 100%);
    transition: opacity .55s ease, visibility .55s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__card {
    width: min(360px, 92vw);
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 34px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(219, 231, 245, .92);
    box-shadow: 0 30px 80px rgba(18, 59, 122, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: loaderCardIn .55s ease both;
}

.site-loader__logo {
    width: min(220px, 70vw);
    padding: 10px 14px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 14px 32px rgba(18, 59, 122, .10);
}

.site-loader__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.site-loader__spinner {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background:
        conic-gradient(from 90deg, rgba(31, 94, 188, .10), var(--blue), var(--green), rgba(31, 94, 188, .10));
    animation: loaderSpin 1s linear infinite;
}

.site-loader__spinner::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: inset 0 0 0 1px rgba(219, 231, 245, .7);
}

.site-loader__text {
    margin: 0;
    color: var(--blue-dark);
    font-size: .98rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -.01em;
}

.site-loader__bar {
    position: relative;
    width: min(220px, 68vw);
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #dbe7f5;
}

.site-loader__bar::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--blue), var(--green));
    animation: loaderBar 1.25s ease-in-out infinite;
}

@keyframes loaderCardIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-110%);
    }

    55% {
        transform: translateX(72%);
    }

    100% {
        transform: translateX(240%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .site-loader__card,
    .site-loader__spinner,
    .site-loader__bar::before {
        animation: none;
    }
}