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

:root {
    --primary: #062d5f;
    --primary-fg: #ffffff;
    --gold: #ef8c51;
    --gold-hover: #ef8c51;
    --dark: #03091a;
    --foreground: #0d1b2e;
    --muted: #5c728a;
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.1);
    --card: #ffffff;
    --bg: #f8f9fc;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--foreground);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

nav {
    position: relative;
    z-index: 20;
    max-width: 1024px;
    margin: 0 auto;
    padding: 35px 25px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-img {
    height: 36px;
    width: auto;
}

.nav-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.875rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
    white-space: nowrap;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-ghost:active {
    transform: scale(0.97);
}

.hero {
    position: relative;
    padding-bottom: 96px;
    padding-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-ov1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(3, 9, 26, 0.65),
        rgba(3, 9, 26, 0.18),
        transparent
    );
}

.hero-ov2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.22),
        transparent,
        rgba(3, 9, 26, 0)
    );
}

.hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    padding: 96px 20px 48px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: white;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero p {
    font-size: 1.075rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 460px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(232, 150, 30, 0.28);
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-primary:hover {
    background: var(--gold-hover);
    color: #1a1a1a;
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-primary svg,
.btn-ghost svg {
    width: 16px;
    height: 16px;
}

section.white {
    background: white;
}

.sec-pad {
    padding: 112px 0;
}

.sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec-inner-md {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sec-inner-sm {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--foreground);
}

.features-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
}

.mock-col {
    width: 390px;
    flex-shrink: 0;
}

.mock-card {
    border-radius: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.mock-chrome {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.mock-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ring-row {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ring svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring span {
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
}

.mi {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.mi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mi-lbl {
    flex: 1;
    font-size: 14px;
}

.mi-lbl.done {
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.3);
}

.mi-lbl.cur {
    color: rgba(0, 0, 0, 0.7);
}

.mi-lbl.pen {
    color: rgba(0, 0, 0, 0.4);
}

.mi-chk {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mi-chk.filled {
    background: var(--primary);
    border: 2px solid var(--primary);
}

.mi-chk.empty {
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.mi-chk.half {
    border: 2px solid var(--gold);
}

.feat-col {
    flex: 1;
}

.feat-header {
    margin-bottom: 40px;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feat-card {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    transition: all 0.3s;
    cursor: default;
}

.feat-card:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
}

.feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(6, 45, 95, 0.14),
        rgba(6, 45, 95, 0.05)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.feat-card:hover .feat-icon {
    transform: scale(1.07);
}

.feat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feat-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.feat-card p {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.55;
}

.processo-header {
    text-align: center;
    margin-bottom: 64px;
}

.fases-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.dashed-line {
    display: none;
    position: absolute;
    top: 28px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 0;
    border-top: 2px dashed rgba(6, 45, 95, 0.18);
}

.fase {
    text-align: center;
    padding: 0 8px;
}

.fase-num {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(6, 45, 95, 0.2);
}

.fase h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 8px;
    line-height: 1.35;
}

.fase p {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.55;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: white;
    padding: 24px;
    overflow: hidden;
}

.faq-quote-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    stroke: rgba(6, 45, 95, 0.06);
    fill: none;
    stroke-width: 1.5;
    transform: rotate(180deg);
}

.faq-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.faq-star {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    stroke: var(--primary);
}

.faq-text {
    font-size: 0.875rem;
    color: var(--foreground);
    line-height: 1.65;
    margin-bottom: 20px;
    position: relative;
}

.faq-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 45, 95, 0.08);
    border: 1.5px solid rgba(6, 45, 95, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.faq-role {
    font-size: 0.75rem;
    color: var(--muted);
}

.cta-sec {
    position: relative;
    padding: 112px 20px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
}

.cta-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    pointer-events: none;
    user-select: none;
}

.cta-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark), transparent, var(--dark));
}

.cta-in {
    position: relative;
    z-index: 10;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-in h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: white;
    margin-bottom: 16px;
}

.cta-in p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 48px 20px;
    background: #f8f9fc;
}

.foot {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.foot-logo {
    display: flex;
    align-items: center !important;
    gap: 8px;
    text-decoration: none;
}

.foot-logo-icon {
    width: 26px;
    height: 26px;
    stroke: var(--foreground);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.foot-logo span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
}

.foot-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.875rem;
}

.foot-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.foot-links a:hover {
    color: var(--foreground);
}

.foot-copy {
    font-size: 0.75rem;
    color: var(--muted);
}

@media (max-width: 1023px) {
    .features-wrap {
        flex-direction: column;
    }

    .mock-col {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .dashed-line {
        display: block;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .fases-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 479px) {
    .fases-row {
        grid-template-columns: 1fr;
    }
}
/* Language selector */
.lang-select { position: relative; }
.lang-select details { position: relative; }
.lang-select summary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    backdrop-filter: blur(8px);
    list-style: none;
    white-space: nowrap;
    user-select: none;
}
.lang-select summary::-webkit-details-marker { display: none; }
.lang-select summary:hover { background: rgba(255,255,255,0.2); }
.lang-select .lang-flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.lang-select .lang-chevron {
    width: 12px;
    height: 12px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.lang-select details[open] .lang-chevron { transform: rotate(180deg); }
.lang-select .lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.193);
    border-radius: 12px;
    padding: 6px;
    min-width: 60px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 99;
}
.lang-select .lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #0d1b2e;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: background 0.15s;
}
.lang-select .lang-dropdown a:hover { background: rgba(6,45,95,.06); }
.lang-select .lang-dropdown a.active { background: rgba(6,45,95,.06); }
