:root {
    /* Paleta alinhada às apresentações (mkt/apresentacao/deck.css) — 29/08/2026 */
    --bg-base: #1d1d1f;
    --bg-surface: #252528;
    --bg-glass: rgba(37, 37, 40, 0.72);
    --text-primary: #ffffff;
    --text-secondary: #c8c8d0;
    --text-muted: #8a8a92;
    --accent-blue: #136DEC;
    --accent-purple: #a78bfa;
    --accent-green: #31c48d;
    --accent-red: #ef5350;
    --accent-orange: #f0a63a;
    --accent-pink: #ec4899;
    --gradient-brand: linear-gradient(135deg, #136DEC, #4a8ff3, #31c48d);
    --gradient-glow: radial-gradient(circle at center, rgba(19, 109, 236, 0.22) 0%, transparent 70%);
    --border-glass: rgba(255, 255, 255, 0.10);
    --border-highlight: rgba(255, 255, 255, 0.20);
    --shadow-glass: 0 4px 24px 0 rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 24px rgba(19, 109, 236, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects (Antigravity Style) */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#particle-canvas {
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
}

/* Base Components */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glass-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--bg-surface);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Typography Enhancements */
.highlight-text-wrapper, .typing-container {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    min-width: 650px;
}

.highlight {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--gradient-brand);
    margin-left: 5px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
    position: relative;
    top: -4px;
    border-radius: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Interactive Panels */
.interactive-panel {
    position: relative;
    overflow: hidden;
}

.card-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.interactive-panel:hover .card-bg-gradient {
    opacity: 1;
}

.card-bg-gradient.blue { background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 70%); }
.card-bg-gradient.purple { background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 70%); }
.card-bg-gradient.green { background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent 70%); }
.card-bg-gradient.orange { background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 70%); }

.bento-content {
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1200px;
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    z-index: 100;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.4);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--accent-blue);
}

/* Buttons */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition-spring);
    overflow: hidden;
}

.cta-button.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.cta-button.primary {
    background: var(--accent-blue);
    color: #ffffff;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    background: #0f57bd;
    box-shadow: 0 10px 24px rgba(19, 109, 236, 0.35);
}

/* Secundário: contorno, para o teste grátis ficar como CTA principal
   e a conversa com consultor como alternativa (adicionado 29/08) */
.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-highlight);
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    background: var(--bg-surface);
    border-color: var(--accent-blue);
}

/* links de CTA não devem herdar sublinhado */
a.cta-button, a.cta-button:hover { text-decoration: none; }

.glow-effect {
    /* Remove glow effect for clean look */
    box-shadow: none;
}

.glow-effect:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.outline-glow {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.outline-glow:hover {
    background: rgba(0,0,0,0.05);
    border-color: rgba(255, 255, 255, 0.30);
}

.cta-button.secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    z-index: 10;
}

.headline {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.sub-headline {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-top: 1rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Comparison Section */
.comparison-section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.card {
    padding: 3rem;
    border-radius: 32px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
}

.border-bottom {
    border-bottom: 1px solid var(--border-glass);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.red-box { background: rgba(239, 68, 68, 0.1); color: var(--accent-red); }
.green-box { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); }

/* Problem Card (Red Theme) */
.problem-card {
    background: var(--bg-surface);
    border: 1px solid rgba(239, 68, 68, 0.15);
    box-shadow: 0 10px 40px -10px rgba(239, 68, 68, 0.05);
}

.process-elements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.process-item {
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    user-select: none;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.process-item i {
    color: var(--text-muted);
}

/* Solution Card (Green Theme) */
.solution-card {
    background: rgba(49, 196, 141, 0.07);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-radius: 16px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.benefit-icon {
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.highlight-benefit {
    background: rgba(49, 196, 141, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Bento Grid Features */
.features-section {
    padding: 8rem 0;
}

.accent-badge {
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    margin-bottom: 2rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-card {
    padding: 2.5rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
}

.bento-card.span-2 {
    grid-column: span 2;
}

.layout-horizontal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.icon-wrap.glowing {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.bento-card:hover .icon-wrap.glowing {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.bento-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-card p {
    color: var(--text-secondary);
}

/* UI Mockups inside Bento */
.mockup-ui {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.mockup-header {
    background: rgba(0,0,0,0.3);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-glass);
}

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

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.mockup-header .title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
}

.mockup-body {
    padding: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Detailed Dark Filter Mockup */
.mockup-ui.dark-mockup {
    background: #161b22;
    border-color: #30363d;
}

.mockup-header.dark {
    border-bottom: 1px solid #30363d;
    background: #0d1117;
}

.window-controls {
    display: flex;
    gap: 6px;
}
.window-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.window-title {
    font-size: 0.75rem;
    font-family: monospace;
    color: #8b949e;
}

.advanced-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.filter-field.double {
    grid-column: span 2;
}

.filter-field label {
    font-size: 0.7rem;
    color: #8b949e;
    font-weight: 500;
}

.filter-field label .req {
    color: #f85149;
}

.fake-select {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: #c9d1d9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fake-select i {
    width: 12px;
    height: 12px;
    color: #8b949e;
}

.mock-tag.active {
    background: #1f3b5e;
    color: #c9d1d9;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    width: max-content;
    margin-top: 0.1rem;
}

.mock-tag.active i {
    width: 10px;
    height: 10px;
}

.filter-slider-section {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-header label {
    font-size: 0.75rem;
    color: #8b949e;
    font-weight: 500;
}

.slider-values {
    font-size: 0.75rem;
    color: #58a6ff;
    font-weight: 600;
}

.slider-track-container {
    position: relative;
    height: 16px;
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.slider-track {
    width: 100%;
    height: 4px;
    background: #30363d;
    border-radius: 2px;
    position: relative;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--accent-blue);
    border-radius: 2px;
}

.slider-handle {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent-blue);
}

.slider-handle.left { left: 0%; transform: translateX(-50%); }
.slider-handle.right { right: 0%; transform: translateX(50%); }

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #8b949e;
}

/* Detailed Dark Filter Mockup */
.mockup-ui.dark-mockup {
    background: #161b22;
    border-color: #30363d;
}

.mockup-header.dark {
    border-bottom: 1px solid #30363d;
}
.mockup-header.dark .window-title {
    color: #8b949e;
}

.advanced-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.filter-field.double {
    grid-column: span 2;
}

.filter-field label {
    font-size: 0.7rem;
    color: #8b949e;
    font-weight: 500;
}

.filter-field label .req {
    color: #f85149;
}

.fake-select {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: #c9d1d9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fake-select i {
    width: 12px;
    height: 12px;
    color: #8b949e;
}

.mock-tag.active {
    background: #1f3b5e;
    color: #c9d1d9;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    width: max-content;
    margin-top: 0.1rem;
}

.mock-tag.active i {
    width: 10px;
    height: 10px;
}

.filter-slider-section {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-header label {
    font-size: 0.75rem;
    color: #8b949e;
    font-weight: 500;
}

.slider-values {
    font-size: 0.75rem;
    color: #58a6ff;
    font-weight: 600;
}

.slider-track-container {
    position: relative;
    height: 16px;
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.slider-track {
    width: 100%;
    height: 4px;
    background: #30363d;
    border-radius: 2px;
    position: relative;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--accent-blue);
    border-radius: 2px;
}

.slider-handle {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent-blue);
}

.slider-handle.left { left: 0%; transform: translateX(-50%); }
.slider-handle.right { right: 0%; transform: translateX(50%); }

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #8b949e;
}

.flex-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pill {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.filter-capabilities {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pill.outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.pill.outline i {
    width: 14px;
    height: 14px;
    color: var(--accent-blue);
}

.action-buttons-mock {
    display: flex;
    gap: 1rem;
}

.mock-btn {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    font-size: 2rem;
    transition: var(--transition-spring);
}

.mock-btn.wpp { color: #25D366; }
.mock-btn.lin { color: #0077b5; }


/* Dashboard Section */
.dashboard-section {
    padding: 8rem 0;
}

.wrapper-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.data-points {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.data-item {
    display: flex;
    flex-direction: column;
}

.data-val {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.data-lbl {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.clean-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.clean-list i {
    color: var(--accent-green);
}

/* Dashboard Visual Mockup */
.mock-window {
    background: var(--bg-surface);
    border-radius: 16px;
    overflow: hidden;
}

/* Barra da janela — nunca teve estilo; no tema claro os pontinhos
   (rgba branco 0.2) eram invisíveis. Agora igual ao das apresentações. */
.window-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: #17171a;
    border-bottom: 1px solid var(--border-glass);
}

.window-header .title {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.window-body {
    padding: 1.5rem;
    background: #1f1f22;
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card.mini {
    background: var(--bg-surface);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-card.mini span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card.mini strong {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.text-green { color: var(--accent-green) !important; }

.text-blue { color: var(--accent-blue) !important; }
.text-orange { color: var(--accent-orange) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-red { color: #ef4444 !important; }

.stat-cards.custom-3-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (max-width: 500px) {
    .stat-cards.custom-3-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.advanced-chart-box {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.25rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.bar-label {
    width: 38%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.10);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    animation: fillBar 1.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
    transform-origin: left;
}

.bar-fill.blue { background: var(--accent-blue); }
.bar-fill.orange { background: var(--accent-orange); }
.bar-fill.red { background: var(--accent-red); }

.bar-value {
    width: 15%;
    text-align: right;
    font-weight: 600;
}

@keyframes fillBar {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.chart-container {
    height: 120px;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
    border-left: 1px solid var(--border-glass);
    padding-left: 10px;
    margin-top: 1rem;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.2), transparent);
    clip-path: polygon(0 80%, 25% 60%, 50% 20%, 75% 40%, 100% 5%, 100% 100%, 0 100%);
}

.chart-points {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    position: relative;
    z-index: 10;
}

.chart-points span {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--bg-base);
    position: relative;
    transform: translateY(50%);
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 3rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
}

.pricing-card.lite-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
}

.pricing-card.voip-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.simple-icon {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.premium-badge {
    background: linear-gradient(90deg, #db4437, #f4b400, #0f9d58);
    color: white;
    border: none;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.table-container {
    margin-top: 2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.pricing-row:last-child:not(.featured) {
    border-bottom: none;
}

.pricing-row span:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-row .price {
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-row.featured {
    border: none;
    background: rgba(49, 196, 141, 0.10);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-top: 1rem;
}

.pricing-row.featured span:first-child {
    color: var(--text-primary);
}

.pricing-row.featured .price {
    font-weight: 600;
    color: #e65100;
}

.pricing-row.featured .price span {
    color: #6c8a77;
    font-weight: 500;
}
.pricing-row.featured .highlight {
    font-size: 1.25rem;
}

.voip-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.voip-item {
    padding: 1.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}



.voip-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 500;
    font-size: 0.9rem;
}

.voip-icon i { 
    color: rgba(255, 255, 255, 0.60); 
    width: 18px;
    height: 18px;
}

.voip-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.voip-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.50);
    margin-left: 0.2rem;
}

.custom-black-btn {
    background: #101623;
    color: white;
    border-radius: 100px;
    padding: 1.25rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-black-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #000000;
}

.mt-auto { margin-top: auto; }
.mt-3 { margin-top: 1rem; }
.full-width { width: 100%; }
.text-center { text-align: center; }

/* Animations - Fade in Up */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 200ms; }
.delay-2 { animation-delay: 400ms; }
.delay-3 { animation-delay: 600ms; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    padding: 2rem 0;
    margin-top: 4rem;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 40px 40px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.span-2 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .headline { 
        font-size: 2.25rem; 
        white-space: normal;
        margin-bottom: 0.5rem;
    }
    
    .typing-container {
        min-width: 100%;
        white-space: normal;
        display: block;
    }

    .comparison-grid, .pricing-container, .bento-grid, .wrapper-dashboard {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .data-points {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .layout-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .card, .bento-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .pricing-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .voip-item {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .voip-price {
        font-size: 1.5rem;
        align-self: flex-start;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .comparison-section, .pricing-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .bento-header h3 {
        font-size: 1.25rem;
    }

    .pricing-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .pricing-row span:last-child {
        font-size: 1.1rem;
    }

    .pricing-row.featured {
        padding: 1rem;
    }
}

/* ============================================================
   Telas do produto — seção "A empresa chega pronta" + ranking
   do gestor. Adicionado em 29/08/2026.
   Reaproveita .mock-window / .window-body / .stat-card / .bar-*
   já existentes; aqui só o que é novo, com prefixo .sf-
   ============================================================ */

.sdr-section { padding: 8rem 0; }

.sf-screens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3.5rem;
    align-items: start;
}

.sf-screen .mock-window {
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.sf-caption {
    margin: 1.25rem 0.25rem 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* cabeçalho da chamada */
.sf-callhead {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.sf-lbl {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.sf-company {
    margin: 0.4rem 0 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.25;
}

.sf-meta {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sf-phone {
    margin: 0.6rem 0 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-blue);
}

/* etiqueta de estado */
.sf-tag {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

.sf-tag.live { background: rgba(16, 185, 129, 0.12); color: var(--accent-green); }
.sf-tag.ok   { background: rgba(16, 185, 129, 0.12); color: var(--accent-green); }

.sf-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: sfPulse 1.6s ease-in-out infinite;
}

@keyframes sfPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

/* aviso de 2ª tentativa */
.sf-alert {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 1.25rem 0;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-size: 0.85rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-orange);
}

.sf-alert i { width: 16px; height: 16px; flex-shrink: 0; }

/* botões da barra de chamada */
.sf-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.sf-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

.sf-chip i, .sf-chip .ico-linkedin { width: 14px; height: 14px; }
/* lucide removeu os ícones de marca: "linkedin" não existe mais e
   renderizava um quadrado vazio. Glifo inline no lugar. */
.ico-linkedin { flex-shrink: 0; }
.mock-btn .ico-linkedin { width: 34px; height: 34px; }
.sf-chip.red  { background: rgba(239, 68, 68, 0.1);  border-color: rgba(239,68,68,0.25);  color: #dc2626; }
.sf-chip.blue { background: rgba(59, 130, 246, 0.1); border-color: rgba(59,130,246,0.25); color: var(--accent-blue); }

/* bloco do resumo da IA */
.sf-ai { margin-top: 1.25rem; border-top: 1px solid var(--border-glass); padding-top: 1.1rem; }
.sf-ai p { margin: 0.5rem 0 0; font-size: 0.88rem; line-height: 1.6; color: var(--text-secondary); }
.sf-ai .sf-next { color: var(--text-primary); font-weight: 500; }

.sf-kw { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }

.sf-kw span {
    font-size: 0.72rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

/* ranking do gestor */
.sf-tabletitle {
    font-size: 0.8rem;
    margin: 0 0 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.sf-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }

.sf-table th {
    text-align: left;
    font-weight: 500;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-glass);
}

.sf-table td {
    padding: 0.6rem 0.35rem 0.6rem 0;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-weight: 600;
}

.sf-table td:first-child { padding-left: 0; }
.sf-table .sf-name { color: var(--text-primary); font-weight: 600; white-space: nowrap; }
.sf-table td .bar-track { min-width: 52px; }
.bar-fill.green { background: var(--accent-green); }

.sf-status {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
}

.sf-status.on  { background: rgba(16,185,129,0.12); color: var(--accent-green); }
.sf-status.off { background: rgba(255,255,255,0.07); color: var(--text-muted); }

.sf-tablenote { margin: 1rem 0 0; font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
    .sf-screens { grid-template-columns: 1fr; gap: 3rem; }
    .sdr-section { padding: 5rem 0; }
}

/* ============================================================
   Seção "O ambiente do gestor" — 3 telas do painel (29/08/2026)
   ============================================================ */

.mgr-section { padding: 8rem 0; }

.mgr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    align-items: start;
}

.mgr-item .mock-window {
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.mgr-item .window-body { padding: 1.15rem; }

.mgr-title {
    margin: 1.4rem 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mgr-item .sf-caption { margin-top: 0; font-size: 0.9rem; }

/* toggle da rediscagem */
.mgr-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.9rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mgr-switch {
    width: 34px; height: 19px;
    border-radius: 999px;
    background: var(--accent-green);
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.mgr-switch i {
    position: absolute;
    top: 2.5px; right: 2.5px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #fff;
}

/* cartões de regra */
.mgr-rule {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.6rem;
}

.mgr-rule.muted { opacity: 0.72; }

.mgr-rule-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.mgr-rule p {
    margin: 0.4rem 0 0;
    font-size: 0.74rem;
    line-height: 1.45;
    color: var(--text-muted);
}

.mgr-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.mgr-steps span {
    font-size: 0.7rem;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    background: rgba(19, 109, 236, 0.12);
    color: var(--text-secondary);
}

.mgr-steps b { color: var(--accent-blue); }

/* etiquetas */
.mgr-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
    background: rgba(19, 109, 236, 0.14);
    color: var(--accent-blue);
}

.mgr-badge.off  { background: rgba(255,255,255,0.07); color: var(--text-muted); }
.mgr-badge.warn { background: rgba(240,166,58,0.14);  color: var(--accent-orange); }
.mgr-badge.run  { background: rgba(49,196,141,0.14);  color: var(--accent-green); }

/* busca no Maps */
.mgr-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.mgr-field {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mgr-field.wide { grid-column: 1 / -1; }
.mgr-field span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.mgr-field strong { font-size: 0.85rem; color: var(--text-primary); font-weight: 600; }

.mgr-jobs { display: flex; flex-direction: column; gap: 0.5rem; }

.mgr-job, .mgr-call, .mgr-export {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.6rem 0.7rem;
    border-radius: 9px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
}

.mgr-job strong, .mgr-call strong, .mgr-export strong {
    display: block;
    font-size: 0.78rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.mgr-sub { display: block; font-size: 0.68rem; color: var(--text-muted); margin-top: 0.15rem; }

.mgr-note { margin: 0.9rem 0 0; font-size: 0.7rem; line-height: 1.5; color: var(--text-muted); }

/* timeline */
.mgr-call { margin-bottom: 0.5rem; }
.mgr-call-l { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }

.mgr-av {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(19,109,236,0.18);
    color: var(--accent-blue);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mgr-export { margin-top: 0.9rem; border-color: rgba(49,196,141,0.28); background: rgba(49,196,141,0.06); }
.mgr-export i { width: 18px; height: 18px; color: var(--accent-green); flex-shrink: 0; }
.mgr-export > div { flex: 1; min-width: 0; }

@media (max-width: 1000px) {
    .mgr-grid { grid-template-columns: 1fr; gap: 3rem; }
    .mgr-section { padding: 5rem 0; }
}


/* Faixa da timeline — o card aberto com player, resumo e próxima ação */
.mgr-timeline {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
    margin-top: 5rem;
}

.mgr-tl-text h3 {
    font-size: 2rem;
    line-height: 1.15;
    margin: 0 0 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.mgr-tl-text p { font-size: 1.05rem; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.mgr-tl-text .clean-list li { font-size: 0.95rem; align-items: flex-start; }
.mgr-tl-text .clean-list i { color: var(--accent-blue); margin-top: 2px; flex-shrink: 0; }

.mgr-tl-visual .mock-window {
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.tl-card {
    background: rgba(255,255,255,0.035);
    border: 1px solid var(--border-highlight);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    margin-bottom: 0.7rem;
}

.tl-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.tl-top strong { font-size: 0.95rem; }
.tl-top .mgr-sub b { color: var(--text-secondary); }

/* player */
.tl-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    background: rgba(19, 109, 236, 0.10);
    border: 1px solid rgba(19, 109, 236, 0.25);
}

.tl-play {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tl-play i { width: 15px; height: 15px; color: #fff; }

.tl-wave {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    height: 26px;
    min-width: 0;
    overflow: hidden;
}

.tl-wave i {
    /* sem cap de largura as barras viram blocos; 3px lê como onda de áudio */
    flex: 0 0 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.tl-wave i.off { background: rgba(255,255,255,0.18); }

.tl-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* resumo */
.tl-block { margin-top: 0.9rem; }
.tl-block p { margin: 0.45rem 0 0; font-size: 0.82rem; line-height: 1.6; color: var(--text-secondary); }

/* próxima ação */
.tl-next {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.9rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(139, 124, 246, 0.09);
    border: 1px solid rgba(139, 124, 246, 0.22);
}

.tl-next-ico {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: rgba(139, 124, 246, 0.18);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.tl-next-ico i { width: 15px; height: 15px; color: #a78bfa; }
.tl-next-lbl { font-size: 0.72rem; font-weight: 700; color: #a78bfa; display: block; }
.tl-next p { margin: 0.3rem 0 0; font-size: 0.8rem; line-height: 1.55; color: var(--text-secondary); }

@media (max-width: 1000px) {
    .mgr-timeline { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3.5rem; }
    .mgr-tl-text h3 { font-size: 1.6rem; }
}

/* ============================================================
   MOBILE — auditoria de 29/08/2026
   Duas regras que valem para o site inteiro:
     1. frase do header nunca passa de 70% da largura da tela
        (no celular ~92%, senão sobram 2 palavras por linha)
     2. nenhuma tela entre 320px e 430px pode rolar na horizontal
   Bloco no fim do arquivo de propósito: sobrescreve o que veio
   antes sem precisar reescrever os blocos originais.
   ============================================================ */

/* ---------- 1. Hero ---------- */

.hero-content {
    width: 100%;
    max-width: min(1000px, 70vw);
}

/* white-space: nowrap estourava a tela assim que a frase digitada
   passava de ~20 caracteres. Agora quebra dentro dos 70%. */
.headline {
    white-space: normal;
    max-width: 100%;
    overflow-wrap: break-word;
}

/* A linha digitada é menor que o título fixo — cabe em uma linha
   até ~30 caracteres — e tem altura reservada, para o bloco não
   pular a cada letra digitada/apagada. */
.typing-container {
    display: block;
    font-size: 0.62em;
    line-height: 1.2;
    min-height: 1.2em;
}

.hero .section-subtitle {
    max-width: 100%;
}

/* ---------- 2. Sem rolagem horizontal ---------- */

/* Filho de grid tem min-width:auto por padrão: quando o conteúdo
   interno é mais largo que a tela, ele estoura a coluna em vez de
   encolher. Era o que cortava a "Timeline da Equipe" e a lista ao
   lado dela, e o que fazia a página inteira rolar de lado. */
.mgr-timeline > *,
.mgr-grid > *,
.sf-screens > *,
.wrapper-dashboard > *,
.bento-grid > *,
.comparison-grid > *,
.pricing-container > * {
    min-width: 0;
}

.mock-window,
.mock-window * {
    max-width: 100%;
}

.sf-callhead > div,
.mgr-call-l > div,
.tl-next > div,
.mgr-job > div {
    min-width: 0;
}

/* ---------- 3. Ajustes de celular ---------- */

@media (max-width: 768px) {
    .hero-content { max-width: 92vw; }

    .hero { padding: 4.5rem 0 3rem; min-height: auto; }

    .headline {
        font-size: 2rem;
        letter-spacing: -0.02em;
    }

    /* duas linhas reservadas: nenhuma frase da lista passa disso */
    .typing-container {
        font-size: 0.8em;
        min-height: 2.4em;
    }

    .hero .section-subtitle { font-size: 1rem; }

    /* O vazio entre seções era de 8rem em cima e embaixo — quase
       uma tela inteira de nada entre um bloco e outro. */
    .comparison-section,
    .features-section,
    .dashboard-section,
    .pricing-section,
    .sdr-section,
    .mgr-section { padding: 4rem 0; }

    .section-header { margin-bottom: 2.5rem; }

    /* line-height 1.6 do body deixava título de 2 linhas com um
       buraco no meio */
    .section-title { line-height: 1.15; }
    .section-subtitle { font-size: 1.05rem; }
    .accent-badge { margin-bottom: 1.25rem; }

    .container { padding: 0 1.25rem; }

    .mgr-timeline { margin-top: 2.5rem; }
    .mgr-grid { margin-top: 2.5rem; }
    .sf-screens { margin-top: 2.5rem; }

    /* Janelas de mock: 1,5rem de padding sobrava pouca largura
       útil para o conteúdo dentro do card. */
    .window-body { padding: 1rem; }
    .window-header { padding: 0.6rem 0.85rem; gap: 0.5rem; }
    .window-header .title { font-size: 0.72rem; line-height: 1.3; }

    /* Nome da empresa vinha espremido em 3 linhas porque a tag
       "Em ligação" ocupava metade da largura ao lado. */
    .sf-callhead {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.6rem;
    }
    .sf-company { font-size: 1.05rem; }
    .sf-caption { font-size: 0.9rem; }

    /* Em 2 colunas o terceiro KPI ficava órfão numa linha só dele. */
    .stat-cards.custom-3-cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    /* Ranking da equipe: os cabeçalhos colavam uns nos outros
       ("CHAM.ATEND.OPORT.META"). */
    .sf-table { font-size: 0.72rem; }
    .sf-table th { font-size: 0.58rem; padding-right: 0.4rem; }
    .sf-table td { padding: 0.5rem 0.3rem 0.5rem 0; }
    .sf-table td .bar-track { min-width: 34px; }
    .sf-table .sf-name { font-size: 0.72rem; }

    /* Mesmo problema da .sf-callhead: o selo colado à direita
       ("Oportunidade", "Reagendado") espremia o nome da empresa. */
    .tl-top,
    .mgr-job,
    .mgr-call {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tl-card { padding: 0.85rem; }
    .mgr-item .window-body { padding: 0.9rem; }

    /* Logo e copyright se sobrepunham no rodapé. */
    .footer-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .footer-links p { margin: 0; font-size: 0.85rem; }
}

@media (max-width: 380px) {
    .headline { font-size: 1.75rem; }
    .container { padding: 0 1rem; }
    .sf-table th:nth-child(4),
    .sf-table td:nth-child(4) { display: none; }   /* "Oport." não cabe */
}
