/* ── Reset & Base ──────────────────────────────────── */
* { box-sizing: border-box; }
body { font-family: 'Arimo', sans-serif; line-height: 1.3; color: #212529; margin: 0; }
body.legal-page { line-height: 1.6; background: #fafafa; }

/* ── Gradients ─────────────────────────────────────── */
.hero-bg    { background: radial-gradient(circle farthest-side at center bottom, #4bb9ca, #17a2b8 65%); }
.contact-bg { background: radial-gradient(circle farthest-side at center bottom, #4bb9ca, #17a2b8 65%); }
.why-bg     { background: radial-gradient(circle farthest-side at center bottom, #4bb9ca, #17a2b8 65%); }

h1, h2, h3, h4, h5 {
    font-family: "Mitr", sans-serif;
    font-size: 40px;
    letter-spacing: 1px;
}
/* ── Navbar ─────────────────────────────────────────── */
#mainNav {
    font-size: 14px;
    box-shadow: 1px 0 18px rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(255,255,255,.3);
    transition: all .3s ease-in-out;
    padding: 10px 15px;
}
#mainNav.nav-solid { background: #17a2b8; }
#mainNav.scrolled {
    padding: 5px 15px;
    box-shadow: 0 3px 6px 3px rgba(0,0,0,.06);
    background: #17a2b8 !important;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-link {
    display: block;
    padding: 6px 11px;
    color: rgba(255,255,255,.88);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { background: rgba(255,255,255,.18); color: #fff; }

/* Nav CTA button */
.nav-cta {
    display: inline-block;
    background: #ffc107;
    color: #333 !important;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.nav-cta:hover { background: #ffcd38; transform: translateY(-1px); }

/* Social icons */
.nav-social { display: flex; align-items: center; }
.nav-social a {
    padding: 6px 10px;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    border-radius: 6px;
    transition: background .15s, color .15s;
    font-size: 15px;
}
.nav-social a:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    margin-left: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #17a2b8;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-bottom: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .m-link {
    padding: 11px 20px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background .15s;
}
.mobile-menu .m-link:hover { background: rgba(255,255,255,.1); color: #fff; }
.mobile-menu .m-divider { height: 1px; background: rgba(255,255,255,.15); margin: 6px 0; }
.mobile-menu .m-social { display: flex; gap: 0; padding: 6px 12px 0; }
.mobile-menu .m-social a { padding: 8px 10px; color: rgba(255,255,255,.85); font-size: 16px; text-decoration: none; border-radius: 6px; transition: background .15s; }
.mobile-menu .m-social a:hover { background: rgba(255,255,255,.15); }
.mobile-menu .m-cta { margin: 10px 20px 2px; text-align: center; padding: 10px; background: #ffc107; color: #333; font-weight: 700; font-size: 13px; border-radius: 6px; text-decoration: none; text-transform: uppercase; letter-spacing: .4px; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-social { display: none; }
    .hamburger { display: flex; }
}

/* ── Dropdown ───────────────────────────────────────── */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 8px;
    min-width: 170px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    overflow: hidden;
}
.dropdown-menu.open { display: block; }
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 9px 16px;
    color: #444;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: background .15s;
}
.dropdown-item:hover { background: #f0fafa; color: #17a2b8; }
.badge-new {
    background: #61d2b4;
    color: #fff;
    font-size: 9px;
    padding: 1px 5px;
    border-radius: 3px;
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
}

/* ── Section common ─────────────────────────────────── */
.section { padding: 70px 0; }
.section-title {
    font-size: 34px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lines {
    margin: 10px auto 0;
    width: 60px;
    border: none;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ffdd57);
    border-radius: 2px;
}
.section-subtitle {
    margin-top: 14px;
    color: #555;
    font-size: 17px;
    font-weight: 400;
}

/* ── Hero buttons ───────────────────────────────────── */
.btn-registro {
    display: inline-block;
    background: #00508a;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.btn-registro:hover {
    background: #1f6ba2;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.btn-ingresar {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.45);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.btn-ingresar:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); }
.btn-ingresar { text-decoration: none; display: inline-block; }
.ver-link { font-size: 13px; color: rgba(255,255,255,.75); text-decoration: underline; transition: color .2s; }
.ver-link:hover { color: #fff; }

/* ── Feature cards ──────────────────────────────────── */
.item-boxes {
    background: #f9f9f9;
    text-align: center;
    padding: 28px 20px 22px;
    min-height: 221px;
    margin-bottom: 0;
    border-radius: 10px;
    border: 1px solid #eef0f2;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-top-color .25s ease;
    border-top: 3px solid transparent;
}
.item-boxes:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(23,162,184,.14);
    border-top-color: #17a2b8;
}
.item-boxes .icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #f0fbfc;
    border-radius: 50%;
    padding: 8px;
}
.item-boxes .icon img { max-width: 46px; }
.item-boxes h3 { font-size: 18px; margin-bottom: 10px; color: #17a2b8; font-weight: 700; }
.item-boxes p { font-size: 14px; color: #666; line-height: 1.55; }

/* ── Why section list ───────────────────────────────── */
#prestamistapp ul { margin-bottom: 16px; padding-left: 0; list-style: none; }
#prestamistapp ul li {
    margin-top: 14px;
    text-align: justify;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
}
#prestamistapp ul li .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(255,255,255,.35);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}
#prestamistapp .cont-icon {
    position: absolute;
    height: 100%;
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
}
#prestamistapp .cont-icon a { color: red; }
#prestamistapp .cont-icon a i { font-size: 90px; opacity: .85; transition: opacity .2s; }
#prestamistapp .cont-icon a:hover i { opacity: 1; }

/* ── Tutorials button ───────────────────────────────── */
.btn-tutoriales {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.5);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .15s;
}
.btn-tutoriales i { font-size: 17px; color: #ff4444; }
.btn-tutoriales:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.8);
    transform: translateY(-1px);
}

/* ── Downloads ──────────────────────────────────────── */
#descargas { text-align: center; padding: 60px 0 50px; }
#descargas .dl-card {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: transform .2s;
}
#descargas .dl-card:hover { transform: translateY(-4px); }
#descargas .icon {
    max-width: 140px;
    display: inline-block;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    transition: box-shadow .2s;
}
#descargas .dl-card:hover .icon { box-shadow: 0 6px 20px rgba(23,162,184,.25); }
#descargas h3 { font-size: 18px; margin-bottom: 10px; color: #17a2b8; font-weight: 700; }

/* ── Contact / Support ──────────────────────────────── */
#contact a { text-decoration: none; }
#contact .cont {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: background .2s;
}
#contact .cont:hover { background: rgba(255,255,255,.18); }
#contact .cont img { width: 80px; min-width: 80px; }
#contact .cont-text h4 { font-size: 1.4rem; font-weight: 700; margin: 0 0 6px; }
#contact .cont-text p { margin: 0 0 10px; font-size: 15px; opacity: .92; }
#contact .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 6px;
    transition: background .2s;
}
#contact .wa-btn:hover { background: #1ebe5d; }

/* ── Pricing ────────────────────────────────────────── */
#pricing table { border-collapse: collapse; width: 100%; font-size: 14px; }
#pricing table thead { background: #61d2b4; }
#pricing table thead td,
#pricing table thead th { border: none; font-weight: normal; }
#pricing table thead th {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 6px 6px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.2);
    border-bottom: none;
    letter-spacing: .5px;
}
#pricing table tbody tr:nth-child(odd) td,
#pricing table tbody tr:nth-child(odd) th { background: #f9f9f9; }
#pricing table tbody tr:nth-child(even) td,
#pricing table tbody tr:nth-child(even) th { background: #fff; }
#pricing table tbody tr th {
    text-align: right;
    vertical-align: middle;
    border-left: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
    text-transform: uppercase;
    padding: 6px 10px;
    font-size: 12px;
    color: #555;
}
#pricing table tbody tr td {
    text-align: center;
    border-right: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
    padding: 6px 8px;
}
#pricing table tbody tr td .tick { color: #2ca01c; font-size: 15px; }
#pricing table tbody tr td.x { color: #dc3545; }
#pricing .infoPlan { margin-top: 20px; padding: 16px 20px; background: #f9f9f9; border-radius: 8px; border-left: 3px solid #61d2b4; }
#pricing .infoPlan p { margin-bottom: .4em; font-size: 14px; color: #555; }
#pricing .infoPlan p:last-child { margin-bottom: 0; }
.billing-toggle { display: inline-flex; align-items: center; background: #e9ecef; border-radius: 50px; padding: 4px; gap: 2px; margin: 12px 0 4px; }
.billing-toggle button { border: none; background: transparent; padding: 7px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; color: #666; transition: all .2s; }
.billing-toggle button.active { background: #61d2b4; color: #fff; box-shadow: 0 2px 8px rgba(97,210,180,.4); }
.billing-toggle button:not(.active):hover { background: rgba(97,210,180,.15); color: #444; }
.annual-badge { display: inline-block; background: #ffc107; color: #333; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-left: 6px; vertical-align: middle; }
.price-original { display: block; font-size: 11px; color: #aaa; text-decoration: line-through; line-height: 1; margin-bottom: 1px; }
.price-annual-total { display: block; font-size: 11px; color: #61d2b4; font-weight: 600; margin-top: 3px; }
td.annual-hide { display: none; }

/* ── Testimonials ───────────────────────────────────── */
#testimonial { background: #f4f6f8; overflow: hidden; position: relative; padding: 60px 0 50px; }
.t-carousel { position: relative; }
.t-track-wrap { overflow: hidden; }
.t-track { display: flex; align-items: stretch; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.t-slide { flex: 0 0 calc(100% / 3); min-width: 0; padding: 0 10px; box-sizing: border-box; display: flex; }
@media (max-width: 900px) { .t-slide { flex: 0 0 50%; } }
@media (max-width: 580px) { .t-slide { flex: 0 0 100%; } }
.t-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    position: relative;
    flex: 1;
}
.t-card::before {
    content: '\201C';
    font-size: 56px;
    line-height: 1;
    color: #61d2b4;
    opacity: .45;
    position: absolute;
    top: 8px;
    right: 14px;
    font-family: Georgia, serif;
}
.t-card .t-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.t-card .t-head img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #61d2b4; }
.t-card .t-head h3 { font-size: 15px; font-weight: 700; margin: 0; color: #222; }
.t-card p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }
.t-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.14);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #17a2b8;
    font-size: 16px;
    transition: background .2s, color .2s;
    z-index: 10;
}
.t-arrow:hover { background: #17a2b8; color: #fff; }
.t-arrow.prev { left: -18px; }
.t-arrow.next { right: -18px; }
@media (max-width: 767px) { .t-arrow { display: none; } }
.t-dots { margin-top: 24px; text-align: center; }
.t-dot { display: inline-block; width: 9px; height: 9px; background: #ccc; border-radius: 50%; margin: 0 4px; cursor: pointer; transition: background .2s, transform .2s; }
.t-dot.active { background: #61d2b4; transform: scale(1.3); }

/* ── Footer ─────────────────────────────────────────── */
footer { padding: 14px 0 10px; border-top: 1px solid #eaeaea; background: #fafafa; }
footer a { color: #17a2b8; text-decoration: none; }
footer a:hover { color: #61d2b4; }
footer .copyright { padding: 6px 3px 0; text-align: center; font-size: 13px; color: #888; }
footer .copyright p { margin: 0; }

/* ── Back to top ────────────────────────────────────── */
.back-to-top { display: none; position: fixed; bottom: 20px; right: 18px; z-index: 100; }
.back-to-top.visible { display: block; }
.back-to-top i {
    display: block;
    width: 38px; height: 38px;
    line-height: 38px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    border-radius: 6px;
    background: #61d2b4;
    box-shadow: 0 3px 10px rgba(0,0,0,.15);
    transition: background .2s, transform .15s;
}
.back-to-top:hover i { background: #17a2b8; transform: translateY(-2px); }

/* ── Loader ─────────────────────────────────────────── */
#loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,.95); z-index: 9999999; }
.spinner { width: 40px; height: 40px; top: 45%; position: relative; margin: 0 auto; }
.double-bounce1, .double-bounce2 {
    width: 100%; height: 100%;
    border-radius: 50%;
    background-color: #61d2b4;
    opacity: .6;
    position: absolute; top: 0; left: 0;
    animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 { animation-delay: -1s; }
@keyframes sk-bounce {
    0%, 100% { transform: scale(0); }
    50%       { transform: scale(1); }
}

/* ── Legal pages ─────────────────────────────────────── */
.page-hero { padding: 80px 0 40px; text-align: center; color: #fff; }
.page-hero h1 { font-size: 32px; font-weight: 800; margin: 0 0 8px; }
.page-hero p  { font-size: 15px; opacity: .88; margin: 0; }

.legal-body { max-width: 1140px; margin: 0 auto; padding: 48px 24px 64px; text-align: justify; }
.legal-body h2 {
    font-size: 18px;
    font-weight: 700;
    color: #17a2b8;
    margin: 2rem 0 .5rem;
    padding-bottom: 6px;
    border-bottom: 2px solid #e8f8f5;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p  { font-size: 15px; color: #444; margin: 0 0 .9rem; }
.legal-body ul { margin: 0 0 .9rem 1.4rem; padding: 0; }
.legal-body ul li { font-size: 15px; color: #444; margin-bottom: .4rem; }
.legal-body a { color: #17a2b8; }
.legal-body a:hover { color: #61d2b4; }
.legal-body .effective {
    display: inline-block;
    background: #e8f8f5;
    border-left: 3px solid #61d2b4;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    margin-top: 2rem;
}
.legal-body .notice {
    display: block;
    background: #fff8e1;
    border-left: 3px solid #ffc107;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    margin-bottom: 1.5rem;
}
.legal-accent h2 { color: #61d2b4; }

/* ── Stats strip ─────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 32px;
}
.stat-item { color: #fff; padding: 8px 0; }
.stat-num { font-size: 40px; font-weight: 800; line-height: 1; font-family: 'Mitr', sans-serif; }
.stat-num span { font-size: 28px; }
.stat-label { font-size: 12px; opacity: .8; margin-top: 6px; text-transform: uppercase; letter-spacing: .6px; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }

/* ── CTA final ───────────────────────────────────────── */
.cta-section {
    background: radial-gradient(circle farthest-side at center bottom, #70dfc1, #17a2b8 70%);
    padding: 64px 24px;
    text-align: center;
    color: #fff;
}
.cta-section h2 { font-size: 30px; font-weight: 800; margin: 0 0 12px; }
.cta-section p  { font-size: 16px; opacity: .9; margin: 0 0 28px; }
.cta-btn {
    display: inline-block;
    background: #ffc107;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.cta-btn:hover { background: #ffcd38; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
@media (max-width: 767px) { .cta-section h2 { font-size: 22px; } }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid #e9ecef; }
.faq-item:first-child { border-top: 1px solid #e9ecef; }
.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: color .2s;
}
.faq-btn:hover { color: #17a2b8; }
.faq-btn.open { color: #17a2b8; }
.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e8f8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #17a2b8;
    transition: transform .3s, background .2s;
    line-height: 1;
}
.faq-btn.open .faq-icon { transform: rotate(45deg); background: #17a2b8; color: #fff; }
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease, padding .35s ease;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding: 0 4px;
}
.faq-answer.open { max-height: 300px; padding: 0 4px 18px; }

/* ── Scroll reveal ───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 767px) {
    .section { padding: 36px 0 24px; }
    .section-title { font-size: 26px !important; }
    .item-boxes { min-height: auto; }
    .item-boxes .icon { display: none; }
    #contact .cont { flex-direction: column; text-align: center; padding: 22px 20px; }
    #contact .cont img { margin: 0 auto; }
    .hero-text-desc { line-height: 30px !important; }
    .legal-body { padding: 32px 16px 48px; }
}
