/* ============================================================
   style.css — Connect Clínicas
   Paleta: #00b87c (verde principal) + #0f2c42 (navy escuro) + #ffffff (branco)
   ============================================================ */

:root {
    --bg: #f7fbfd;
    --surface: #ffffff;
    --surface-2: #f1f7fa;
    --surface-3: #e9f3f6;
    --text: #12304a;
    --text-strong: #102d47;
    --muted: #607489;
    --border: rgba(15, 52, 78, 0.10);
    --accent: #00b87c;
    --accent-2: #009865;
    --blue: #2678e8;
    --cyan: #23b9c8;
    --purple: #7567ed;
    --amber: #e7a829;
    --danger: #e45757;
    --dark: #092238;
    --dark-2: #0e3049;
    --shadow: 0 20px 55px rgba(22, 65, 88, 0.12);
    --radius: 22px;
    --transition: all 0.28s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}
a { text-decoration: none; }
.container { max-width: 1240px; }
.section-pad { padding: 100px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(0, 184, 124, 0.22);
    border-radius: 999px;
    color: var(--accent-2);
    background: rgba(0, 184, 124, 0.07);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-title {
    color: var(--text-strong);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 800;
}
.section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 680px;
}

/* ─── HEADER & NAVBAR ──────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(247, 251, 253, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.navbar-shell {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(19, 62, 84, 0.07);
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--text-strong);
    font-weight: 900;
    letter-spacing: -0.04em;
    white-space: nowrap;
}
.brand-mark {
    width: 36px; height: 28px; position: relative; display: inline-block;
}
.brand-mark i {
    position: absolute; width: 14px; height: 27px; border-radius: 7px; transform: skewX(-28deg);
}
.brand-mark i:nth-child(1) { left: 0; background: #0f3552; }
.brand-mark i:nth-child(2) { left: 9px; background: #00b87c; }
.brand-mark i:nth-child(3) { left: 18px; background: #20b6bf; }
.brand-name { font-size: 1.05rem; }
.brand-name span { color: var(--muted); font-weight: 600; font-size: 0.85rem; margin-left: 4px; padding-left: 8px; border-left: 1px solid #d4e2e8; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 0.82rem; font-weight: 600; color: var(--muted); transition: var(--transition); }
.nav-links a:hover { color: var(--accent); }
.btn-top {
    border: 0; border-radius: 999px; padding: 11px 22px; background: var(--accent); color: #fff;
    font-size: 0.82rem; font-weight: 800; box-shadow: 0 4px 14px rgba(0, 184, 124, 0.25);
    transition: var(--transition);
}
.btn-top:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 184, 124, 0.35); color: #fff; }

/* ─── HERO SECTION ─────────────────────────────────────── */
#hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 30%, rgba(0, 184, 124, 0.10), transparent 35%),
        radial-gradient(circle at 15% 60%, rgba(35, 185, 200, 0.08), transparent 35%),
        linear-gradient(180deg, #f7fcfb 0%, #ffffff 100%);
}
.hero-grid {
    position: absolute; inset: 0; opacity: 0.25;
    background-image: linear-gradient(rgba(29, 86, 112, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 86, 112, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-bg-clinic {
    position: absolute; top: 0; right: 0; width: 48%; height: 85%;
    background: url('../img/hero-clinic-bg.jpg') no-repeat top right / cover;
    opacity: 0.18; pointer-events: none; z-index: 1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%), linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%), linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-composite: intersect; -webkit-mask-composite: source-in;
}
.hero-bg-leaves {
    position: absolute; bottom: -20px; left: -30px; width: 240px; height: 240px;
    background: url('../img/hero-leaves-bg.jpg') no-repeat bottom left / contain;
    opacity: 0.45; pointer-events: none; z-index: 1; filter: blur(1px);
}
.hero-copy { position: relative; z-index: 3; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px; border: 1px solid rgba(0, 184, 124, 0.30); border-radius: 999px;
    background: rgba(255, 255, 255, 0.9); color: #2b667b; font-size: 0.76rem; font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 184, 124, 0.08);
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 0 5px rgba(0, 184, 124, 0.18);
}
.hero-title {
    margin: 20px 0 18px;
    max-width: 620px;
    color: var(--text-strong);
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    line-height: 1.18;
    letter-spacing: -0.035em;
    font-weight: 800;
}
.hero-title .highlight {
    color: var(--accent);
    position: relative;
    display: inline;
}
.hero-title .highlight svg {
    position: absolute; left: 0; bottom: -10px; width: 100%; height: 12px; pointer-events: none;
}
.hero-subtitle {
    max-width: 600px; color: var(--muted); font-size: 1.04rem; line-height: 1.75;
}
.hero-subtitle strong { color: var(--text-strong); }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 32px; }
.btn-primary-custom, .btn-secondary-custom {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 50px; padding: 0 26px; border-radius: 999px; font-size: 0.88rem; font-weight: 800;
    transition: var(--transition);
}
.btn-primary-custom {
    background: #00b87c; color: #fff;
    box-shadow: 0 12px 32px rgba(0, 184, 124, 0.32);
}
.btn-primary-custom:hover { color: #fff; background: #009865; transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 184, 124, 0.40); }
.btn-secondary-custom {
    color: var(--text-strong); background: #fff; border: 1.5px solid #d4e2e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.btn-secondary-custom:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; color: var(--muted); font-size: 0.8rem; font-weight: 600; }
.hero-meta i { color: var(--accent); }
.meta-sep { opacity: 0.4; }

/* ─── DASHBOARD MOCKUP STAGE ───────────────────────────── */
.dashboard-stage { position: relative; z-index: 2; min-height: 490px; }
.mockup-wrapper { position: relative; width: 100%; }

.dashboard-frame {
    background: #ffffff; border-radius: 20px;
    border: 1px solid rgba(15, 44, 66, 0.10);
    box-shadow: 0 30px 80px rgba(12, 45, 68, 0.14);
    overflow: hidden;
    margin-left: 50px;
}
.dash-topbar {
    height: 46px; background: #ffffff; border-bottom: 1px solid #ebf2f5;
    padding: 0 16px; display: flex; align-items: center; justify-content: space-between;
    font-size: 0.75rem;
}
.dash-brand-mini { font-weight: 800; color: #0f2c42; }
.dash-brand-mini span { color: #647a8c; font-weight: 600; margin-left: 6px; padding-left: 6px; border-left: 1px solid #dbe5ea; }
.dash-avatar {
    width: 28px; height: 28px; border-radius: 50%; background: #e6f8f2; color: #00b87c;
    font-weight: 800; font-size: 0.7rem; display: grid; place-items: center;
}
.dash-body { display: flex; max-height: 390px; background: #f5f9fa; overflow: hidden; }
.dash-sidebar {
    width: 110px; background: #09253b; color: #8fa7b8; padding: 10px 5px; flex-shrink: 0;
    overflow: hidden;
}
.dash-side-cat { font-size: 0.42rem; font-weight: 800; color: #5a768d; letter-spacing: 0.05em; padding: 3px 4px 1px; text-transform: uppercase; }
.dash-side-item {
    display: flex; align-items: center; gap: 4px; padding: 3px 5px; border-radius: 4px;
    font-size: 0.48rem; font-weight: 600; margin-bottom: 2px; cursor: pointer;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-side-item i { font-size: 0.52rem; }
.dash-side-item.active { background: #00b87c; color: #ffffff; }
.dash-content { flex: 1; padding: 8px 10px; overflow: hidden; }

.kpi-grid-7 { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin: 6px 0; }
.kpi-card-real { background: #ffffff; border: 1px solid #e3edf2; border-radius: 6px; padding: 4px 5px; display: flex; align-items: center; gap: 4px; }
.kcr-icon { width: 18px; height: 18px; border-radius: 5px; display: grid; place-items: center; font-size: 0.55rem; flex-shrink: 0; }
.kcr-title { font-size: 0.4rem; color: #728898; font-weight: 700; }
.kcr-val { font-size: 0.7rem; font-weight: 850; color: #0f2c42; line-height: 1; }

.dash-real-widgets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.dash-widget-box { background: #ffffff; border: 1px solid #e3edf2; border-radius: 8px; padding: 6px 8px; }
.dwb-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.55rem; font-weight: 800; color: #0f2c42; padding-bottom: 3px; border-bottom: 1px solid #f0f5f8; }
.widget-row-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.48rem; padding: 3px 0; border-bottom: 1px solid #f5f9fb; }
.widget-row-item:last-child { border-bottom: 0; }
.widget-row-sub { font-size: 0.44rem; }

/* ─── SMARTPHONE MOCKUP ────────────────────────────────── */
.phone-mockup {
    position: absolute; left: -20px; top: 25px; width: 155px;
    background: #ffffff; border-radius: 20px; border: 3px solid #0f172a;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22); z-index: 4; overflow: hidden;
}
.phone-notch {
    width: 32px; height: 3px; background: #0f172a; border-radius: 999px; margin: 3px auto 1px;
}
.phone-header {
    background: #ffffff; color: #0d273d; padding: 4px 6px; border-bottom: 1px solid #ebf2f5;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.46rem; font-weight: 800;
}
.phone-body { padding: 5px; background: #f5f9fa; }
.phone-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.phone-mini-card { background: #ffffff; border: 1px solid #e3edf2; border-radius: 5px; padding: 3px 4px; display: flex; align-items: center; gap: 4px; }
.pmc-icon { width: 15px; height: 15px; border-radius: 4px; display: grid; place-items: center; font-size: 0.48rem; flex-shrink: 0; }
.pmc-title { font-size: 0.36rem; color: #728898; font-weight: 700; }
.pmc-val { font-size: 0.6rem; font-weight: 850; color: #0f2c42; line-height: 1; }

.phone-unit-select {
    font-size: 0.4rem; font-weight: 700; background: #ffffff; border: 1px solid #e0e9ee;
    border-radius: 4px; padding: 2px 4px; margin-bottom: 4px; color: #2b4958;
}
.phone-card {
    background: #ffffff; border: 1px solid #e3edf2; border-radius: 6px;
    padding: 4px 5px; font-size: 0.4rem; margin-bottom: 3px;
}
.phone-card-val { font-size: 0.7rem; font-weight: 850; color: #0f2c42; margin-top: 1px; }
.phone-progress { height: 3px; background: #eaf1f5; border-radius: 999px; margin-top: 2px; }
.phone-progress-bar { height: 100%; background: #00b87c; border-radius: 999px; }
.phone-footer {
    background: #ffffff; border-top: 1px solid #ebf2f5; padding: 4px 3px;
    display: flex; justify-content: space-around; font-size: 0.38rem; color: #8fa7b8;
}
.phone-footer span { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.phone-footer .active { color: #00b87c; }

/* ─── BADGES FLUTUANTES ────────────────────────────────── */
.float-card {
    position: absolute; z-index: 10;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 16px 35px rgba(12, 45, 68, 0.12);
    border-radius: 14px; padding: 9px 13px; display: flex; align-items: center; gap: 9px;
    animation: floatCardAnim 4s ease-in-out infinite;
}
.float-card .fc-icon {
    width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
    font-size: 0.88rem; flex-shrink: 0;
}
.fc-title { font-size: 0.7rem; font-weight: 800; line-height: 1.2; }
.fc-sub { font-size: 0.6rem; color: #647a8c; line-height: 1.2; }

.fc-top-center { top: -20px; left: 32%; animation-delay: 0s; }
.fc-top-right { top: 15px; right: -20px; animation-delay: -1s; }
.fc-bottom-left { bottom: 15px; left: 10px; animation-delay: -2s; }
.fc-bottom-right { bottom: 48px; right: -25px; animation-delay: -3s; }
.fc-bottom-far-right { bottom: -18px; right: 25px; animation-delay: -1.5s; }

@keyframes floatCardAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* ─── CARROSSEL DOS 8 RECURSOS HERO ─────────────────────── */
.hero-bottom-cards { margin-top: 55px; position: relative; width: 100%; }
.cards-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.cards-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: carouselScroll 35s linear infinite;
}
.cards-carousel-track:hover { animation-play-state: paused; }
@keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.hero-feature-card {
    width: 290px;
    flex-shrink: 0;
    background: #ffffff; border: 1px solid #e4eff3; border-radius: 16px;
    padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px;
    box-shadow: 0 6px 20px rgba(15, 45, 68, 0.04); transition: var(--transition);
}
.hero-feature-card:hover {
    transform: translateY(-4px); border-color: #00b87c;
    box-shadow: 0 12px 30px rgba(0, 184, 124, 0.10);
}
.hfc-icon {
    width: 38px; height: 38px; border-radius: 11px; background: #e6f8f2; color: #00b87c;
    font-size: 1.15rem; display: grid; place-items: center; flex-shrink: 0;
}
.hfc-title { font-size: 0.9rem; font-weight: 800; color: #0f2c42; margin-bottom: 2px; }
.hfc-desc { font-size: 0.78rem; color: #647a8c; line-height: 1.45; }

/* ─── PROBLEMAS & RECURSOS ───────────────────────────────── */
.problem-card, .resource-card, .module-shell, .price-card {
    background: #ffffff; border: 1px solid #e4edf1; border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(15, 45, 68, 0.04); transition: var(--transition);
}
.problem-card { padding: 28px; height: 100%; }
.problem-card:hover, .resource-card:hover, .price-card:hover {
    transform: translateY(-6px); border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(0, 184, 124, 0.10);
}
.problem-icon {
    width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
    background: #f4f9fa; font-size: 1.25rem; margin-bottom: 20px;
}
.problem-card h3, .resource-card h3 { font-size: 1rem; font-weight: 800; color: var(--text-strong); margin-bottom: 10px; }
.problem-card p, .resource-card p { font-size: 0.84rem; line-height: 1.75; color: var(--muted); margin: 0; }

/* ─── MÉTRICAS ─────────────────────────────────────────── */
.metrics {
    display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid #e4edf1;
    border-radius: 24px; background: #ffffff; box-shadow: 0 10px 30px rgba(15, 45, 68, 0.04);
}
.metric { padding: 34px; text-align: center; border-right: 1px solid #e4edf1; }
.metric:last-child { border-right: 0; }
.metric-number { font-size: 2.8rem; line-height: 1; font-weight: 900; letter-spacing: -0.06em; color: var(--accent); }
.metric-label { font-size: 0.76rem; color: var(--muted); font-weight: 700; margin-top: 9px; }

/* ─── MÓDULOS DO SISTEMA ────────────────────────────────── */
.module-shell { padding: 32px; }
.module-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: thin; }
.module-tabs .nav-link {
    border: 1px solid #e4edf1; background: #ffffff; color: var(--muted); border-radius: 12px;
    padding: 10px 16px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; transition: var(--transition);
}
.module-tabs .nav-link:hover { color: var(--text-strong); transform: translateY(-2px); }
.module-tabs .nav-link.active { background: var(--dark); border-color: var(--dark); color: #fff; box-shadow: 0 10px 22px rgba(9, 34, 56, 0.15); }
.module-content { padding: 35px 8px 8px; }
.module-title { font-size: 1.55rem; font-weight: 850; letter-spacing: -0.03em; color: var(--text-strong); }
.module-desc { font-size: 0.9rem; line-height: 1.75; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
.feature {
    display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid #e4edf1; border-radius: 10px;
    background: #f8fcfe; font-size: 0.72rem; color: var(--text); font-weight: 600;
}
.feature i { color: var(--accent); font-size: 0.85rem; }
.module-preview { border: 1px solid #e4edf1; border-radius: 18px; background: #f8fcfe; padding: 20px; box-shadow: 0 12px 30px rgba(15, 45, 68, 0.05); }
.preview-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid #e4edf1; font-size: 0.75rem; font-weight: 800; color: var(--text-strong); }
.preview-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #e4edf1; font-size: 0.72rem; }
.preview-row:last-child { border-bottom: 0; }
.preview-label { color: var(--muted); }
.preview-value { font-weight: 700; color: var(--text-strong); }
.tag-ok { font-size: 0.58rem; padding: 4px 8px; border-radius: 999px; background: rgba(0, 184, 124, 0.10); color: var(--accent-2); font-weight: 800; }

/* ─── AUDITORIA & SEGURANÇA ─────────────────────────────── */
.security-section { background: linear-gradient(135deg, #eaf6f2 0%, #f5faf8 50%, #ebf4f6 100%); color: #12304a; position: relative; overflow: hidden; border-top: 1px solid #d4eae2; border-bottom: 1px solid #d4eae2; }
.security-title { color: #0f2c42; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 850; letter-spacing: -0.05em; }
.security-copy { color: #586e80; font-size: 0.94rem; line-height: 1.8; }
.audit-card { position: relative; padding: 24px; border: 1px solid #d0eae0; border-radius: 20px; background: #ffffff; box-shadow: 0 12px 35px rgba(15, 45, 68, 0.06); }
.audit-row { display: grid; grid-template-columns: 55px 12px 1fr; gap: 13px; align-items: start; padding: 15px 0; border-bottom: 1px solid #edf4f7; }
.audit-row:last-child { border-bottom: 0; }
.audit-time { font-family: "JetBrains Mono", monospace; font-size: 0.65rem; color: #00b87c; font-weight: 700; padding-top: 2px; }
.audit-line { position: relative; height: 100%; display: flex; justify-content: center; }
.audit-line:before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #00b87c; box-shadow: 0 0 0 4px rgba(0, 184, 124, 0.18); margin-top: 4px; }
.audit-action { font-size: 0.75rem; color: #0f2c42; font-weight: 800; }
.audit-detail { font-size: 0.65rem; color: #647a8c; margin-top: 2px; }

/* ─── SEÇÃO DE PLANOS & PREÇOS ─────────────────────────── */
#planos {
    position: relative; overflow: hidden;
    background: linear-gradient(-45deg, #ffffff, #f0fdf8, #e6f7f3, #ffffff);
    background-size: 400% 400%;
    animation: movingPlanBg 14s ease infinite;
    border-top: 1px solid #e4edf1; border-bottom: 1px solid #e4edf1;
}
@keyframes movingPlanBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { position: relative; padding: 34px 28px; background: #ffffff; display: flex; flex-direction: column; }
.price-card.featured { border-color: rgba(0, 184, 124, 0.45); box-shadow: 0 24px 60px rgba(0, 184, 124, 0.14); }
.price-badge { position: absolute; top: 20px; right: 20px; padding: 5px 11px; border-radius: 999px; background: rgba(0, 184, 124, 0.10); color: var(--accent-2); font-size: 0.6rem; font-weight: 900; }
.price-name { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 800; }
.price-value { font-size: 2.5rem; color: var(--text-strong); font-weight: 900; letter-spacing: -0.06em; margin-top: 10px; }
.price-value small { font-size: 0.78rem; color: var(--muted); letter-spacing: 0; }
.price-unit-badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 6px; background: #eef7f4; color: #009966; font-size: 0.75rem; font-weight: 800; margin-top: 6px; margin-bottom: 12px; }
.price-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; min-height: 38px; }
.price-inc-header { font-size: 0.76rem; font-weight: 800; color: #0c1e38; background: #f4f8fa; border-left: 3px solid #00b87c; padding: 6px 10px; border-radius: 0 6px 6px 0; margin: 14px 0 6px; }
.price-list { list-style: none; padding: 0; margin: 16px 0 24px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 0.76rem; color: var(--text); line-height: 1.4; }
.price-list i { color: var(--accent); font-size: 0.82rem; margin-top: 1px; flex-shrink: 0; }
.price-btn { display: flex; align-items: center; justify-content: center; width: 100%; padding: 13px; border-radius: 999px; border: 1px solid #d4e2e8; color: var(--text-strong); font-size: 0.8rem; font-weight: 800; margin-top: auto; }
.price-card.featured .price-btn { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── DEPOIMENTOS (TEMA CLARO & CARROSSEL INFINITO) ─────── */
#depoimentos {
    background: #ffffff;
    color: var(--text-strong);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e4edf1;
    border-bottom: 1px solid #e4edf1;
}
#depoimentos .section-label {
    background: rgba(0, 184, 124, 0.10);
    border-color: rgba(0, 184, 124, 0.25);
    color: var(--accent-2);
}
#depoimentos .section-title { color: var(--text-strong); }
#depoimentos .section-subtitle { color: var(--muted); }

.testimonials-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testimonials-carousel-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: testimonialScroll 42s linear infinite;
}
.testimonials-carousel-track:hover { animation-play-state: paused; }
@keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    width: 360px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e4edf1;
    border-radius: var(--radius);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(15, 45, 68, 0.04);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 16px 40px rgba(0, 184, 124, 0.10);
}
.tc-stars { color: #ffb400; font-size: 0.92rem; margin-bottom: 12px; letter-spacing: 2px; }
.tc-quote { font-size: 0.86rem; line-height: 1.65; color: var(--muted); font-style: italic; margin-bottom: 18px; flex-grow: 1; }
.tc-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #edf4f7; padding-top: 14px; }
.tc-avatar {
    width: 42px; height: 42px; border-radius: 12px; color: #ffffff;
    font-weight: 850; font-size: 1.05rem; display: grid; place-items: center;
    box-shadow: 0 4px 12px rgba(15, 45, 68, 0.08); flex-shrink: 0;
}
.tc-name { font-size: 0.9rem; font-weight: 800; color: var(--text-strong); line-height: 1.2; }
.tc-role { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* ─── FAQ (PERGUNTAS FREQUENTES) ─────────────────────────── */
#faq { background: linear-gradient(180deg, #f0f7f5 0%, #f8fbfd 100%); border-bottom: 1px solid #e4edf1; }
.faq .accordion-item { background: #ffffff; border: 1px solid #d8ebd6; margin-bottom: 12px; border-radius: 14px !important; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 184, 124, 0.03); }
.faq .accordion-button { background: #ffffff; color: var(--text-strong); font-size: 0.85rem; font-weight: 700; box-shadow: none; padding: 20px; }
.faq .accordion-button:not(.collapsed) { color: var(--accent-2); background: #ffffff; }
.faq .accordion-body { color: var(--muted); font-size: 0.82rem; line-height: 1.8; padding: 0 20px 20px; }

/* ─── CTA FINAL & FOOTER ───────────────────────────────── */
.final-cta { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 30%, rgba(0, 184, 124, 0.08), transparent 65%), linear-gradient(180deg, #ffffff 0%, #f4f9fa 100%); border-top: 1px solid #e4edf1; padding: 110px 0; text-align: center; }
.final-title { color: #0f2c42; font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 850; letter-spacing: -0.055em; }
.final-copy { max-width: 620px; margin: 0 auto 28px; color: #586e80; font-size: 0.95rem; line-height: 1.8; }
.final-meta { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; color: #647a8c; font-size: 0.78rem; font-weight: 600; }

footer { padding: 60px 0 30px; background: #ffffff; color: #647a8c; border-top: 1px solid #e4edf1; }
.footer-heading { font-size: 0.82rem; font-weight: 800; color: #0f2c42; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-nav-list { list-style: none; padding: 0; }
.footer-nav-list li { margin-bottom: 8px; }
.footer-nav-list a { color: #647a8c; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: var(--transition); }
.footer-nav-list a:hover { color: #00b87c; padding-left: 3px; }
.footer-copy { font-size: 0.78rem; line-height: 1.7; color: #647a8c; }
.footer-links a:hover { color: #00b87c; }

/* ─── WHATSAPP FLUTUANTE ───────────────────────────────── */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1100; }
.whatsapp-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #16b978; color: #fff; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22); transition: var(--transition); }
.whatsapp-btn:hover { transform: translateY(-4px) scale(1.04); color: #fff; }
.whatsapp-btn svg { width: 27px; height: 27px; fill: currentColor; }
.whatsapp-tooltip { position: absolute; right: 67px; top: 10px; white-space: nowrap; padding: 8px 11px; border-radius: 99px; background: #0c2538; color: #fff; font-size: 0.68rem; font-weight: 700; opacity: 0; transform: translateX(6px); pointer-events: none; transition: var(--transition); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ─── ANIMAÇÕES DE REVEAL ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.show, .reveal.revealed { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.97) translateY(12px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal-scale.show, .reveal-scale.revealed { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; } .delay-2 { transition-delay: 0.16s; } .delay-3 { transition-delay: 0.24s; } .delay-4 { transition-delay: 0.32s; }

/* ─── RESPONSIVIDADE ───────────────────────────────────── */
@media (max-width: 1199px) {
    .nav-links { gap: 18px; }
    .dashboard-stage { min-height: 460px; }
    .dashboard-frame { margin-left: 20px; }
}
@media (max-width: 991px) {
    .nav-links { display: none; }
    #hero { padding-top: 140px; }
    .dashboard-stage { min-height: 480px; margin-top: 20px; }
    .dashboard-frame { margin-left: 0; }
    .phone-mockup { display: none; }
    .float-card { display: none; }
    .proof-grid, .metrics { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: 1fr; max-width: 520px; margin: auto; }
}
@media (max-width: 767px) {
    .section-pad { padding: 75px 0; }
    .navbar-shell { padding: 8px 12px; }
    .btn-top { padding: 9px 15px; font-size: 0.75rem; }
    #hero { padding-bottom: 55px; }
    .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary-custom, .btn-secondary-custom { width: 100%; }
    .hero-meta { justify-content: center; text-align: center; }
    .dashboard-stage { min-height: 360px; }
    .dash-sidebar { width: 80px; }
    .dash-side-item { font-size: 0.44rem; padding: 6px 4px; }
    .dash-content { padding: 9px; }
    .kpi-grid { gap: 5px; }
    .proof-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .metrics { grid-template-columns: 1fr 1fr; }
    .module-shell { padding: 18px; }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-links { justify-content: flex-start; margin-top: 15px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; }
}
