/* ── SegCommerce SaaS Commercial Website Stylesheet ────────────────────────── */
:root {
    --primary: #dc2626;
    --primary-dark: #991b1b;
    --primary-light: #ef4444;
    --primary-glow: rgba(220, 38, 38, 0.25);
    
    --whatsapp: #10b981;
    --whatsapp-dark: #059669;
    --whatsapp-light: #34d399;
    --whatsapp-bg: #e7f8ef;
    --whatsapp-glow: rgba(16, 185, 129, 0.25);

    --gold: #f59e0b;
    --gold-light: #fbbf24;

    --bg-dark: #090d16;
    --bg-dark-card: #111827;
    --bg-dark-subtle: #1e293b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-light-muted: #94a3b8;

    --border-light: #e2e8f0;
    --border-dark: #1e293b;
    --border-glass: rgba(255, 255, 255, 0.12);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-pill: 9999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-glow-red: 0 10px 30px rgba(220, 38, 38, 0.25);
    --shadow-glow-green: 0 10px 30px rgba(16, 185, 129, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* ── Typography Utilities ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: inherit;
}

.text-gradient-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Layout & Containers ── */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 90px 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.section-tag-red {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.section-tag-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--whatsapp);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-tag-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px auto;
}

.section-header h2 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: var(--shadow-glow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: var(--shadow-glow-green);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1.5px solid var(--border-glass);
    backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ── Top Notification Banner ── */
.top-banner {
    background: linear-gradient(90deg, #111827 0%, #064e3b 50%, #111827 100%);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner a {
    color: #34d399;
    text-decoration: underline;
    margin-left: 6px;
    font-weight: 700;
}

/* ── Header Navigation ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.site-header .container {
    max-width: 1440px;
    width: 100%;
    padding: 0 32px;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 76px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: clamp(28px, 3.5vw, 56px); /* Espaço amplo e confortável entre o logotipo e o início do menu */
}

.logo-wrap img,
.logo-wrap .logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 26px);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    padding: 6px 4px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto; /* Empurra os botões de ação para a extremidade direita */
}

.nav-actions .btn {
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 26px;
    color: var(--text-main);
    cursor: pointer;
    margin-left: auto;
}

/* ── Hero Section ── */
.hero {
    padding: 70px 0 90px 0;
    background: radial-gradient(circle at 50% 10%, rgba(220, 38, 38, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 90% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-highlights i {
    color: var(--whatsapp);
    font-size: 18px;
}

/* ── Social Proof ERP Logos Bar ── */
.erp-bar {
    padding: 36px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: #fafafa;
}

.erp-bar p {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 20px;
}

.erp-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.erp-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 800;
    color: #334155;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.erp-tag i {
    color: var(--primary);
}

/* ── Section Showcase: Dual Focus ── */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.showcase-text h3 {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    margin-bottom: 18px;
}

.showcase-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.feature-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-bullet-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.feature-bullet-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--whatsapp);
}

.feature-bullet-icon.red {
    background: rgba(220, 38, 38, 0.15);
    color: var(--primary);
}

.feature-bullet-content strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.feature-bullet-content span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ── Interactive WhatsApp Simulator (Mockup) ── */
.phone-mockup-wrapper {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
}

.phone-mockup {
    background: #0f172a;
    border-radius: 46px;
    padding: 14px;
    box-shadow: 0 25px 60px -15px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: #0f172a;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.phone-screen {
    background: #efeae2;
    background-image: radial-gradient(#d1d7db 1px, transparent 1px);
    background-size: 14px 14px;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 640px;
    position: relative;
}

.wa-header {
    background: #075e54;
    color: #fff;
    padding: 16px 14px 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 10;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #075e54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
}

.wa-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-verified {
    color: #34d399;
    font-size: 14px;
}

.wa-status {
    font-size: 0.72rem;
    color: #a7f3d0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
}

.wa-chat-body {
    flex: 1;
    padding: 16px 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-bubble {
    max-width: 84%;
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.35;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    word-break: break-word;
}

.wa-bubble-in {
    background: #ffffff;
    align-self: flex-start;
    border-top-left-radius: 2px;
    color: #111827;
}

.wa-bubble-out {
    background: #d9fdd3;
    align-self: flex-end;
    border-top-right-radius: 2px;
    color: #111827;
}

.wa-time {
    font-size: 0.68rem;
    color: #64748b;
    float: right;
    margin-top: 4px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.wa-prod-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 8px;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-prod-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.wa-prod-details {
    flex: 1;
}

.wa-prod-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.wa-prod-price {
    font-size: 0.95rem;
    font-weight: 900;
    color: #dc2626;
    margin-top: 2px;
}

.wa-prod-price span {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
}

.wa-chip-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #075e54;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 4px;
    text-decoration: none;
}

.wa-footer-input {
    background: #f0f2f5;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-fake-input {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #075e54;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.wa-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.wa-btn-scenario {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s;
}

.wa-btn-scenario.active,
.wa-btn-scenario:hover {
    background: var(--whatsapp);
    color: #ffffff;
    border-color: var(--whatsapp);
}

/* ── Interactive TV Digital Signage Simulator (Mockup) ── */
.tv-simulator-wrapper {
    background: #0a0e1a;
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 1px solid var(--border-dark);
}

.tv-screen-frame {
    background: #000000;
    border: 14px solid #1e293b;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 15px rgba(255,255,255,0.05);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tv-bezel-bottom {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 2px;
}

.tv-stand {
    width: 180px;
    height: 16px;
    background: #334155;
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.tv-stand-base {
    width: 320px;
    height: 10px;
    background: #1e293b;
    margin: 0 auto;
    border-radius: 6px;
}

/* Live TV Screen content rendering */
.tv-live-canvas {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #b91c1c 0%, #7f1d1d 100%);
    padding: 3%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.tv-live-header {
    text-align: center;
    margin-bottom: 2%;
    flex-shrink: 0;
}

.tv-live-header h2 {
    font-size: clamp(1.2rem, 3.2vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(180deg, #fffbeb 0%, #fef08a 50%, #facc15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

/* TV Layout: Classic Grid (Square cards in 2 rows) */
.tv-grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    height: 84%;
    align-items: center;
    justify-content: center;
}

.tv-card-square {
    background: #ffffff;
    border-radius: 10px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    aspect-ratio: 1 / 1.08;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    overflow: hidden;
}

.tv-card-img {
    height: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 3.5vw, 36px);
}

.tv-card-name {
    font-size: clamp(8px, 1.1vw, 13px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.3em;
    width: 100%;
}

.tv-card-badge {
    background: #dc2626;
    color: #ffffff;
    font-size: clamp(6px, 0.8vw, 9px);
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 10px;
    white-space: nowrap;
}

.tv-card-prices {
    text-align: center;
    width: 100%;
    margin-top: 1px;
}

.tv-price-de {
    font-size: clamp(7px, 0.9vw, 11px);
    color: #64748b;
    text-decoration: line-through;
    font-weight: 700;
    line-height: 1;
}

.tv-price-por {
    font-size: clamp(11px, 1.8vw, 22px);
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.tv-price-por small {
    font-size: clamp(7px, 1vw, 11px);
    margin-bottom: 2px;
}

.tv-price-por .unit {
    font-size: clamp(6px, 0.9vw, 10px);
    color: #64748b;
    margin-left: 2px;
    margin-bottom: 2px;
}

/* TV Controls (Interactivity) */
.tv-sim-controls {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.sim-btn-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sim-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 6px;
}

.sim-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid var(--border-glass);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.sim-btn.active,
.sim-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* ── Feature Grid (Módulos Completos) ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.feature-card-icon.red {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
}

.feature-card-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--whatsapp);
}

.feature-card-icon.gold {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold);
}

.feature-card-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.feature-card-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

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

.feature-pill {
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
}

/* ── Comparativo: Antes vs Depois ── */
.comparison-section {
    background: #f8fafc;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: #f1f5f9;
    font-size: 1.05rem;
    font-weight: 800;
}

.comparison-table th.col-segcommerce {
    background: #fee2e2;
    color: var(--primary-dark);
}

.comparison-table td.col-segcommerce {
    background: #fff5f5;
    font-weight: 700;
    color: #991b1b;
}

/* ── ROI Calculator Section ── */
.roi-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roi-slider-group label {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.roi-slider-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #334155;
    outline: none;
    accent-color: var(--primary);
    cursor: pointer;
}

.roi-result-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.roi-result-label {
    font-size: 0.95rem;
    color: var(--text-light-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.roi-result-val {
    font-size: 3rem;
    font-weight: 900;
    color: #34d399;
    line-height: 1.1;
    margin-bottom: 12px;
}

.roi-result-sub {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-bottom: 24px;
}

/* ── Pricing Section ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border-light);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
    transform: scale(1.04);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    min-height: 48px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-price small {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #334155;
}

.pricing-features li i {
    color: var(--whatsapp);
    font-size: 18px;
    flex-shrink: 0;
}

/* ── FAQ Section ── */
.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-question {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text-main);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 22px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ── Final CTA Section ── */
.cta-section {
    background: radial-gradient(circle at center, #991b1b 0%, #450a0a 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.25rem;
    color: #fca5a5;
    margin-bottom: 40px;
}

/* ── Footer ── */
.site-footer {
    background: #090d16;
    color: #94a3b8;
    padding: 70px 0 30px 0;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Modal (Lead Capture) ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-card h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--primary);
}

/* ── Responsive Media Queries ── */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .feature-showcase,
    .roi-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 1220px) {
    .site-header .container {
        padding: 0 20px;
    }
    .logo-wrap {
        margin-right: 28px;
    }
    .nav-links {
        gap: 14px;
    }
    .nav-links a {
        font-size: 0.88rem;
    }
    .nav-actions .btn-outline {
        display: none; /* Oculta botão secundário em telas médias mantendo o CTA principal com folga */
    }
}

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

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links.active,
    .mobile-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 24px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 16px;
    }
}

@media (max-width: 768px) {

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

    .tv-grid-layout {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}
