:root {
    --primary: #0057D9;
    --primary-dark: #0040a3;
    --secondary: #FF3366;
    --secondary-dark: #e12154;
    --bg: #F7F9FC;
    --bg-alt: #ffffff;
    --text: #111111;
    --text-muted: #4b5563;
    --border: #e5e7eb;
    --accent-green: #22C55E;
    --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.12);
    --radius-lg: 18px;
    --radius-full: 999px;
    --transition: 0.2s ease;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* HEADER / NAVBAR */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(247, 249, 252, 0.9);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: radial-gradient(circle at 0% 0%, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.logo-text-main {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.logo-text-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nav-links a {
    position: relative;
    padding-bottom: 0.2rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 999px;
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-nav {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.08);
    color: var(--accent-green);
    font-weight: 500;
    display: none;
}

.btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(130deg, var(--secondary), var(--primary));
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.36);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(148, 163, 184, 0.4);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
}

.mobile-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.3rem;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px 0;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.2s, opacity 0.2s;
}

/* HERO SECTION */
.hero {
    padding: 3.4rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 3.2rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 500;
    margin-bottom: 1.1rem;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: #111827;
    color: #e5e7eb;
    font-size: 0.7rem;
}

.hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.35rem;
    line-height: 1.15;
    margin-bottom: 0.9rem;
    letter-spacing: -0.02em;
}

.hero-title span.gradient {
    background: linear-gradient(120deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 0.99rem;
    max-width: 35rem;
    margin-bottom: 1.6rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.1rem;
}

.hero-secondary-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-secondary-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #86efac, #16a34a);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-trust strong {
    color: var(--text);
}

.hero-card {
    position: relative;
    background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.4), #020617);
    border-radius: 26px;
    padding: 1.6rem 1.5rem 1.4rem;
    color: #e5e7eb;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.7);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    pointer-events: none;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.hero-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-card-badge {
    font-size: 0.72rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.18);
    color: #bbf7d0;
    border: 1px solid rgba(74, 222, 128, 0.45);
}

.hero-card-rows {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hero-metrics {
    display: grid;
    gap: 0.65rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #cbd5f5;
}

.metric span.value {
    font-weight: 600;
    color: #e5e7eb;
}

.hero-chart {
    border-radius: 18px;
    background: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.4), rgba(15, 23, 42, 0.9));
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.74rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.28rem;
    height: 72px;
}

.bar {
    flex: 1;
    height: 100%;
    min-width: 12px;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(to top, rgba(148, 163, 184, 0.35), rgba(148, 163, 184, 0.1));
    position: relative;
    overflow: hidden;
}

.bar-inner {
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 999px;
    background: linear-gradient(to top, #22c55e, #a3e635);
    width: auto;
}

.bar-inner.alt {
    background: linear-gradient(to top, #f97316, #facc15);
}

.chart-legend {
    display: flex;
    justify-content: space-between;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: #9ca3af;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
    margin-right: 0.25rem;
}

.dot-green {
    background: linear-gradient(to bottom, #22c55e, #16a34a);
}

.dot-gray {
    background: linear-gradient(to bottom, #6b7280, #4b5563);
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.74rem;
    color: #9ca3af;
}

.hero-card-footer span.highlight {
    color: #e5e7eb;
    font-weight: 500;
}

/* SECTIONS GENERAL */
section {
    padding: 3.2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.1rem;
}

.section-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.65rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 32rem;
    margin: 0 auto;
}

.section-title span.gradient {
    background: linear-gradient(120deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.2rem 1.1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.11);
    border-color: rgba(59, 130, 246, 0.32);
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.card-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.card-text {
    font-size: 0.87rem;
    color: var(--text-muted);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    background: rgba(243, 244, 246, 0.85);
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* DIFERENCIAIS SECTION */
.diferenciais-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 2rem;
    align-items: flex-start;
}

.diferenciais-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
}

.diferencial-item {
    display: flex;
    gap: 0.65rem;
}

.diferencial-check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--accent-green);
    margin-top: 0.1rem;
}

.diferencial-text-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.18rem;
}

.diferencial-text-body {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.diferenciais-aside {
    background: #020617;
    border-radius: 22px;
    padding: 1.35rem 1.3rem;
    color: #e5e7eb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.75);
    position: relative;
    overflow: hidden;
}

.diferenciais-aside::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    pointer-events: none;
}

.diferenciais-aside-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.diferenciais-aside-sub {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.8rem;
}

.diferenciais-aside-list {
    font-size: 0.82rem;
    display: grid;
    gap: 0.3rem;
    margin-bottom: 0.7rem;
}

.diferenciais-aside-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.diferenciais-aside-list span.bullet {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(125deg, var(--secondary), var(--primary));
}

.diferenciais-aside-highlight {
    font-size: 0.8rem;
    color: #e5e7eb;
}

.diferenciais-aside-highlight strong {
    color: #f97316;
}

/* PERFORMANCE SECTION */
.perf-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.perf-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.4rem;
}

.perf-item {
    display: flex;
    gap: 0.6rem;
}

.perf-icon {
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.perf-text-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.perf-text-body {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.perf-box {
    background: var(--bg-alt);
    border-radius: 20px;
    padding: 1.4rem 1.3rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-soft);
    font-size: 0.86rem;
}

.perf-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.06);
    color: var(--accent-green);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(34, 197, 94, 0.55);
}

.perf-metric-row {
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    padding-top: 0.3rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.4);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.perf-metric-row strong {
    color: var(--text);
}

/* FEATURES GRID (VENDAS, LOGISTICA, SEO) */
.features-section {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.2rem 1.8rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.features-col-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.features-list {
    list-style: none;
    font-size: 0.87rem;
    color: var(--text-muted);
    display: grid;
    gap: 0.28rem;
}

.features-list li::before {
    content: "• ";
    color: var(--primary);
    font-weight: 600;
    margin-right: 0.15rem;
}

/* PLANOS PREVIEW */
/* Seletor de Período de Pagamento */
.billing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    background: rgba(226, 232, 240, 0.5);
    border-radius: var(--radius-full);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.billing-option {
    position: relative;
    padding: 0.6rem 1.4rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.billing-option:hover:not(.active) {
    color: var(--text);
    background: rgba(255, 255, 255, 0.5);
}

.billing-option.active {
    background: linear-gradient(130deg, var(--secondary), var(--primary));
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.discount-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    font-weight: 700;
}

.billing-option.active .discount-badge {
    background: rgba(255, 255, 255, 0.3);
}

.billing-savings {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

/* Animação suave dos preços */
.price-value {
    display: inline-block;
    transition: opacity 0.15s ease;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
}

.plano-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.3rem 1.1rem 1.2rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    font-size: 0.86rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}

.plano-card.popular {
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.plano-tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.plano-name {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.plano-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    font-size: 0.7rem;
    padding: 0.16rem 0.5rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
    font-weight: 600;
}

.plano-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.plano-price {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    margin: 0.4rem 0;
}

.plano-price-period {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plano-features {
    list-style: none;
    margin: 0.8rem 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.plano-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text);
}

.plano-features li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.plano-cta {
    margin-top: auto;
    padding-top: 0.5rem;
}

.plano-cta .btn {
    width: 100%;
    font-size: 0.82rem;
}

.plano-detalhes-link {
    font-size: 0.7rem;
    color: var(--primary);
    margin-left: 0.3rem;
    text-decoration: underline;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.plano-detalhes-link:hover {
    opacity: 1;
}

.recurso-incluido-badge {
    display: inline-block;
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 0.4rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.recurso-enterprise-badge {
    display: inline-block;
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    font-weight: 600;
    margin-bottom: 0.4rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.recurso-business-badge {
    display: inline-block;
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.4rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* TESTEMUNHOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.1rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    font-size: 0.86rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.testimonial-author {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #6b7280;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 0.9rem 0.9rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    font-size: 0.86rem;
}

.faq-q {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.faq-a {
    color: var(--text-muted);
}

/* CTA FINAL */
.cta-final {
    text-align: center;
    padding: 2.7rem 0 2.4rem;
    background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.4), #020617);
    color: #e5e7eb;
    margin-top: 1.5rem;
}

.cta-final-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-final-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.65rem;
    margin-bottom: 0.7rem;
    letter-spacing: -0.02em;
}

.cta-final-text {
    font-size: 0.95rem;
    color: #cbd5f5;
    margin-bottom: 1.3rem;
}

.cta-final-sub {
    margin-top: 0.7rem;
    font-size: 0.78rem;
    color: #9ca3af;
}

.cta-final-sub strong {
    color: #e5e7eb;
}

/* FOOTER */
footer {
    padding: 1.5rem 0 1.7rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: var(--primary-dark);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 2.5rem;
    }

    .hero-card {
        max-width: 315px;
        margin: 0 auto;
    }

    .diferenciais-grid,
    .perf-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .planos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3,
    .grid-4,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-links {
        display: none;
    }

    .badge-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 720px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .grid-3,
    .grid-4,
    .features-grid,
    .testimonials-grid,
    .planos-grid,
    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Ajustes do seletor de período para mobile */
    .billing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 0.4rem;
    }

    .billing-option {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .billing-savings {
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .features-section {
        padding: 1.7rem 1.3rem;
    }

    .cta-final-title {
        font-size: 1.4rem;
    }

    .hero-badge {
        font-size: 0.72rem;
    }

    header {
        backdrop-filter: blur(12px);
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-card-rows {
        grid-template-columns: 1fr;
    }
}

/* Botão flutuante WhatsApp - agora carregado dinamicamente via /js/whatsapp-widget.js */