* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-padding-top: 72px;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
    max-width: none;
    padding: 0 30px;
}

.header__logo img {
    height: 36px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header__menu {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header__link {
    position: relative;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5966;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.header__link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background-color: #377dff;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.header__link:hover {
    color: #377dff;
    background-color: #f1f6ff;
}

.header__link:hover::after {
    transform: scaleX(1);
}

.header__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.header__whatsapp:hover {
    background-color: #1ebe5b;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.header__whatsapp svg {
    flex-shrink: 0;
}

.header__burger {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.header__burger:hover {
    background-color: #f1f6ff;
}

.header__burger-line {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: #1a2a38;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.header__burger-line:nth-child(1) {
    top: 13px;
}

.header__burger-line:nth-child(2) {
    top: 19px;
}

.header__burger-line:nth-child(3) {
    top: 25px;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    pointer-events: none;
}

.mobile-menu.is-open {
    pointer-events: auto;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 20, 30, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85%);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 80px 24px 32px;
    box-shadow: -10px 0 40px rgba(10, 20, 30, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu__link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a38;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
    background-color: #f1f6ff;
    color: #377dff;
}

.mobile-menu__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-top: auto;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
    transition: background-color 0.2s ease;
}

.mobile-menu__whatsapp:hover {
    background-color: #1ebe5b;
}

body.menu-open {
    overflow: hidden;
}

.faq-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 58px;
    height: 58px;
    background-color: #377dff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(55, 125, 255, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    animation: faqFloatPulse 2.4s ease-out infinite;
    animation-delay: 1.2s;
}

.faq-float:hover {
    background-color: #2a6ae8;
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(55, 125, 255, 0.45), 0 4px 10px rgba(0, 0, 0, 0.12);
    animation: none;
}

.faq-float:hover .faq-float__tooltip {
    opacity: 1;
    transform: translate(0, -50%);
}

.faq-float__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translate(8px, -50%);
    background-color: #1a2a38;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.faq-float__tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a2a38;
}

@keyframes faqFloatPulse {
    0% {
        box-shadow: 0 8px 24px rgba(55, 125, 255, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(55, 125, 255, 0.5);
    }
    70% {
        box-shadow: 0 8px 24px rgba(55, 125, 255, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1), 0 0 0 18px rgba(55, 125, 255, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(55, 125, 255, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(55, 125, 255, 0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe5b;
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0, 0, 0, 0.12);
    animation: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translate(8px, -50%);
    background-color: #1a2a38;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.whatsapp-float__tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a2a38;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1), 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 960px) {
    .header__menu {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .header__whatsapp {
        display: none;
    }
}

@media (max-width: 720px) {
    .header__whatsapp span {
        display: none;
    }

    .header__whatsapp {
        padding: 8px;
        width: 38px;
        height: 38px;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .faq-float {
        bottom: 82px;
        right: 18px;
        width: 52px;
        height: 52px;
    }

    .faq-float svg {
        width: 26px;
        height: 26px;
    }

    .faq {
        padding: 56px 0;
    }

    .faq__title {
        font-size: 26px;
    }

    .faq__question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq__answer {
        padding: 0 18px 18px;
    }
}

.banner {
    width: 100vw;
    background-color: #ffffff;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.banner__track {
    display: flex;
    will-change: transform;
}

.banner__image {
    display: block;
    flex-shrink: 0;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

.banner__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.banner__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.banner__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s ease;
}


.banner__dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.banner__dot.is-active {
    width: 30px;
    background-color: #ffffff;
}

.partners {
    width: 100%;
    background-color: #ffffff;
    padding: 72px 0 48px;
}

.partners__header {
    text-align: center;
    margin-bottom: 40px;
}

.partners__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #377dff;
    margin-bottom: 10px;
}

.partners__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a38;
    letter-spacing: -0.01em;
    margin: 0;
}

.partners__marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.partners__track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: partnersScroll 50s linear infinite;
}

.partners__marquee:hover .partners__track {
    animation-play-state: paused;
}

.partners__item {
    flex-shrink: 0;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__item img {
    max-height: 100%;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.about {
    width: 100%;
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #377dff, #5b94ff);
    border-radius: 0 0 4px 4px;
}

.about__container {
    max-width: 860px;
    text-align: center;
}

.about__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #377dff;
    margin-bottom: 20px;
    position: relative;
    padding: 0 18px;
}

.about__eyebrow::before,
.about__eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background-color: #c5d4de;
}

.about__eyebrow::before {
    right: 100%;
}

.about__eyebrow::after {
    left: 100%;
}

.about__heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #377dff;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.about__text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5966;
    margin: 0;
}

.about__cta {
    margin-top: 56px;
    padding: 36px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef3f7 100%);
    border-left: 4px solid #377dff;
    border-radius: 4px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.about__highlight {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #377dff;
    margin: 0;
    font-style: italic;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 26px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.whatsapp-cta:hover {
    background-color: #1ebe5b;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta svg {
    flex-shrink: 0;
}

.whatsapp-cta--light {
    background-color: #ffffff;
    color: #1a2a38;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.whatsapp-cta--light:hover {
    background-color: #f1f6ff;
    color: #1a2a38;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.schedule__cta {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.schedule__cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.schedule {
    width: 100%;
    padding: 88px 0;
    background: linear-gradient(135deg, #377dff 0%, #5b94ff 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.schedule::before,
.schedule::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.schedule::before {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -80px;
}

.schedule::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -60px;
}

.schedule__container {
    position: relative;
    z-index: 1;
}

.schedule__header {
    text-align: center;
    margin-bottom: 48px;
}

.schedule__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.schedule__title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #ffffff;
}

.schedule__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.schedule__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.schedule__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.schedule__card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.18);
}

.schedule__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.schedule__card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.schedule__card-text strong {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.schedule__card-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.faq {
    width: 100%;
    background-color: #f9fbff;
    padding: 96px 0;
    border-top: 1px solid #eef2f7;
}

.faq__container {
    max-width: 820px;
}

.faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.faq__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #377dff;
    margin-bottom: 12px;
}

.faq__title {
    font-size: 36px;
    font-weight: 700;
    color: #1a2a38;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    line-height: 1.2;
}

.faq__subtitle {
    font-size: 16px;
    color: #6a7684;
    margin: 0;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background-color: #ffffff;
    border: 1px solid #e5e9ee;
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.faq__item:hover {
    border-color: #377dff;
}

.faq__item[open] {
    border-color: #377dff;
    box-shadow: 0 4px 16px rgba(55, 125, 255, 0.08);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a38;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question:hover {
    color: #377dff;
}

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f1f6ff;
    position: relative;
    transition: background-color 0.2s ease, transform 0.3s ease;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background-color: #377dff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon {
    background-color: #377dff;
    transform: rotate(180deg);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
    background-color: #ffffff;
}

.faq__item[open] .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
    padding: 0 24px 22px;
    animation: faqFadeIn 0.3s ease;
}

.faq__answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5966;
    margin: 0;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal {
    width: 100%;
    background-color: #ffffff;
    padding: 72px 0 96px;
}

.legal__container {
    max-width: 880px;
}

.legal__breadcrumb {
    font-size: 13px;
    color: #6a7684;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.legal__breadcrumb a {
    color: #377dff;
}

.legal__breadcrumb a:hover {
    text-decoration: underline;
}

.legal__title {
    font-size: 38px;
    font-weight: 700;
    color: #377dff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.legal__subtitle {
    font-size: 16px;
    color: #6a7684;
    margin-bottom: 40px;
}

.legal__divider {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, #377dff, #5b94ff);
    border-radius: 2px;
    margin-bottom: 40px;
}

.legal__content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #377dff;
    margin-top: 40px;
    margin-bottom: 14px;
    line-height: 1.3;
}

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

.legal__content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a2a38;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal__content p {
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 16px;
}

.legal__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.legal__content li {
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
}

.legal__content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #377dff;
}

.legal__content strong {
    color: #1a2a38;
}

.legal__content a {
    color: #377dff;
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    transform: translateX(-120%);
    width: calc(100% - 40px);
    max-width: 340px;
    background-color: #ffffff;
    border: 1px solid #e5e9ee;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(55, 125, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.cookie-banner--visible {
    transform: translateX(0);
    opacity: 1;
}

.cookie-banner--hidden {
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 18px 16px;
}

.cookie-banner__icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #377dff, #5b94ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-banner__icon svg {
    width: 20px;
    height: 20px;
}

.cookie-banner__text strong {
    display: block;
    font-size: 14px;
    color: #377dff;
    font-weight: 700;
    margin-bottom: 4px;
}

.cookie-banner__text p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: #4a5966;
}

.cookie-banner__text a {
    color: #377dff;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

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

.cookie-banner__btn--primary {
    background: linear-gradient(135deg, #377dff, #5b94ff);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(55, 125, 255, 0.25);
}

.cookie-banner__btn--primary:hover {
    box-shadow: 0 6px 18px rgba(55, 125, 255, 0.35);
}

.cookie-banner__btn--secondary {
    background-color: #f1f4f8;
    color: #377dff;
}

.cookie-banner__btn--secondary:hover {
    background-color: #e5ebf2;
}

@media (max-width: 720px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
        max-width: none;
    }
}

.location {
    width: 100%;
    padding: 88px 0;
    background-color: #ffffff;
    border-top: 1px solid #eef2f7;
}

.location__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.location__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #377dff;
    margin-bottom: 12px;
}

.location__title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #1a2a38;
}

.location__address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.8;
    color: #1a2a38;
    margin: 0;
}

.location__address p {
    margin: 0;
}

.location__map {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.location__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer {
    width: 100%;
    background-color: #343d48;
    color: #e6e8eb;
    border-top: 1px solid #2b333d;
}

.footer__container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-top: 40px;
    padding-bottom: 32px;
    align-items: flex-start;
    justify-content: space-between;
    text-align: center;
}

.footer__brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.footer__logo {
    height: 36px;
    width: auto;
}

.footer__address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.75;
    color: #c5cad0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.footer__address p {
    margin: 0;
}

.footer__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer__links a {
    font-size: 13px;
    color: #c5cad0;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #5b94ff;
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid #2b333d;
    padding: 12px 0;
    font-size: 12px;
    color: #a0a6ad;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    html {
        scroll-padding-top: 60px;
    }

    .header__container {
        height: 64px;
        padding: 0 20px;
    }

    .header__logo {
        padding-left: 4px;
    }

    .header__logo img {
        height: 30px;
    }

    .banner__dots {
        bottom: 14px;
        gap: 8px;
    }

    .banner__dot {
        width: 8px;
        height: 8px;
    }

    .banner__dot.is-active {
        width: 24px;
    }

    .partners {
        padding: 48px 0 32px;
    }

    .partners__header {
        margin-bottom: 28px;
    }

    .partners__title {
        font-size: 22px;
    }

    .partners__marquee {
        mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    }

    .partners__track {
        gap: 36px;
        animation-duration: 35s;
    }

    .partners__item {
        height: 36px;
    }

    .partners__item img {
        max-width: 110px;
    }

    .about {
        padding: 64px 0;
    }

    .about__heading {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .about__heading br,
    .about__text br,
    .about__highlight br {
        display: none;
    }

    .about__text {
        font-size: 15px;
        line-height: 1.7;
    }

    .about__cta {
        padding: 22px 20px;
        margin-top: 36px;
    }

    .about__highlight {
        font-size: 16px;
    }

    .about__eyebrow::before,
    .about__eyebrow::after {
        width: 18px;
    }

    .schedule {
        padding: 60px 0;
    }

    .schedule__title {
        font-size: 26px;
    }

    .location {
        padding: 56px 0;
    }

    .location__container {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .location__info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .location__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .location__title {
        font-size: 26px;
    }

    .location__map {
        height: 280px;
    }

    .schedule__header {
        margin-bottom: 32px;
    }

    .schedule__cards {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 420px;
    }

    .schedule__card {
        padding: 18px 20px;
    }

    .schedule__icon {
        width: 44px;
        height: 44px;
    }

    .schedule__card-text strong {
        font-size: 18px;
    }

    .legal {
        padding: 48px 0 64px;
    }

    .legal__title {
        font-size: 28px;
    }

    .legal__subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .legal__divider {
        margin-bottom: 28px;
    }

    .legal__content h2 {
        font-size: 19px;
        margin-top: 28px;
    }

    .legal__content h3 {
        font-size: 16px;
    }

    .legal__content p,
    .legal__content li {
        font-size: 15px;
        line-height: 1.65;
    }

    .footer__container {
        flex-direction: column;
        gap: 24px;
        padding-top: 32px;
        padding-bottom: 28px;
        align-items: center;
        text-align: center;
    }

    .footer__brand {
        justify-content: center;
        margin-bottom: 4px;
    }

    .footer__logo {
        height: 30px;
    }

    .footer__address,
    .footer__links {
        align-items: center;
        width: 100%;
    }

    .footer__bottom {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header__container {
        height: 60px;
        padding: 0 16px;
    }

    .header__logo img {
        height: 26px;
    }

    .header__whatsapp {
        width: 34px;
        height: 34px;
    }

    .header__whatsapp svg {
        width: 18px;
        height: 18px;
    }

    .banner__dots {
        bottom: 10px;
    }

    .partners__title {
        font-size: 19px;
    }

    .partners__eyebrow,
    .faq__eyebrow,
    .about__eyebrow {
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .about {
        padding: 48px 0;
    }

    .about__heading {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .about__content {
        gap: 18px;
    }

    .about__cta {
        padding: 18px 16px;
    }

    .faq {
        padding: 44px 0;
    }

    .faq__header {
        margin-bottom: 28px;
    }

    .faq__title {
        font-size: 22px;
    }

    .faq__subtitle {
        font-size: 14px;
    }

    .faq__question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq__answer {
        padding: 0 16px 16px;
    }

    .faq__answer p {
        font-size: 14px;
    }

    .whatsapp-float {
        bottom: 14px;
        right: 14px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float__tooltip,
    .faq-float__tooltip {
        display: none;
    }

    .faq-float {
        bottom: 72px;
        right: 14px;
        width: 48px;
        height: 48px;
    }

    .faq-float svg {
        width: 24px;
        height: 24px;
    }
}
