/* ==========================================================================
   Variáveis e Reset
   ========================================================================== */
:root {
    /* Cores Premium Dark - Baseado na Apresentação */
    --bg-dark: #0e1217;
    /* Fundo muito escuro/navy */
    --bg-card: #151a21;
    /* Preenchimento sutil de cards */
    --bg-card-hover: #1c232c;

    /* Acentos (Teal retirado da imagem "SOLUÇÕES") */
    --primary: #5dc3be;
    /* Teal principal usado nos botões e textos de destaque */
    --primary-hover: #71d0cc;
    --primary-glow: rgba(93, 195, 190, 0.2);

    --secondary: #3ca09b;
    /* Variação mais escura do Teal para gradientes */
    --secondary-hover: #4fb3ae;
    --secondary-glow: rgba(60, 160, 155, 0.2);

    /* Texto */
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    /* Bordas */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(93, 195, 190, 0.3);

    /* Outros */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --transition-fast: 0.2s ease;
    --transition-norm: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Utilitários Visuais */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-norm);
}

.hover-lift:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 10px 30px -10px var(--primary-glow);
}

.hover-glow:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px 0 var(--primary-glow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.max-w-lg {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-white {
    color: var(--text-white);
}

/* Grid Background Clássico Analytics/Tech */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-norm);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: #000000;
    box-shadow: 0 4px 14px 0 var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 210, 138, 0.4);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-white);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--text-muted);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: rgba(0, 210, 138, 0.1);
}

/* ==========================================================================
   Animações
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

/* ==========================================================================
   Header & Navegação
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    background-color: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-norm);
}

.header.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(10, 12, 16, 0.95);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

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

.logo-separator {
    color: var(--border-color);
    margin: 0 0.5rem;
    font-weight: 300;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn .icon-close {
    display: none;
}

.mobile-menu-btn.open .icon-menu {
    display: none;
}

.mobile-menu-btn.open .icon-close {
    display: block;
}

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

.hero-bg-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    opacity: 0.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.hero-bullets .icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
}

/* Hero Visual / Mockup */
.mockup-wrapper {
    padding: 1.5rem;
    background: linear-gradient(145deg, var(--bg-card), #0a0c10);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-color);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ff5f56;
}

.dot.yellow {
    background-color: #ffbd2e;
}

.dot.green {
    background-color: #27c93f;
}

.mockup-top-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mockup-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.mockup-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.mockup-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.mockup-chart {
    height: 150px;
    width: 100%;
}

.mockup-chart svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Quem Somos
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-target {
    padding: 2.5rem;
}

.target-title {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.target-list {
    list-style: none;
}

.target-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.target-list li:last-child {
    margin-bottom: 0;
}

.target-icon {
    color: var(--secondary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ==========================================================================
   Pilares
   ========================================================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    padding: 2rem;
    text-align: left;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 142, 178, 0.1);
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar-title {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.pillar-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Soluções (Pricing)
   ========================================================================== */
.solutions-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 3rem auto 0;
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-featured {
    transform: scale(1.05);
    border-color: var(--border-accent);
    box-shadow: 0 0 40px rgba(0, 210, 138, 0.1);
    position: relative;
    z-index: 10;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.pricing-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
    min-height: 40px;
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-label {
    font-weight: 600;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.25rem;
}

.highlight-warning {
    color: #ffbd2e;
}

.pricing-premium {
    background: linear-gradient(180deg, var(--bg-card) 0%, #050608 100%);
}

.pricing-footer {
    margin-top: auto;
}

/* ==========================================================================
   Resultados
   ========================================================================== */
.results-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.result-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.result-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.crm-block {
    position: relative;
    grid-column: span 2;
    padding-top: 3rem;
    background: linear-gradient(135deg, rgba(0, 142, 178, 0.05), transparent);
}

.crm-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 142, 178, 0.2);
    color: var(--secondary);
    padding: 0.2rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==========================================================================
   Cases de Sucesso
   ========================================================================== */
.cases-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(19, 22, 28, 0.8), rgba(0, 210, 138, 0.05));
}

.case-title {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.case-bullets {
    list-style: none;
}

.case-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.case-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.case-bullets strong {
    color: var(--text-white);
}

/* Mockup Chart for Feature Case */
.chart-mockup {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.chart-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: auto;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    gap: 10px;
}

.chart-bars .bar {
    width: 100%;
    background: var(--border-color);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.chart-growth-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.cases-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.small-case {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-title-small {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.case-metric {
    display: inline-flex;
    flex-direction: column;
}

.case-metrics-dual {
    display: flex;
    gap: 2rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Clientes
   ========================================================================== */
.clients {
    padding: 4rem 0;
    background: var(--bg-card);
}

.clients-microcopy {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.client-logo-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: -0.05em;
    filter: grayscale(100%);
    transition: var(--transition-norm);
}

.client-logo-placeholder:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.diff-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.diff-visual {
    padding: 4rem;
    background: linear-gradient(135deg, rgba(0, 142, 178, 0.1), transparent);
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-color);
}

.diff-list-wrapper {
    padding: 4rem;
}

.differentiators-list {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.differentiators-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-white);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 210, 138, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   CTA Final Banner
   ========================================================================== */
.final-cta {
    padding: 2rem 0;
}

.cta-banner {
    padding: 5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
    position: relative;
    overflow: hidden;
}

.cta-glow {
    box-shadow: 0 0 100px rgba(0, 210, 138, 0.05) inset;
    border: 1px solid rgba(0, 210, 138, 0.2);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Contato Form
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.contact-form-container {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-main);
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 210, 138, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

select option {
    background-color: var(--bg-card);
    color: var(--text-white);
}

.btn-submit {
    margin-top: 1rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    color: var(--text-muted);
}

.info-title {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.info-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-desc strong {
    color: var(--text-main);
}

.whatsapp-card {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), var(--bg-card));
    border-color: rgba(37, 211, 102, 0.2);
}

.wa-icon {
    width: 48px;
    height: 48px;
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-title {
    font-size: 1.125rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.wa-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-compliance {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-links-wrapper {
    display: flex;
    gap: 4rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .solutions-pricing {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .featured-case {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .chart-mockup {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

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

    /* Header & Nav */
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-norm);
        pointer-events: none;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .header {
        height: 70px;
    }

    .nav-list {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Hero */
    .hero {
        padding-top: 8rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-bullets {
        display: inline-block;
        text-align: left;
        margin-bottom: 2.5rem;
    }

    .hero-bullets li {
        justify-content: flex-start;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .hero-visual {
        display: none !important;
    }

    /* Outras Seções */
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-grid,
    .results-section .results-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        width: 100% !important;
    }

    .crm-block,
    .results-grid .crm-block,
    .result-card {
        width: 100% !important;
        grid-column: span 1 !important;
        padding-top: 3.5rem !important;
    }

    .result-value {
        font-size: 1.8rem !important;
    }

    .about-stats {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        gap: 1.5rem !important;
        text-align: center;
    }

    .about-stats div[style*="width: 1px"] {
        display: block !important;
        height: 40px;
        align-self: center;
    }

    .about-stats span[style*="font-size: 2.6rem"] {
        font-size: 2rem !important;
    }

    .result-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    /* Solutions Pricing */
    .solutions-pricing {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .pricing-features {
        text-align: left;
        display: inline-block;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        text-align: center;
        max-width: 90%;
        line-height: 1.4;
    }

    .cases-grid-small {
        grid-template-columns: 1fr;
    }

    .case-metrics-dual {
        flex-direction: column;
        gap: 1rem;
    }

    .diff-container {
        grid-template-columns: 1fr;
    }

    .diff-visual {
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .diff-list-wrapper {
        padding: 2rem;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }

    .cta-banner-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }

    .footer-links {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .results-grid,
    .results-section .results-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .result-card {
        padding: 1.25rem 0.75rem;
        padding-top: 3rem !important;
    }

    .result-value {
        font-size: 1.6rem !important;
    }

    .crm-block,
    .results-grid .crm-block {
        width: 100% !important;
        grid-column: span 1 !important;
    }
}

/* ==========================================================================
   Ticker / Marquee - Results Section
   ========================================================================== */

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: ticker-scroll 32s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
}

.ticker-badge.gestao {
    background: rgba(93, 195, 190, 0.15);
    color: var(--primary);
}

.ticker-badge.crm {
    background: rgba(93, 195, 190, 0.08);
    color: var(--secondary);
    border: 1px solid rgba(93, 195, 190, 0.3);
}

.ticker-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.ticker-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    max-width: 220px;
    white-space: normal;
    line-height: 1.3;
}

/* ==========================================================================
   SBC Rio Survey Section
   ========================================================================== */
.sbc-survey {
    background: linear-gradient(180deg, #050608 0%, #0a0c10 100%);
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
}

.survey-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.survey-card {
    padding: 3rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.survey-header {
    margin-bottom: 3rem;
    text-align: center;
}

.survey-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 210, 138, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.survey-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.survey-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Progress Bar */
.survey-progress-wrapper {
    margin-bottom: 3rem;
}

.survey-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.survey-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.survey-progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    width: 20%;
    /* Will be dynamic */
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Survey Steps */
.survey-step {
    display: none;
    animation: fadeIn 0.5s ease-out forwards;
}

.survey-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Form Groups */
.survey-form-group {
    margin-bottom: 1.5rem;
}

.survey-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-white);
}

.survey-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-white);
    transition: var(--transition-norm);
}

.survey-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Likert Scale Styles */
.question-item {
    margin-bottom: 3rem;
}

.question-text {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    line-height: 1.4;
}

.likert-scale {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    position: relative;
}

.likert-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-align: center;
}

.likert-radio {
    display: none;
}

.likert-circle {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition-norm);
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.likert-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s ease-out;
}

.likert-radio:checked+.likert-circle {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 210, 138, 0.3);
}

.likert-radio:checked+.likert-circle::after {
    transform: scale(1);
}

.likert-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.2;
}

.likert-radio:checked~.likert-label {
    color: var(--primary);
}

/* Survey Footer / Nav */
.survey-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Success State */
.success-card {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 210, 138, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .survey-card {
        padding: 2rem 1.5rem;
    }

    .likert-scale {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .likert-option {
        flex-direction: row;
        width: 100%;
        text-align: left;
    }

    .likert-label {
        font-size: 0.9rem;
    }
}

/* Response Counter Styling */
.survey-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-muted);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.survey-counter strong {
    color: var(--text-white);
    margin-right: 0.2rem;
}

/* Community Invite */
.community-invite {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.1);
    border-radius: 16px;
    padding: 2rem;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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