@charset "utf-8";

/* =========================================================
   BAYMEET · TERMS / PRIVACY
   public/assets/css/page_public/terms.css
========================================================= */

/* =========================================================
   LAYOUT GENERAL
========================================================= */

.legal-main {
    width: 100%;
    max-width: 980px;

    margin: 0 auto;
    padding: 1rem .9rem 2.6rem;
}

/* =========================================================
   HERO LEGAL
========================================================= */

.legal-hero {
    position: relative;
    isolation: isolate;

    width: 100%;

    margin-top: .85rem;
    padding: 2rem 1.2rem;

    overflow: hidden;
    border-radius: 22px;

    text-align: left;

    background:
        linear-gradient(135deg, #fff, #fff9f7);

    border: 1px solid rgba(0,0,0,.055);

    box-shadow:
        0 14px 36px rgba(0,0,0,.075),
        0 0 0 1px rgba(255,255,255,.55) inset;
}

.legal-hero::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--bm-primary),
            var(--bm-accent)
        );
}

.legal-hero::after {
    content: "";

    position: absolute;
    top: -95px;
    right: -95px;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(248,17,66,.12),
            rgba(229,106,34,.07) 42%,
            transparent 70%
        );

    z-index: -1;
    pointer-events: none;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: .9rem;
    padding: .46rem .9rem;

    border-radius: 999px;

    background: rgba(248,17,66,.075);
    color: var(--bm-primary);

    font-size: .74rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .035em;
    text-transform: uppercase;

    border: 1px solid rgba(248,17,66,.13);

    box-shadow:
        0 8px 18px rgba(248,17,66,.08);
}

.legal-hero h1 {
    max-width: 780px;

    margin: 0 0 .62rem;

    color: #2f2f2f;

    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.015em;
}

.legal-hero p {
    max-width: 700px;

    margin: 0;

    color: #666;

    font-size: .95rem;
    font-weight: 600;
    line-height: 1.58;
}

/* =========================================================
   CONTENT CARD
========================================================= */

.legal-content {
    position: relative;

    width: 100%;

    margin-top: 1.2rem;
    padding: 1.35rem 1.15rem;

    overflow: hidden;
    border-radius: 22px;

    background:
        linear-gradient(180deg, #fff, #fffaf8);

    border: 1px solid rgba(0,0,0,.045);

    box-shadow:
        0 12px 34px rgba(0,0,0,.065);
}

.legal-content::before {
    content: "";

    position: absolute;
    top: 0;
    left: 1.15rem;
    right: 1.15rem;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(248,17,66,.20),
            transparent
        );
}

.legal-content > *:first-child {
    margin-top: 0;
}

.legal-content > *:last-child {
    margin-bottom: 0;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.legal-content h2 {
    position: relative;

    margin: 1.75rem 0 .7rem;
    padding-left: .9rem;

    color: #303030;

    font-family: var(--font-body);
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.28;
}

.legal-content h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: .18rem;

    width: 4px;
    height: 1.05em;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            var(--bm-primary),
            var(--bm-accent)
        );
}

.legal-content p {
    margin: 0 0 .95rem;

    color: #4f4f4f;

    font-size: .95rem;
    font-weight: 500;
    line-height: 1.74;
}

.legal-content strong {
    color: #2f2f2f;
    font-weight: 800;
}

.legal-content a {
    color: var(--bm-primary);

    font-weight: 800;
    text-decoration: none;

    border-bottom: 1px solid rgba(248,17,66,.25);

    transition:
        color .18s ease,
        border-color .18s ease,
        background-color .18s ease;
}

.legal-content a:hover {
    color: var(--bm-accent);
    border-color: rgba(229,106,34,.42);
}

/* =========================================================
   LISTS
========================================================= */

.legal-content ul {
    display: grid;
    gap: .55rem;

    margin: .2rem 0 1.05rem;
    padding-left: 0;

    list-style: none;
}

.legal-content li {
    position: relative;

    padding-left: 1.35rem;

    color: #555;

    font-size: .94rem;
    font-weight: 500;
    line-height: 1.62;
}

.legal-content li::before {
    content: "";

    position: absolute;
    top: .62em;
    left: .25rem;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--bm-primary);

    box-shadow:
        0 0 0 4px rgba(248,17,66,.08);
}

/* =========================================================
   CONTACT
========================================================= */

.legal-contact {
    margin-top: .55rem !important;
}

.legal-contact .js-email-contact,
.legal-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    max-width: 100%;
    min-height: 42px;

    padding: .72rem 1rem;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(248,17,66,.085),
            rgba(229,106,34,.075)
        );

    color: var(--bm-primary);

    font-size: .94rem;
    font-weight: 800;
    line-height: 1.2;
    word-break: break-word;

    border: 1px solid rgba(248,17,66,.14);

    box-shadow:
        0 8px 20px rgba(248,17,66,.075);

    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.legal-contact a:hover {
    transform: translateY(-1px);

    background:
        linear-gradient(
            135deg,
            rgba(248,17,66,.11),
            rgba(229,106,34,.10)
        );

    color: var(--bm-accent);

    border-color: rgba(229,106,34,.22);

    box-shadow:
        0 10px 24px rgba(229,106,34,.11);
}

/* =========================================================
   FOOTER SPACING
========================================================= */

.footer-wrapper {
    margin-top: 0;
}

/* =========================================================
   HEADER · MISMO ESTILO LANDINGS
========================================================= */

.header-top-row {
    display: flex;
    justify-content: center;
}

.header-logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-slogan {
    display: block;
    text-align: center;
}

.desktop-menu,
.mobile-menu,
.menu-toggle,
.bm-nav-overlay {
    display: none;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .legal-main {
        max-width: 540px;
    }

    .header-slogan {
        display: block;
        text-align: center;
        font-size: .82rem;
        margin-top: .2rem;
    }
}

/* =========================================================
   480px
========================================================= */

@media (min-width: 480px) {

    .legal-main {
        padding: 1.15rem 1rem 2.8rem;
    }

    .legal-hero {
        padding: 2.25rem 1.55rem;
        border-radius: 24px;
    }

    .legal-hero h1 {
        font-size: 2.28rem;
    }

    .legal-content {
        padding: 1.65rem 1.45rem;
        border-radius: 24px;
    }

    .legal-content::before {
        left: 1.45rem;
        right: 1.45rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }

    .legal-content p,
    .legal-content li {
        font-size: .97rem;
    }
}

/* =========================================================
   768px
========================================================= */

@media (min-width: 768px) {

    .legal-main {
        padding: 1.35rem 1.2rem 3.2rem;
    }

    .legal-hero {
        margin-top: 1rem;
        padding: 2.6rem 2rem;
        border-radius: 26px;
    }

    .legal-badge {
        font-size: .78rem;
    }

    .legal-hero h1 {
        font-size: 2.65rem;
    }

    .legal-hero p {
        font-size: 1rem;
    }

    .legal-content {
        margin-top: 1.35rem;
        padding: 2rem 2.15rem;
        border-radius: 26px;
    }

    .legal-content::before {
        left: 2.15rem;
        right: 2.15rem;
    }

    .legal-content h2 {
        margin-top: 1.95rem;

        font-size: 1.26rem;
    }

    .legal-content p {
        font-size: 1rem;
        line-height: 1.78;
    }

    .legal-content li {
        font-size: .98rem;
        line-height: 1.7;
    }
}

/* =========================================================
   1024px
========================================================= */

@media (min-width: 1024px) {

    .legal-main {
        max-width: 980px;
        padding: 1.55rem 1rem 3.6rem;
    }

    .legal-hero {
        padding: 2.85rem 2.4rem;
    }

    .legal-hero h1 {
        font-size: 3rem;
    }

    .legal-content {
        padding: 2.35rem 2.65rem;
    }

    .legal-content::before {
        left: 2.65rem;
        right: 2.65rem;
    }

    .legal-content h2 {
        font-size: 1.32rem;
    }

    .logo-img {
        width: 46px;
        height: 46px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .header-slogan {
        font-size: 1.05rem;
        margin-top: .2rem;
    }
}

/* =========================================================
   1280px
========================================================= */

@media (min-width: 1280px) {

    .legal-main {
        max-width: 1000px;
    }

    .legal-hero h1 {
        font-size: 3.12rem;
    }

    .legal-content {
        padding: 2.55rem 2.9rem;
    }

    .legal-content::before {
        left: 2.9rem;
        right: 2.9rem;
    }
}

/* =========================================================
   1400px
========================================================= */

@media (min-width: 1400px) {

    .legal-main {
        max-width: 1020px;
    }

    .legal-hero {
        padding: 3rem 2.6rem;
    }

    .legal-content {
        padding: 2.7rem 3.1rem;
    }

    .legal-content::before {
        left: 3.1rem;
        right: 3.1rem;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .header-slogan {
        font-size: 1.12rem;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .legal-content a,
    .legal-contact a {
        transition: none !important;
    }
}