:root {
    --bg: #0a0d14;
    --bg2: #0c1220;
    --text: #e9edf5;
    --muted: #a7afbe;
    --brand: #6b8cff;
    --brand2: #17009c;
    --accent: #2ee6a6;
    --warn: #ffc857;
    --line: rgba(255, 255, 255, .12);
    --card: #0f1524;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --maxw: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(180deg, var(--bg), var(--bg2));
    color: var(--text);
    font: 400 16px/1.65 Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

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

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

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 20px;
}

.center {
    text-align: center;
}

.badge {
    display: inline-block;
    font-size: 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--muted);
}

.kicker {
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent);
    font-size: 12px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(10, 15, 24, .55);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: .2px;
}

.brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.navlinks {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.navlinks a {
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--muted);
}

.navlinks a.active,
.navlinks a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero .bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 360px at 18% -8%, rgba(142, 107, 255, .28), transparent), radial-gradient(800px 300px at 82% 0%, rgba(46, 230, 166, .18), transparent), url('assets/hero-office.jpg') center/cover no-repeat;
    opacity: .24;
    filter: saturate(110%) blur(2px);
}

.hero .wrap {
    position: relative;
    padding: 96px 0;
}

h1 {
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.12;
    margin: 0 0 10px;
}

h1 .accent {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 760px;
}

.section {
    padding: 70px 0;
}

.section h2 {
    font-size: clamp(24px, 3.8vw, 36px);
    margin: 0 0 8px;
}

.section .sub {
    color: var(--muted);
    margin: 0 0 26px;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    font-weight: 800;
    box-shadow: var(--shadow);
    border: 0;
    cursor: pointer;
    text-align: center;
}

.btn.outline {
    background: transparent;
    border: 1px solid var(--line);
}

.btn.ghost {
    background: transparent;
    opacity: .86;
}

.btn.block {
    display: block;
    width: 100%;
}

.btn:hover {
    transform: translateY(-1px);
    transition: .15s ease;
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: linear-gradient(180deg, var(--card), #0f1421);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.card .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2662d9 0%, #0206cf 100%);
    margin-bottom: 10px;
}

.card h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

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

.feature .panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255, 255, 255, .03);
}

@media (max-width:880px) {
    .feature {
        grid-template-columns: 1fr;
    }
}

.stats {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat {
    border-radius: var(--radius);
    padding: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line);
    text-align: center;
}

.stat .value {
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    color: transparent;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.checklist li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--accent);
}

.blog {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.post {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255, 255, 255, .03);
}

.post time {
    font-size: 12px;
    color: var(--muted);
}

.post h3 {
    margin: 0;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 12px;
    border: 1px solid var(--line);
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--muted);
}

.post a.read {
    margin-top: auto;
}

.contact-grid {
    grid-template-columns: 1.05fr 1fr;
}

.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, .03);
}

@media (max-width:860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    border-top: 1px solid var(--line);
    padding: 26px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.legal-page main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #111;
}

.legal-page h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: .8rem;
    color: #222;
}

.legal-page h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: .6rem;
    color: #333;
}

.legal-page p,
.legal-page li {
    margin-bottom: .8rem;
}

.legal-page ul {
    padding-left: 1.2rem;
    list-style: disc;
}

.legal-page .note {
    background: #f9fafb;
    border-left: 4px solid #3b82f6;
    padding: .75rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: .95rem;
    color: #111;
}

.legal-page footer {
    margin-top: 3rem;
    font-size: .9rem;
    color: #666;
    text-align: center;
}

body.legal-page {
    background-color: #f9fafb;
    color: #1f2937;
}

.legal-page main {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
    color: #111827;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1d4ed8;
}

.legal-page footer {
    background: #111827;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
}

body.legal-page {
    background: #0f172a;
    color: #e5e7eb;
    line-height: 1.75;
}

body.legal-page main {
    max-width: 900px;
    margin: 2rem auto;
    background: #111827;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

body.legal-page h1,
body.legal-page h2,
body.legal-page h3 {
    color: #f3f4f6;
    margin-top: 1.5rem;
}

body.legal-page a {
    color: #38bdf8;
    text-decoration: underline;
}

.legal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: .7rem 1.1rem;
    border-radius: .6rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform .15s ease, opacity .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    opacity: .95;
}

.btn-primary {
    background: #22c55e;
    color: #052e16;
}

.btn-secondary {
    background: #3b82f6;
    color: #06172a;
}

footer {
    background: #0b1220;
    color: #cbd5e1;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

footer a {
    color: #a5b4fc;
}

footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

footer .copyright {
    margin-top: 1rem;
    text-align: center;
    font-size: .95rem;
    opacity: .8;
}

:root {
    --bg-deep: #0b1020;
    --bg-grad-start: #0b1020;
    --bg-grad-end: #111936;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.12);
    --text: #e7eaf3;
    --muted: #b8c2d8;
    --brand: #7c3aed;
    --brand-2: #22c55e;
    --accent: #38bdf8;
    --danger: #ef4444;
}

body.legal-page {
    background: radial-gradient(1200px 800px at 10% -10%, rgba(124, 58, 237, .25), transparent 60%), radial-gradient(1200px 800px at 110% 10%, rgba(34, 197, 94, .18), transparent 60%), linear-gradient(180deg, var(--bg-grad-start), var(--bg-grad-end));
    color: var(--text);
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    line-height: 1.8;
}

.legal-hero {
    padding: clamp(3rem, 6vw, 6rem) 1rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.legal-hero .container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 0 0 .75rem;
    letter-spacing: .2px;
}

.legal-hero p.sub {
    margin: 0 auto;
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.badges {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: .35rem .65rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: .85rem;
    color: var(--muted);
}

.legal-shell {
    max-width: 1000px;
    margin: 2rem auto 3rem;
    padding: 0 1rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width:960px) {
    .legal-grid {
        grid-template-columns: 260px 1fr;
    }
}

.toc {
    position: sticky;
    top: 1rem;
    align-self: start;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1rem;
}

.toc h3 {
    margin-top: 0;
    font-size: 1rem;
    letter-spacing: .2px;
    color: #f0f3ff;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: .5rem 0 0 0;
}

.toc li {
    margin: .35rem 0;
}

.toc a {
    color: var(--muted);
    text-decoration: none;
}

.toc a:hover {
    color: var(--accent);
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 1.25rem;
    padding: clamp(1rem, 2vw, 1.75rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.legal-content h2,
.legal-content h3 {
    color: #f4f7ff;
    margin-top: 1.6rem;
    margin-bottom: .6rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    border-left: 4px solid var(--brand);
    padding-left: .6rem;
}

.legal-content h3 {
    font-size: 1.15rem;
    border-left: 3px solid rgba(124, 58, 237, .5);
    padding-left: .5rem;
}

.legal-content p,
.legal-content li {
    color: var(--text);
}

.legal-content p {
    margin: .75rem 0;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.25rem;
}

.callout {
    border-left: 4px solid var(--accent);
    background: rgba(56, 189, 248, .08);
    padding: .9rem 1rem;
    border-radius: .75rem;
    color: #d9f2ff;
}

.legal-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: .8rem 1rem;
    border-radius: .9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-primary {
    color: #071b12;
    background: linear-gradient(180deg, #34d399, #22c55e);
    border-color: rgba(34, 197, 94, .4);
}

.btn-secondary {
    color: #07121f;
    background: linear-gradient(180deg, #60a5fa, #3b82f6);
    border-color: rgba(59, 130, 246, .45);
}

footer {
    background: linear-gradient(180deg, #0b0f1c, #0a0e1a);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer .footer-inner {
    gap: 1.5rem;
}

footer a:hover {
    opacity: .9;
}

body.legal-page {
    background: inherit;
    color: var(--text);
}

.legal-hero {
    padding: clamp(2.5rem, 5vw, 5rem) 0 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
    border-bottom: 1px solid var(--line);
}

.legal-hero .container {
    max-width: var(--maxw);
    padding: 0 20px;
}

.legal-hero h1 {
    margin: 0 0 .6rem;
}

.legal-hero p.sub {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

.badges {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap
}

.badge {
    padding: .35rem .65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: .85rem
}

.legal-shell {
    max-width: var(--maxw);
    margin: 1.5rem auto 3rem;
    padding: 0 20px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem
}

@media (min-width:980px) {
    .legal-grid {
        grid-template-columns: 260px 1fr;
    }
}

.toc {
    position: sticky;
    top: 16px;
    align-self: start;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.toc h3 {
    margin: 0 0 .5rem;
    font-size: 1rem
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.toc li {
    margin: .4rem 0
}

.toc a {
    color: var(--muted)
}

.toc a:hover {
    color: #fff
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1rem, 2vw, 1.5rem);
    box-shadow: var(--shadow)
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    border-left: 4px solid var(--brand);
    padding-left: .6rem
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1rem;
    border-left: 3px solid rgba(255, 255, 255, .12);
    padding-left: .5rem;
    color: #fff
}

.legal-content p {
    color: var(--text);
    margin: .75rem 0
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.15rem
}

.callout {
    border-left: 4px solid var(--brand);
    background: rgba(255, 255, 255, .04);
    padding: .9rem 1rem;
    border-radius: .75rem;
    color: var(--text)
}

.legal-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 2rem
}

.btn {
    display: inline-block;
    padding: .8rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--line);
    margin-top: 22px;
    background: rgba(255, 255, 255, .06)
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-primary {
    background: linear-gradient(180deg, var(--accent), #22c55e);
    color: #051a12;
    border-color: rgba(34, 197, 94, .45)
}

.btn-secondary {
    background: linear-gradient(180deg, var(--brand), var(--brand2));
    color: #0b0f1a;
    border-color: rgba(107, 140, 255, .45)
}

footer {
    background: linear-gradient(180deg, var(--bg2), #0a0e1a)
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    background: linear-gradient(180deg, #25D366, #1ebe57);
    color: #04130a;
    font-weight: 800;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .35);
}

.whatsapp-float:hover {
    transform: translateY(-2px)
}

.icon-whats {
    margin-left: 10px;
    margin-right: 10px;
}

.icon-inst {
    margin-left: 5px;
    margin-right: 5px;
}
.icon-fc {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 3px;
}

.testis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 12px
}

.testi {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow)
}

.testi .who {
    font-weight: 700
}

.testi .meta {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 2px
}

.faq dt {
    font-weight: 800;
    margin-top: 12px
}

.faq dd {
    margin: 6px 0 10px 0;
    color: var(--muted)
}

.footer .social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px
}

.footer .social a {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    font-weight: 700
}

.footer .social a:hover {
    transform: translateY(-1px)
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #25D366, #1ebe57);
    border: 1px solid rgba(0, 0, 0, .2);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
    color: #04130a;
    text-indent: 0;
    font-size: 0;
}

.whatsapp-float:hover {
    transform: translateY(-2px)
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block
}

.whatsapp-float .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media (max-width:768px) {
    .nav .navlinks a {
        padding: 10px 12px
    }

    .btn {
        display: inline-block
    }

    .btn.block {
        display: block;
        width: 100%
    }

    .grid.cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))
    }

    .hero .wrap {
        padding-top: 72px;
        padding-bottom: 56px
    }
}

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

    .grid {
        gap: 12px
    }

    .card {
        padding: 14px
    }

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

    h1 {
        font-size: 1.75rem
    }
}

.schedule {
    display: flex;
    justify-content: center;
    margin: 124px 0 24px;
}

.schedule-card {
    width: 100%;
    max-width: 720px;
    background: #0206cf;
    color: #fff;
    border-radius: var(--radius);
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, .15);
    text-align: center;
    box-shadow: none;
}

.schedule-title {
    font-weight: 900;
    letter-spacing: .2px;
    font-size: 18px;
    margin-bottom: 10px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px 18px;
    align-items: center;
}

.schedule-day {
    text-align: right;
    font-weight: 700;
}

.schedule-time {
    text-align: left;
    color: white;
}

@media (max-width:600px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 6px 0;
    }

    .schedule-day,
    .schedule-time {
        text-align: center;
    }
}