

:root {

    --navy: #06172d;
    --primary: #0b1f3a;
    --blue: #123b68;

    --yellow: #f5b400;
    --yellow-dark: #d99d00;

    --green: #138a57;

    --white: #ffffff;

    --bg: #f5f7fa;
    --soft: #f8fafc;

    --text: #172536;
    --muted: #657486;
    --light: #8b98a7;

    --border: #e1e7ed;

    --shadow:
        0 18px 50px rgba(7,26,49,.08);

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--bg);

    line-height: 1.75;

}

a {

    color: inherit;

    text-decoration: none;

}

button {
    font: inherit;
}

.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin-inline: auto;

}


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

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,255,255,.97);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(12px);

}

.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 24px;

}


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

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 190px;

}

.logo-symbol {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        var(--primary);

    color:
        var(--yellow);

    font-size: 20px;

}

.logo-copy {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.logo-copy strong {

    color:
        var(--primary);

    font-size: 18px;

    letter-spacing: .8px;

}

.logo-copy small {

    margin-top: 5px;

    color:
        var(--yellow-dark);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   NAV
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 19px;

    flex: 1;

}

.desktop-nav a {

    color:
        #536171;

    font-size: 12px;

    font-weight: 750;

    white-space: nowrap;

    transition:
        color .2s ease;

}

.desktop-nav a:hover {

    color:
        var(--primary);

}


/* =========================================================
   PHONE
========================================================= */

.header-phone {

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 14px;

    border-radius: 10px;

    background:
        var(--primary);

    color:
        var(--white);

    font-size: 12px;

    font-weight: 900;

    white-space: nowrap;

}

.header-phone small {

    display: block;

    color:
        #aab9c9;

    font-size: 8px;

    letter-spacing: 1px;

}

.phone-icon {

    color:
        var(--yellow);

    font-size: 17px;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.mobile-menu-btn {

    display: none;

    width: 44px;

    height: 44px;

    border: 0;

    border-radius: 10px;

    background:
        var(--primary);

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

}

.mobile-menu-btn span {

    width: 23px;

    height: 2px;

    background:
        var(--white);

    border-radius: 3px;

    transition:
        transform .25s ease,
        opacity .2s ease;

}

.mobile-menu-btn.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}

.mobile-menu-btn.active span:nth-child(2) {

    opacity: 0;

}

.mobile-menu-btn.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    background:
        var(--white);

    border-top:
        1px solid var(--border);

    box-shadow:
        0 18px 35px
        rgba(7,26,49,.13);

}

.mobile-menu.open {

    display: block;

}

.mobile-menu nav {

    width:
        min(
            calc(100% - 28px),
            600px
        );

    margin-inline: auto;

    padding:
        8px 0 18px;

    display: flex;

    flex-direction: column;

}

.mobile-menu nav a {

    padding:
        13px 8px;

    border-bottom:
        1px solid var(--border);

    color:
        var(--primary);

    font-size: 14px;

    font-weight: 750;

}

.mobile-menu nav a.active {

    color:
        var(--yellow-dark);

}

.mobile-menu .mobile-phone {

    margin-top: 12px;

    border: 0;

    border-radius: 10px;

    background:
        var(--yellow);

    color:
        var(--navy);

    text-align: center;

}


/* =========================================================
   HERO
========================================================= */

.legal-hero {

    position: relative;

    overflow: hidden;

    padding:
        70px 0 80px;

    background:
        linear-gradient(
            135deg,
            #06172d,
            #0b1f3a 58%,
            #123b68
        );

    color:
        var(--white);

}

.hero-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}

.hero-decoration-one {

    width: 470px;
    height: 470px;

    right: -230px;
    top: -270px;

    border:
        75px solid
        rgba(245,180,0,.06);

}

.hero-decoration-two {

    width: 280px;
    height: 280px;

    left: -180px;
    bottom: -190px;

    border:
        50px solid
        rgba(255,255,255,.035);

}

.hero-content {

    position: relative;

    z-index: 2;

}

.breadcrumb {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    color:
        #9bacc0;

    font-size: 12px;

}

.breadcrumb a {

    color:
        var(--yellow);

    font-weight: 800;

}

.hero-kicker {

    display: inline-block;

    margin-bottom: 10px;

    color:
        var(--yellow);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}

.legal-hero h1 {

    max-width: 750px;

    margin-bottom: 16px;

    font-size:
        clamp(40px,6vw,62px);

    line-height: 1.05;

    letter-spacing: -1px;

}

.legal-hero h1 strong {

    color:
        var(--yellow);

}

.legal-hero p {

    max-width: 760px;

    color:
        #c1cdda;

    font-size: 16px;

}

.hero-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;

}

.hero-meta span {

    padding:
        8px 12px;

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

    border-radius: 50px;

    background:
        rgba(255,255,255,.05);

    color:
        #c6d2df;

    font-size: 10px;

    font-weight: 750;

}


/* =========================================================
   MAIN
========================================================= */

.legal-main {

    padding:
        65px 0 90px;

}

.legal-layout {

    display: grid;

    grid-template-columns:
        285px 1fr;

    gap: 50px;

    align-items: start;

}


/* =========================================================
   SIDEBAR
========================================================= */

.legal-sidebar {

    position: sticky;

    top: 105px;

}

.sidebar-box {

    padding:
        23px 20px;

    border:
        1px solid var(--border);

    border-radius:
        15px;

    background:
        var(--white);

    box-shadow:
        0 12px 35px
        rgba(7,26,49,.045);

}

.sidebar-title {

    display: block;

    margin-bottom: 13px;

    color:
        var(--yellow-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.7px;

}

.sidebar-box nav {

    display: flex;

    flex-direction: column;

}

.sidebar-box nav a {

    padding:
        9px 5px;

    border-bottom:
        1px solid #edf0f3;

    color:
        #657486;

    font-size: 10px;

    font-weight: 650;

    transition:
        color .2s ease,
        padding .2s ease;

}

.sidebar-box nav a:hover {

    padding-left: 9px;

    color:
        var(--primary);

}

.sidebar-contact {

    margin-top: 15px;

    padding:
        23px;

    border-radius:
        15px;

    background:
        var(--primary);

    color:
        var(--white);

}

.sidebar-contact span {

    display: block;

    margin-bottom: 7px;

    color:
        #9eb0c4;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

}

.sidebar-contact strong {

    display: block;

    margin-bottom: 13px;

    color:
        var(--yellow);

    font-size: 20px;

}

.sidebar-contact a {

    color:
        #d3dce5;

    font-size: 10px;

    font-weight: 800;

}


/* =========================================================
   CONTENT
========================================================= */

.legal-content {

    min-width: 0;

}

.update-box {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 30px;

    padding:
        21px;

    border:
        1px solid #e7e2ce;

    border-radius:
        15px;

    background:
        #fffdf6;

}

.update-icon {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-size: 15px;

    font-weight: 900;

}

.update-box strong {

    display: block;

    margin-bottom: 4px;

    color:
        var(--primary);

    font-size: 13px;

}

.update-box p {

    color:
        var(--muted);

    font-size: 11px;

}


/* =========================================================
   LEGAL SECTION
========================================================= */

.legal-section {

    position: relative;

    margin-bottom: 24px;

    padding:
        35px 38px;

    border:
        1px solid var(--border);

    border-radius:
        17px;

    background:
        var(--white);

    box-shadow:
        0 9px 30px
        rgba(7,26,49,.035);

}

.section-number {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 33px;

    height: 26px;

    margin-bottom: 10px;

    padding:
        0 8px;

    border-radius: 7px;

    background:
        #fff5d6;

    color:
        var(--yellow-dark);

    font-size: 9px;

    font-weight: 900;

}

.legal-section h2 {

    margin-bottom: 16px;

    color:
        var(--primary);

    font-size:
        clamp(22px,3vw,29px);

    line-height: 1.2;

}

.legal-section p {

    margin-bottom: 14px;

    color:
        var(--muted);

    font-size: 13px;

}

.legal-section p:last-child {

    margin-bottom: 0;

}

.legal-section strong {

    color:
        var(--primary);

}


/* =========================================================
   LEGAL LIST
========================================================= */

.legal-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin:
        20px 0;

    padding: 0;

    list-style: none;

}

.legal-list li {

    position: relative;

    padding:
        12px 15px 12px 40px;

    border:
        1px solid #edf0f3;

    border-radius: 10px;

    background:
        #fafbfd;

    color:
        #5d6d7e;

    font-size: 12px;

}

.legal-list li::before {

    content: "✓";

    position: absolute;

    left: 15px;

    top: 11px;

    color:
        var(--yellow-dark);

    font-weight: 900;

}


/* =========================================================
   INFO GRID
========================================================= */

.info-grid {

    display: grid;

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

    gap: 11px;

    margin-top: 22px;

}

.info-card {

    padding:
        17px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        var(--soft);

}

.info-card > span {

    display: block;

    margin-bottom: 7px;

    color:
        var(--yellow-dark);

    font-size: 20px;

}

.info-card strong {

    display: block;

    margin-bottom: 4px;

    color:
        var(--primary);

    font-size: 12px;

}

.info-card p {

    margin: 0;

    font-size: 10px;

}


/* =========================================================
   CHECK LIST
========================================================= */

.check-list {

    display: grid;

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

    gap: 9px;

    margin:
        20px 0;

}

.check-list div {

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        11px 13px;

    border-radius: 9px;

    background:
        var(--soft);

    color:
        #596a7b;

    font-size: 11px;

}

.check-list span {

    color:
        var(--yellow-dark);

    font-weight: 900;

}


/* =========================================================
   WARNING
========================================================= */

.warning-box {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin:
        20px 0;

    padding:
        18px;

    border:
        1px solid #f0dfb2;

    border-radius:
        12px;

    background:
        #fffaf0;

}

.warning-box > span {

    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-weight: 900;

}

.warning-box strong {

    display: block;

    margin-bottom: 3px;

    color:
        var(--primary);

    font-size: 12px;

}

.warning-box p {

    margin: 0;

    font-size: 11px;

}


/* =========================================================
   PRICE NOTE
========================================================= */

.price-note {

    display: flex;

    align-items: center;

    gap: 15px;

    margin:
        20px 0;

    padding:
        18px;

    border-radius:
        13px;

    background:
        var(--primary);

}

.price-note > span {

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-size: 20px;

    font-weight: 900;

}

.price-note strong {

    display: block;

    margin-bottom: 3px;

    color:
        var(--white);

    font-size: 12px;

}

.price-note p {

    margin: 0;

    color:
        #afbecd;

    font-size: 10px;

}


/* =========================================================
   EVENTS
========================================================= */

.event-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 9px;

    margin:
        20px 0;

}

.event-grid div {

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        12px;

    border:
        1px solid var(--border);

    border-radius:
        9px;

    background:
        var(--soft);

}

.event-grid span {

    font-size: 17px;

}

.event-grid strong {

    color:
        #526274;

    font-size: 10px;

}


/* =========================================================
   NOTICE
========================================================= */

.notice-box {

    margin-top: 20px;

    padding:
        18px 20px;

    border-left:
        3px solid var(--yellow);

    background:
        #fafbfd;

}

.notice-box strong {

    display: block;

    margin-bottom: 5px;

    color:
        var(--primary);

    font-size: 12px;

}

.notice-box p {

    margin: 0;

    font-size: 11px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;

    margin-top: 20px;

}

.contact-card {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        15px;

    border:
        1px solid var(--border);

    border-radius:
        11px;

    background:
        var(--soft);

    transition:
        transform .2s ease,
        border-color .2s ease;

}

.contact-card:hover {

    transform:
        translateY(-2px);

    border-color:
        var(--yellow);

}

.contact-card > span {

    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        var(--primary);

    color:
        var(--yellow);

    font-size: 15px;

}

.contact-card small {

    display: block;

    margin-bottom: 2px;

    color:
        var(--light);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;

}

.contact-card strong {

    display: block;

    color:
        var(--primary);

    font-size: 10px;

}


/* =========================================================
   FINAL NOTE
========================================================= */

.final-note {

    margin-top: 28px;

    padding:
        30px;

    border-radius:
        17px;

    background:
        linear-gradient(
            135deg,
            #06172d,
            #123b68
        );

}

.final-note > span {

    display: block;

    margin-bottom: 8px;

    color:
        var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}

.final-note strong {

    display: block;

    max-width: 500px;

    margin-bottom: 8px;

    color:
        var(--white);

    font-size: 22px;

    line-height: 1.2;

}

.final-note p {

    max-width: 650px;

    margin: 0;

    color:
        #adbdcd;

    font-size: 11px;

}


/* =========================================================
   CTA
========================================================= */

.legal-cta {

    padding:
        70px 0;

    background:
        linear-gradient(
            135deg,
            #071a32,
            #123b68
        );

    color:
        var(--white);

}

.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}

.cta-inner > div:first-child > span {

    color:
        var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.8px;

}

.cta-inner h2 {

    max-width: 650px;

    margin:
        7px 0 9px;

    font-size:
        clamp(28px,4vw,41px);

    line-height: 1.12;

}

.cta-inner p {

    max-width: 650px;

    color:
        #b9c8d6;

    font-size: 13px;

}

.cta-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

}

.cta-phone,
.cta-whatsapp {

    min-height: 47px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0 19px;

    border-radius: 10px;

    font-size: 11px;

    font-weight: 900;

    white-space: nowrap;

}

.cta-phone {

    background:
        var(--yellow);

    color:
        var(--navy);

}

.cta-whatsapp {

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

    background:
        rgba(255,255,255,.06);

    color:
        var(--white);

}


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

.site-footer {

    background:
        #051326;

    color:
        #9aacbe;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 40px;

    padding:
        60px 0 45px;

}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

}

.footer-logo .logo-symbol {

    width: 42px;
    height: 42px;

}

.footer-logo > span:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1;

}

.footer-logo strong {

    color:
        var(--white);

    font-size: 16px;

}

.footer-logo small {

    margin-top: 4px;

    color:
        var(--yellow);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.7px;

}

.footer-brand p {

    max-width: 340px;

    margin-bottom: 15px;

    color:
        #8396a9;

    font-size: 11px;

}

.footer-phone {

    color:
        var(--yellow);

    font-size: 17px;

    font-weight: 900;

}

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 7px;

}

.footer-column h3 {

    margin-bottom: 8px;

    color:
        var(--white);

    font-size: 13px;

}

.footer-column a,
.footer-column p {

    color:
        #8295a9;

    font-size: 11px;

    transition:
        color .2s ease;

}

.footer-column a:hover {

    color:
        var(--yellow);

}

.footer-whatsapp {

    color:
        var(--yellow) !important;

    font-weight: 900;

}


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

.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.07);

}

.footer-bottom-inner {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p,
.footer-bottom a {

    color:
        #687e94;

    font-size: 9px;

}

.footer-bottom-inner > div {

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 2000;

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        10px 15px;

    border-radius:
        50px;

    background:
        var(--green);

    color:
        var(--white);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.22);

}

.whatsapp-float span {

    font-size: 17px;

}

.whatsapp-float small {

    font-size: 9px;

    font-weight: 900;

}


/* =========================================================
   1050
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {

        gap: 10px;

    }

    .desktop-nav a {

        font-size: 10px;

    }

    .legal-layout {

        grid-template-columns:
            245px 1fr;

        gap: 30px;

    }

    .footer-grid {

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

    }

}


/* =========================================================
   850
========================================================= */

@media (max-width: 850px) {

    .desktop-nav {

        display: none;

    }

    .mobile-menu-btn {

        display: flex;

        margin-left: auto;

    }

    .header-phone {

        margin-left: auto;

    }

    .legal-layout {

        grid-template-columns:
            1fr;

    }

    .legal-sidebar {

        position: static;

    }

    .sidebar-box {

        display: none;

    }

    .legal-hero {

        padding:
            55px 0 65px;

    }

    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   600
========================================================= */

@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }

    .header-inner {

        min-height: 70px;

        gap: 7px;

    }

    .logo {

        min-width: auto;

    }

    .logo-symbol {

        width: 41px;
        height: 41px;

    }

    .logo-copy strong {

        font-size: 15px;

    }

    .logo-copy small {

        font-size: 7px;

    }

    .header-phone {

        padding:
            9px;

        font-size: 10px;

    }

    .header-phone small {

        display: none;

    }

    .phone-icon {

        font-size: 14px;

    }

    .mobile-menu-btn {

        width: 41px;
        height: 41px;

    }

    .legal-hero h1 {

        font-size: 39px;

    }

    .legal-hero p {

        font-size: 13px;

    }

    .hero-meta {

        flex-direction: column;

        align-items: flex-start;

    }

    .legal-main {

        padding:
            45px 0 65px;

    }

    .legal-section {

        padding:
            25px 20px;

    }

    .info-grid {

        grid-template-columns:
            1fr;

    }

    .check-list {

        grid-template-columns:
            1fr;

    }

    .event-grid {

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

    }

    .contact-grid {

        grid-template-columns:
            1fr;

    }

    .final-note {

        padding:
            25px 20px;

    }

    .final-note strong {

        font-size: 20px;

    }

    .cta-actions {

        width: 100%;

        flex-direction: column;

    }

    .cta-phone,
    .cta-whatsapp {

        width: 100%;

    }

    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 30px;

        padding:
            45px 0;

    }

    .footer-bottom-inner {

        min-height: auto;

        padding:
            18px 0;

        flex-direction: column;

        text-align: center;

    }

    .footer-bottom-inner > div {

        justify-content: center;

    }

    .whatsapp-float {

        right: 13px;

        bottom: 13px;

    }

}


/* =========================================================
   390
========================================================= */

@media (max-width: 390px) {

    .logo-copy {

        display: none;

    }

    .legal-hero h1 {

        font-size: 35px;

    }

    .event-grid {

        grid-template-columns:

            1fr;

    }

}

