:root {
    --navy: #1b1e69;
    --navy-dark: #11144d;
    --red: #8b1c24;
    --red-hover: #6f151c;
    --gold: #f2c938;
    --gold-hover: #d8af22;
    --white: #fff;
    --ink: #181b31;
    --muted: #5f667d;
    --line: #e2e5f0;
    --soft-bg: #d3d7fa6e;
    --surface-gold: #fffdf0;
    --font-heading: "Cinzel", Georgia, serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --shadow-sm: 0 4px 12px rgba(27, 30, 105, 0.05);
    --shadow-md: 0 12px 32px rgba(27, 30, 105, 0.08);
    --shadow-lg: 0 24px 50px rgba(27, 30, 105, 0.14);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --container-width: 1200px;
    --nav-height: 84px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 20px);
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.nav-open {
    overflow: hidden;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}
button {
    cursor: pointer;
}
.container {
    width: min(var(--container-width), calc(100% - 40px));
    margin-inline: auto;
}
.muted {
    color: var(--muted);
}
h1,
h2,
h3,
h4 {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.15;
}
h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
}
h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.75rem);
    font-weight: 700;
}
h3 {
    font-size: 1.3rem;
    font-weight: 700;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--gold);
}
.eyebrow--light {
    color: var(--gold);
}
.eyebrow--light::before {
    background: var(--white);
}
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #cdefff;
    display: grid;
    place-items: center;
    transition:
        opacity 0.4s,
        visibility 0.4s;
}
.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-logo {
    width: 280px;
    height: 280px;
    animation: pulseScale 2.4s var(--ease-out) infinite alternate;
}
@keyframes pulseScale {
    from {
        transform: scale(0.68);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.site-header {
    position: relative;
    z-index: 1000;
}
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgb(255 255 255 / 0.94);
    border-bottom: 1px solid rgb(27 30 105 / 0.08);
    transition:
        height 0.3s var(--ease-out),
        box-shadow 0.3s,
        background 0.3s;
}
.site-nav.is-scrolled {
    --nav-height: 70px;
    background: rgb(255 255 255 / 0.98);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    width: min(var(--container-width), calc(100% - 40px));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    color: var(--navy);
    font-weight: 800;
}
.brand-logo {
    width: auto;
    height: 98px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: height 0.5s var(--ease-out);
}
.site-nav.is-scrolled .brand-logo {
    height: 62px;
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
}
.brand-text small {
    display: block;
    margin-top: 2px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
@media (max-width: 400px) {
    .brand-text {
        display: none;
    }
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-links > a:not(.btn) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.nav-links > a:not(.btn):hover {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-1px);
}
.nav-dropdown {
    position: relative;
}
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    background: #fff0;
    border: 0;
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}
.dropdown-toggle:hover,
.nav-dropdown.open .dropdown-toggle {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-1px);
}
.dropdown-arrow {
    display: inline-block;
    font-size: 0.7rem;
    line-height: 1;
    transition: transform 0.25s ease;
}
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1100;
    width: 250px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 45px rgb(17 20 77 / 0.18);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-size: 0.87rem;
    font-weight: 600;
    line-height: 1.35;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        padding-left 0.18s ease;
}
.dropdown-menu a:hover {
    background: var(--navy-dark);
    color: var(--white);
    padding-left: 17px;
}
:focus-visible {
    outline: 3px solid rgb(242 201 56 / 0.85);
    outline-offset: 2px;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: #fff0;
    border: 0;
    border-radius: var(--radius-sm);
    z-index: 1001;
    transition: background 0.2s ease;
}
.menu-toggle:hover {
    background: var(--soft-bg);
}
.hamburger-bar {
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        background 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.mobile-panel {
    display: none;
}
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .mobile-panel {
        display: block;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        z-index: 999;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        padding: 14px 20px 24px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 45px rgb(17 20 77 / 0.16);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition:
            transform 0.3s var(--ease-out),
            opacity 0.3s ease,
            visibility 0.3s ease;
    }
    .mobile-panel.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .mobile-panel > a:not(.mobile-cta) {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 50px;
        padding: 14px 10px;
        border-bottom: 1px solid var(--line);
        color: var(--navy);
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: var(--radius-sm);
        text-decoration: none;
        transition:
            background 0.2s ease,
            color 0.2s ease,
            padding-left 0.2s ease;
    }
    .mobile-panel > a:not(.mobile-cta):hover {
        background: var(--navy-dark);
        color: var(--white);
        padding-left: 16px;
    }
    .mobile-group {
        border-bottom: 1px solid var(--line);
    }
    .mobile-group button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 50px;
        padding: 14px 10px;
        background: #fff0;
        border: 0;
        border-radius: var(--radius-sm);
        color: var(--navy);
        font-family: inherit;
        font-size: 0.95rem;
        font-weight: 700;
        text-align: left;
        transition:
            background 0.2s ease,
            color 0.2s ease;
    }
    .mobile-group button:hover,
    .mobile-group.open button {
        background: var(--navy-dark);
        color: var(--white);
    }
    .mobile-sub {
        display: none;
        padding: 6px 10px 12px 24px;
    }
    .mobile-group.open .mobile-sub {
        display: block;
    }
    .mobile-sub a {
        display: block;
        padding: 10px 12px;
        border-left: 2px solid var(--line);
        color: var(--muted);
        font-size: 0.88rem;
        font-weight: 600;
        text-decoration: none;
        transition:
            background 0.18s ease,
            color 0.18s ease,
            border-color 0.18s ease,
            padding-left 0.18s ease;
    }
    .mobile-sub a:hover {
        background: var(--navy-dark);
        color: var(--white);
        border-left-color: var(--gold);
        padding-left: 16px;
    }
    .mobile-cta {
        width: 100%;
        margin-top: 20px;
    }
}
@media (max-width: 400px) {
    .brand-text {
        display: none;
    }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid #fff0;
    border-radius: 99px;
    font-size: 0.92rem;
    font-weight: 700;
    transition:
        transform 0.2s var(--ease-out),
        box-shadow 0.2s,
        background 0.2s,
        color 0.2s;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 6px 18px rgb(139 28 36 / 0.25);
}
.btn-primary:hover {
    background: var(--red-hover);
}
.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
}
.btn-gold:hover {
    background: var(--gold-hover);
}
.btn-outline {
    background: #fff0;
    border-color: var(--navy);
    color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}
.btn-whatsapp {
    background: rgb(255 255 255 / 0.12);
    border-color: rgb(255 255 255 / 0.3);
    color: var(--white);
}
.btn-whatsapp:hover {
    background: rgb(255 255 255 / 0.22);
}
.hero {
    position: relative;
    min-height: clamp(620px, 85vh, 800px);
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    background: var(--navy-dark);
    color: var(--white);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(98deg, var(--navy-dark) 0%, rgb(62 72 253 / 0.767) 15%, rgb(255 155 155 / 0.185) 99%);
}
.hero-content {
    position: relative;
    z-index: 3;
    width: min(var(--container-width), calc(100% - 40px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    padding-block: 60px;
}
.hero-copy h1 {
    margin-block: 14px 20px;
    color: var(--white);
}
.hero-copy h1 span {
    color: var(--gold);
}
.hero-copy p {
    max-width: 560px;
    margin-bottom: 30px;
    color: rgb(255 255 255 / 0.88);
    font-size: 1.1rem;
}
.hero-eyebrow {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-emblem img {
    width: min(340px, 80%);
    filter: drop-shadow(0 20px 30px rgb(255 255 255 / 0.753));
    animation: heartbeat 17s ease-in-out infinite;
}
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    4% {
        transform: scale(1.11);
    }
    5% {
        transform: scale(1);
    }
    6% {
        transform: scale(1.08);
    }
    70% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}
.hero-carousel {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slide.active ~ .hero-slide {
    z-index: 0;
}
.hero-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgb(255 255 255 / 0.6);
    background: #fff0;
    cursor: pointer;
    padding: 0;
    transition:
        background 0.3s,
        transform 0.3s;
}
.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}
.hero-dot:hover {
    transform: scale(1.1);
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgb(255 255 255 / 0.1);
    border: 1px solid rgb(255 255 255 / 0.2);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.3s,
        transform 0.3s,
        opacity 0.3s;
    opacity: 0.7;
}
.hero-arrow:hover {
    background: rgb(255 255 255 / 0.2);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}
.hero-arrow--prev {
    left: 24px;
}
.hero-arrow--next {
    right: 24px;
}
@media (max-width: 576px) {
    .hero-arrow {
        width: 36px;
        height: 36px;
        opacity: 0.4;
    }
    .hero-arrow--prev {
        left: 8px;
    }
    .hero-arrow--next {
        right: 8px;
    }
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    .hero-dots {
        gap: 8px;
        bottom: 10px;
    }
}
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding-block: 40px;
    }
    .hero-emblem {
        order: -1;
        display: flex;
        justify-content: center;
    }
    .hero-copy p {
        margin-inline: auto;
    }
    .hero-actions {
        justify-content: center;
    }
}
.section {
    padding-block: 80px;
}
.section--soft {
    background: var(--soft-bg);
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
}
.grid-cards {
    display: grid;
    gap: 24px;
}
.grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
}
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s var(--ease-out),
        box-shadow 0.25s,
        border-color 0.25s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgb(27 30 105 / 0.15);
}
.card .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: var(--soft-bg);
    color: var(--navy);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}
.card-tag {
    margin-bottom: 12px;
    color: var(--red);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
}
.card .btn {
    margin-top: auto;
    align-self: flex-start;
}
.card--navy {
    background: var(--navy-dark);
    color: var(--white);
    border-color: #fff0;
}
.card--navy h2,
.card--navy h3 {
    color: var(--white);
}
.card--navy p,
.card--navy .card-tag {
    color: rgb(255 255 255 / 0.85);
}
.card--event {
    border-left: 4px solid var(--gold);
}
.card[id] {
    scroll-margin-top: calc(var(--nav-height) + 30px);
}
.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 48px;
    background: var(--navy);
}
.cta-banner h2 {
    margin-bottom: 8px;
    color: var(--white);
}
.cta-banner p {
    margin: 0;
    color: rgb(255 255 255 / 0.85);
}
.page-top {
    padding-top: var(--nav-height);
}
.page-hero {
    padding-block: 60px 50px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.page-hero h1 {
    margin-block: 10px 14px;
    color: var(--white);
}
.page-hero p {
    max-width: 680px;
    margin: 0;
    color: rgb(255 255 255 / 0.85);
    font-size: 1.1rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: rgb(255 255 255 / 0.65);
    font-size: 0.85rem;
}
.breadcrumb a {
    color: rgb(255 255 255 / 0.85);
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--gold);
}
.breadcrumb span:last-child {
    color: var(--gold);
    font-weight: 600;
}
section[id] {
    scroll-margin-top: calc(var(--nav-height) + 20px);
}
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.split-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.split-content .btn,
.split-info .btn {
    margin-top: 16px;
}
.list-clean {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}
.list-clean li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 0.95rem;
}
.list-clean li::before {
    content: "✔";
    flex-shrink: 0;
    color: var(--navy);
    font-weight: 700;
}
.footer-top {
    background-color: var(--red-hover);
    padding: 10px 0;
}
.footer-top-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.btn-top {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}
.btn-top:hover {
    opacity: 0.85;
}
.footer-contact-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
}
.contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #333;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
}
.contact-item i {
    color: var(--red);
    font-size: 14px;
}
a.contact-item:hover {
    color: var(--red-hover);
}
.footer-links {
    background-color: var(--navy);
    color: #fff;
    padding: 30px 0;
}
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
}
.footer-col {
    min-width: 0;
    text-align: left;
}
.col-title {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #fff;
    border-bottom: 2px solid #c8102e;
    display: inline-block;
    padding-bottom: 4px;
}
.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.sub-menu li {
    margin: 0 0 7px;
    padding: 0;
}
.sub-menu li:last-child {
    margin-bottom: 0;
}
.sub-menu a {
    display: inline-block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}
.sub-menu a:hover {
    color: #fff;
    transform: translateX(3px);
}
.red-i {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 15px;
    width: 100%;
    align-items: center;
}
.red-i-i {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
}
.a-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    text-decoration: none;
    color: #b0b0b0;
    font-size: 14px;
    font-family: "Segoe UI", Arial, sans-serif;
    transition: color 0.2s ease;
}
.svg-social {
    display: block;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 6px;
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}
.nom-red {
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.a-red:hover {
    color: #fff;
}
.a-red:hover .svg-social {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.footer-accreditations {
    background-color: var(--soft-bg);
    padding: 15px 0;
    border-top: 1px solid #2a2a2a;
}
.accreditations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.accreditation-logo {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition:
        filter 0.2s ease,
        opacity 0.2s ease;
}
.accreditation-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.footer-copyright {
    background-color: #0a0a0a;
    color: #777;
    padding: 15px 20px;
    font-size: 12px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 20px;
}
.footer-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 15px;
}
.footer-copyright a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-copyright a:hover {
    color: #fff;
}
@media (max-width: 350px) {
    .footer-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    .footer-section {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-top-grid {
        flex-direction: column;
        gap: 12px;
    }
}
@media (max-width: 349px) {
    .footer-links {
        padding: 25px 0;
    }
    .links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-col {
        width: 100%;
        text-align: left;
    }
    .sub-menu {
        text-align: left;
    }
    .red-i {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 15px;
    }
    .red-i-i {
        width: 100%;
    }
    .a-red {
        width: 100%;
        gap: 8px;
        font-size: 14px;
    }
    .svg-social {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }
    .nom-red {
        font-size: 14px;
    }
    .accreditations-grid {
        gap: 20px;
    }
    .accreditation-logo {
        max-height: 35px;
    }
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #25d366;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 10px 25px rgb(37 211 102 / 0.35);
    transition: transform 0.25s var(--ease-out);
}
.whatsapp-float:hover {
    transform: scale(1.08);
}
.whatsapp-float span {
    position: absolute;
    right: 68px;
    padding: 6px 12px;
    background: var(--navy-dark);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-float i {
    font-size: 37px;
}
.whatsapp-float:hover span {
    opacity: 1;
}
@media (min-width: 992px) {
    .split {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .container,
    .nav-inner {
        width: min(var(--container-width), calc(100% - 30px));
    }
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn {
        width: 100%;
    }
    .hero-actions {
        width: 100%;
    }
}


  /* estilos para formulario con selector de plantel */

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }

@media (max-width: 560px) {
    .cta-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
}