/* CSS Design System - Neon Style Landing Page */

/* Cores e Tokens */
:root {
    --bg-dark: #06060c; /* Tom espacial quase preto muito mais premium */
    --bg-card: rgba(15, 15, 30, 0.65); /* Efeito de vidro escuro elevado */
    --bg-card-border: rgba(255, 255, 255, 0.05); /* Borda muito mais sutil e elegante */
    --color-cyan: #0ab5d4;
    --color-magenta: #e6007e;
    --color-white: #fafafa; /* Branco suave para não cansar as vistas */
    --color-gray: #8a8f98; /* Cinza médio profissional (Linear style) */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --gradient-primary: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-magenta) 100%);
    --gradient-glow: 0 0 25px rgba(10, 181, 212, 0.25);
    --transition-premium: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.7; /* Altura de linha de leitura otimizada */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; /* Aumento sutil no padding de segurança lateral */
}

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Efeito de entrada ao rolar (scroll-reveal) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Escalona cards lado a lado dentro da mesma grade */
.grid-cards .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.grid-cards .reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }

.not-chatbot-comparison .reveal-on-scroll:nth-child(2) { transition-delay: 0.12s; }

.faq-grid .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.faq-grid .reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Stars Canvas */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Navbar Sticky com Glassmorphism Refinado */
.navbar {
    background-color: rgba(6, 6, 12, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--bg-card-border);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-premium);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-neon {
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(10, 181, 212, 0.3);
}

.logo-ai {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-premium);
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.nav-menu a:hover {
    color: var(--color-white);
}

.btn-nav-action {
    background: var(--color-cyan);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition-premium);
    box-shadow: 0 2px 8px rgba(10, 181, 212, 0.2);
}

.btn-nav-action:hover {
    box-shadow: 0 4px 18px rgba(10, 181, 212, 0.55);
    transform: translateY(-1.5px);
}

/* Two-Column Hero Layout Styles */
.centered-hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at 50% 30%, rgba(10, 181, 212, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 10% 70%, rgba(230, 0, 126, 0.08) 0%, transparent 50%);
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.hero-text-left {
    display: flex;
    flex-direction: column;
}

.logo-badge-container-left {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.neon-logo-triangle {
    position: relative;
    width: 250px;
    height: 120px;
    border: 3px solid var(--color-magenta);
    box-shadow: 0 0 20px rgba(230, 0, 126, 0.4), inset 0 0 20px rgba(230, 0, 126, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 28, 0.6);
}

.neon-logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.logo-top {
    font-size: 2.2rem;
    color: var(--color-white);
    letter-spacing: 2px;
}

.logo-bottom {
    font-size: 2rem;
    color: var(--color-cyan);
    text-shadow: 0 0 8px var(--color-cyan);
    margin-top: 5px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(10, 181, 212, 0.4);
    background: rgba(10, 181, 212, 0.08);
    color: var(--color-cyan);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    width: fit-content;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.left-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.highlight-cyan {
    color: var(--color-cyan);
    text-shadow: 0 0 12px rgba(10, 181, 212, 0.4);
}

.highlight-magenta {
    color: var(--color-magenta);
    text-shadow: 0 0 12px rgba(230, 0, 126, 0.4);
}

.left-lead {
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-bullet-list-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-cyan);
}

.left-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-pill {
    border-radius: 30px;
    padding: 14px 32px;
}

.btn-primary-pill {
    background: var(--color-cyan);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(10, 181, 212, 0.4);
}

.btn-primary-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 181, 212, 0.6);
}

.btn-magenta-pill {
    background: var(--color-magenta);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.4);
}

.btn-magenta-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 126, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border: 1px solid var(--bg-card-border);
    gap: 10px;
    border-radius: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-cyan);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    width: 100%;
}

.hero-widget-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.scroll-indicator {
    animation: bounce 2s infinite;
    font-size: 1.8rem;
    color: var(--color-gray);
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Sections Global */
section {
    padding: 80px 0;
}

.badge-tag {
    background: rgba(10, 181, 212, 0.12);
    border: 1px solid rgba(10, 181, 212, 0.3);
    color: var(--color-cyan);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.tag-magenta {
    background: rgba(230, 0, 126, 0.12);
    border-color: rgba(230, 0, 126, 0.3);
    color: var(--color-magenta);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Pain Section */
.pain-section {
    background: rgba(255, 255, 255, 0.01);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 32px;
    text-align: left;
    transition: var(--transition-premium);
}

.card.glow-cyan:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 25px rgba(10, 181, 212, 0.18);
    transform: translateY(-2px);
    background: rgba(15, 15, 30, 0.85);
}

.card.glow-magenta:hover {
    border-color: var(--color-magenta);
    box-shadow: 0 0 25px rgba(230, 0, 126, 0.18);
    transform: translateY(-2px);
    background: rgba(15, 15, 30, 0.85);
}

.card.glow-purple:hover {
    border-color: #a855f7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.18);
    transform: translateY(-2px);
    background: rgba(15, 15, 30, 0.85);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Value Proposition Banner (embutido ao final da seção de Dores) */
.intro-value-card {
    background: linear-gradient(135deg, rgba(10, 181, 212, 0.08) 0%, rgba(230, 0, 126, 0.08) 100%);
    border: 1px solid rgba(10, 181, 212, 0.15);
    border-radius: 16px;
    padding: 56px 40px;
    max-width: 950px;
    margin: 56px auto 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.intro-value-card h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.intro-value-card p {
    color: var(--color-white);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.75;
    opacity: 0.9;
}

/* Not a Chatbot Section Styles */
.not-chatbot-section {
    background: rgba(255, 255, 255, 0.01);
}

.not-chatbot-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
    align-items: stretch;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    backdrop-filter: blur(10px);
}

.comparison-card.neon-system {
    border: 2px solid var(--color-cyan);
    box-shadow: 0 10px 30px rgba(10, 181, 212, 0.15);
}

.neon-badge-recom {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.comparison-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.text-red {
    color: #ef4444;
}

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

/* Alternating Feature Showcase Section (Z-Pattern) */
.alternating-solutions-section {
    background: rgba(255, 255, 255, 0.01);
}

.solution-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.solution-row.alternate-row {
    direction: ltr; /* Keeps structural markup but visual display handles direction layout flow */
}

.solution-divider {
    max-width: 500px;
    height: 1px;
    margin: 0 auto 80px;
    background: linear-gradient(90deg, transparent, var(--bg-card-border) 20%, var(--bg-card-border) 80%, transparent);
}

.solution-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.solution-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.solution-icon-badge.glow-cyan {
    background: linear-gradient(135deg, #0ab5d4, #067a90);
    box-shadow: 0 0 30px rgba(10, 181, 212, 0.45);
}

.solution-icon-badge.glow-magenta {
    background: linear-gradient(135deg, #e6007e, #970055);
    box-shadow: 0 0 30px rgba(230, 0, 126, 0.45);
}

/* Numeração da sequência (01/02/03) para dividir melhor as categorias */
.solution-step-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.solution-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.solution-text p {
    color: var(--color-gray);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.solution-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-white);
}

.solution-bullets li i {
    color: var(--color-cyan);
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.display-mockup-alt {
    width: 100%;
    max-width: 440px;
    height: 320px;
    border-radius: 16px;
    border: 1px solid var(--bg-card-border);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: #14142a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

/* ============================================================
   GLASS CARD - LADO DE TEXTO DAS SOLUÇÕES
   ============================================================ */
.solution-text {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 40px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-text:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   MOLDURA JANELA MACOS COM TRAFFIC LIGHTS
   ============================================================ */
.mac-window-frame {
    width: 100%;
    max-width: 480px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.04);
    background: #1a1a2e;
}

.mac-titlebar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: rgba(26, 26, 46, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.mac-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.mac-dot:hover {
    opacity: 1;
}

.mac-dot.dot-red    { background: #ff5f57; box-shadow: 0 0 4px rgba(255, 95, 87, 0.5); }
.mac-dot.dot-yellow { background: #febc2e; box-shadow: 0 0 4px rgba(254, 188, 46, 0.4); }
.mac-dot.dot-green  { background: #28c840; box-shadow: 0 0 4px rgba(40, 200, 64, 0.4); }

.mac-titlebar-label {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
    font-weight: 500;
    margin-right: 34px; /* compensa os 3 dots à esquerda para centralizar */
}

.mac-window-content {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

/* ============================================================
   TABELA DE FEATURES DAS SOLUÇÕES
   ============================================================ */
.solution-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.88rem;
}

.solution-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.solution-table tr:last-child {
    border-bottom: none;
}

.solution-table tr:hover {
    background: rgba(255, 255, 255, 0.025);
    border-radius: 6px;
}

.solution-table td {
    padding: 11px 10px;
    vertical-align: middle;
    line-height: 1.5;
    color: var(--color-gray);
}

/* Coluna do ícone check */
.solution-table td.sol-check {
    width: 28px;
    color: var(--color-cyan);
    font-size: 0.8rem;
    text-align: center;
    padding-right: 0;
}

/* Coluna do nome do recurso */
.solution-table td.sol-name {
    font-weight: 700;
    color: var(--color-white);
    width: 42%;
    padding-right: 14px;
}

/* Coluna da descrição */
.solution-table td.sol-desc {
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   ANIMAÇÃO DE FLUTUAÇÃO - MAC WINDOW FRAMES
   ============================================================ */
@keyframes float-window {
    0%, 100% { transform: translateY(0px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
    50%       { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4); }
}

.mac-window-frame {
    animation: float-window 6s ease-in-out infinite;
}

/* Delays alternados para evitar sincronismo visual */
.solution-row:nth-child(1) .mac-window-frame { animation-delay: 0s; }
.solution-row:nth-child(2) .mac-window-frame { animation-delay: 1.2s; }
.solution-row:nth-child(3) .mac-window-frame { animation-delay: 2.4s; }
.solution-row:nth-child(4) .mac-window-frame { animation-delay: 0.6s; }
.solution-row:nth-child(5) .mac-window-frame { animation-delay: 1.8s; }


.display-mockup-alt.glow-cyan:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 35px rgba(10, 181, 212, 0.2);
}

.display-mockup-alt.glow-magenta:hover {
    border-color: var(--color-magenta);
    box-shadow: 0 0 35px rgba(230, 0, 126, 0.2);
}

.display-mockup-alt.glow-purple:hover {
    border-color: #a855f7;
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.2);
}

/* Mock Phone Chat View */
.mock-phone-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    background: #0b141a;
    height: 100%;
    justify-content: center;
    text-align: left;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.chat-bubble.received {
    background: #202c33;
    color: var(--color-white);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.chat-bubble.sent {
    background: #005c4b;
    color: var(--color-white);
    align-self: flex-end;
    border-top-right-radius: 0;
}

/* Mock Dashboard / Secure View */
.mock-dashboard {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #0d0d1e;
    height: 100%;
    text-align: left;
}

.dashboard-header-simple {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-cyan);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gestor-header {
    color: var(--color-magenta);
}

.dashboard-stat-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card-small {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.stat-card-small span {
    font-size: 0.75rem;
    color: var(--color-gray);
}

.stat-card-small strong {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-top: 5px;
}

.primary-glow {
    border-color: var(--color-cyan) !important;
    box-shadow: 0 0 15px rgba(10, 181, 212, 0.15);
}

.large-card {
    text-align: left;
}

.security-disclaimer {
    background: rgba(230, 0, 126, 0.08);
    border: 1px solid rgba(230, 0, 126, 0.2);
    color: #ff66b2;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mock Receipt View */
.mock-receipt {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    max-width: 380px;
    margin: auto;
    text-align: left;
}

.receipt-header {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--color-cyan);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.receipt-divider {
    height: 1px;
    margin: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.highlight-row {
    color: var(--color-cyan);
    font-weight: bold;
}

.receipt-row.highlight-row:nth-of-type(even) {
    color: var(--color-magenta);
}

.receipt-footer {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-top: 15px;
    text-align: center;
}

/* Mock Chart View */
.mock-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 80px;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.mock-bar-chart .bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
}

/* Methodology Section (The DAVE Stack Style) */
/* Testimonials Section Styles */
.testimonials-section {
    background: radial-gradient(circle at 80% 80%, rgba(230, 0, 126, 0.04) 0%, transparent 50%);
}

.testimonial-bubble {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg-card-border);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-testimonial-card {
    flex: 0 0 380px;
}

.carousel-testimonial-card:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 560px) {
    .carousel-testimonial-card {
        flex-basis: 300px;
    }
}

.testimonial-badge-niche {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bg-card-border);
}

.font-cyan { color: var(--color-cyan); }
.font-magenta { color: var(--color-magenta); }
.font-purple { color: #a855f7; }

.testimonial-bubble.border-cyan {
    border-color: rgba(10, 181, 212, 0.2);
}

.testimonial-bubble.border-magenta {
    border-color: rgba(230, 0, 126, 0.2);
}

.testimonial-bubble.border-purple {
    border-color: rgba(168, 85, 247, 0.2);
}

.stars-row {
    margin-top: 5px;
    color: #f1c40f;
    font-size: 0.8rem;
    display: flex;
    gap: 3px;
}

.bubble-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}

.client-meta {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 2px;
}

.bubble-text {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Niche Selection Section Styles */
.niche-section {
    background: radial-gradient(circle at 10% 30%, rgba(230, 0, 126, 0.05) 0%, transparent 50%);
}

.niche-selector-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.niche-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bg-card-border);
    color: var(--color-gray);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 8px;
}

.niche-tab:hover, .niche-tab.active {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(10, 181, 212, 0.3);
}

.niche-preview-box {
    max-width: 600px;
    margin: 0 auto;
}

.niche-preview-card {
    background: var(--bg-card);
    border: 1px solid rgba(10, 181, 212, 0.2);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.preview-header {
    font-size: 0.8rem;
    color: var(--color-cyan);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.preview-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bg-card-border);
    padding: 15px;
    border-radius: 12px;
}

.preview-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-bottom: 5px;
}

.preview-value {
    font-size: 1.05rem;
    color: var(--color-white);
    font-family: var(--font-heading);
}

/* Countdown Widget Styles */
.countdown-container {
    margin-bottom: 50px;
    background: rgba(230, 0, 126, 0.04);
    border: 1px solid rgba(230, 0, 126, 0.15);
    padding: 20px 30px;
    border-radius: 16px;
    display: inline-block;
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--color-magenta);
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.timer-block span {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bg-card-border);
    padding: 5px 12px;
    border-radius: 8px;
    min-width: 60px;
    display: inline-block;
}

.timer-block label {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section - Tabela comparativa */
.pricing-table-wrapper {
    max-width: 1100px;
    margin: 0 auto 50px;
    /* padding-top dá espaço para o selo "MAIS VENDIDO" (top: -15px) não ser cortado
       pelo overflow-x: auto, que força overflow-y a virar "auto" e cortaria o que
       ultrapassar a borda superior da caixa. */
    padding: 28px 4px 4px;
    overflow-x: auto;
}

.pricing-comparison-table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
}

.pt-feature-col {
    width: 25%;
    position: sticky;
    left: 0;
    background: var(--bg-dark);
    z-index: 2;
}

.pt-plan-col {
    position: relative;
    width: 25%;
    padding: 32px 22px 24px;
    text-align: center;
    vertical-align: bottom;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-bottom: none;
}

.pt-plan-col.pt-recommended {
    background: rgba(10, 181, 212, 0.09);
    border: 2px solid var(--color-cyan);
    border-bottom: none;
    box-shadow: 0 -10px 25px rgba(10, 181, 212, 0.15);
}

.pt-feature-name {
    padding: 18px 22px;
    text-align: left;
    color: var(--color-white);
    font-size: 0.98rem;
    font-weight: 600;
    background: var(--bg-dark);
    position: sticky;
    left: 0;
    z-index: 1;
}

tbody tr:nth-child(even) .pt-feature-name {
    background: rgba(255, 255, 255, 0.02);
}

.pt-cell {
    padding: 18px 22px;
    text-align: center;
    font-size: 1.05rem;
    background: var(--bg-card);
    border-left: 1px solid var(--bg-card-border);
    border-right: 1px solid var(--bg-card-border);
}

tbody tr:nth-child(even) .pt-cell:not(.pt-recommended) {
    background: rgba(255, 255, 255, 0.02);
}

.pt-cell i.fa-check,
.pt-cell i.fa-xmark {
    font-size: 1.25rem;
}

.pt-cell.pt-recommended {
    background: rgba(10, 181, 212, 0.09);
    border-left: 2px solid var(--color-cyan);
    border-right: 2px solid var(--color-cyan);
}

tbody tr:last-child .pt-cell {
    border-bottom: 1px solid var(--bg-card-border);
}

tbody tr:last-child .pt-cell.pt-recommended {
    border-bottom: 2px solid var(--color-cyan);
}

tfoot .pt-cell {
    border-top: none;
    border-bottom: 2px solid var(--color-cyan);
    padding: 24px 22px;
}

tfoot td:not(.pt-recommended).pt-cell {
    border-bottom: 1px solid var(--bg-card-border);
}

.pt-cell .btn-large {
    width: 100%;
    padding: 14px 12px;
    font-size: 0.92rem;
}

/* Altura uniforme de linha, mesmo quando o nome do recurso quebra em 2 linhas
   ou quando a célula carrega o selo "Em breve" empilhado abaixo do ícone */
.pt-feature-name,
.pt-cell {
    min-height: 62px;
}

/* Legenda no canto vazio acima da coluna de recursos */
.pt-legend {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--color-gray);
    line-height: 1.4;
    padding-bottom: 4px;
}

.pt-legend i {
    width: 14px;
}

.badge-discount {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-magenta);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(230, 0, 126, 0.4);
}

.pt-plan-col h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.pricing-card-desc {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin-bottom: 16px;
    min-height: 42px;
}

.price-block {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price-block .currency {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-cyan);
}

.price-block .amount {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.price-block .period {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin-left: 6px;
}

/* Asimov-style Rotating Guarantee Box & Seal */
.guarantee-box-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.guarantee-box-asimov {
    display: flex;
    align-items: center;
    gap: 35px;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(10, 181, 212, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    backdrop-filter: blur(15px);
    transition: border-color 0.3s;
}

.guarantee-box-asimov.glow-cyan:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 35px rgba(10, 181, 212, 0.15);
}

.guarantee-seal-container {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.rotating-seal-svg {
    width: 100%;
    height: 100%;
    animation: rotate-seal 20s linear infinite;
}

.seal-text {
    font-family: var(--font-heading);
    font-weight: 800;
    fill: var(--color-cyan);
    font-size: 8px;
    letter-spacing: 0.8px;
}

.seal-center-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--color-cyan);
    filter: drop-shadow(0 0 8px var(--color-cyan));
}

@keyframes rotate-seal {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guarantee-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-white);
}

.guarantee-text p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #080810;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(10, 181, 212, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
}

.faq-toggle-icon {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--color-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-item p {
    font-size: 0.92rem;
    color: var(--color-gray);
    line-height: 1.6;
    padding: 0 24px 20px;
}

/* Footer */
.footer {
    background: #08080f;
    padding: 40px 0;
    border-top: 1px solid var(--bg-card-border);
}

.footer p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.company-details {
    font-size: 0.75rem !important;
    margin-top: 5px;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

.footer-links a:hover {
    text-decoration: underline;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    color: var(--color-white);
    font-size: 2.2rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 991px) {
    .centered-hero {
        padding: 120px 0 60px;
    }
    
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .logo-badge-container-left {
        justify-content: center;
    }

    .left-headline {
        font-size: 2.5rem;
    }

    .left-lead {
        margin: 0 auto 30px;
    }

    .hero-bullet-list-left {
        align-items: center;
        max-width: 100%;
    }

    .left-cta-group {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-pill {
        width: 100%;
        max-width: 320px;
    }
    
    .nav-menu {
        display: none;
    }

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

    .not-chatbot-comparison {
        grid-template-columns: 1fr;
    }

    .solution-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 60px;
    }

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

    .solution-bullets {
        align-items: center;
    }

    .guarantee-box-asimov {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }
}

/* ============================================================
   ESTILOS DO MOCKUP DO WHATSAPP (HERO INTERATIVO)
   ============================================================ */

.whatsapp-mockup {
    width: 100%;
    max-width: 385px;
    background: #0b141a; /* Cor oficial do fundo do WhatsApp escuro */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(10, 181, 212, 0.15);
    display: flex;
    flex-direction: column;
    height: 480px;
    transition: var(--transition-premium);
    margin: 0 auto;
}

.whatsapp-mockup:hover {
    border-color: rgba(10, 181, 212, 0.4);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(10, 181, 212, 0.25);
}

.wa-header {
    background: #1f2c34; /* Header do WhatsApp */
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid rgba(10, 181, 212, 0.3);
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-avatar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 1.1rem;
}

.wa-info {
    text-align: left;
}

.wa-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1px;
}

.wa-info p {
    font-size: 0.72rem;
    color: #8696a0;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.online-dot {
    width: 6px;
    height: 6px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #25d366;
}

.wa-chat {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #0b141a;
    background-image: radial-gradient(rgba(26, 35, 42, 0.8) 1px, transparent 1px);
    background-size: 16px 16px;
    text-align: left;
}

.wa-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    word-wrap: break-word;
}

.wa-msg.wa-received {
    background: #202c33;
    color: var(--color-white);
    align-self: flex-start;
    border-top-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.wa-msg.wa-sent {
    background: #005c4b;
    color: var(--color-white);
    align-self: flex-end;
    border-top-right-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.wa-input-area {
    background: #1f2c34;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-input-area input {
    flex: 1;
    background: #2a3942;
    border: 1px solid rgba(255, 255, 255, 0.05);
    outline: none;
    color: var(--color-white);
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition-premium);
}

.wa-input-area input:focus {
    background: #32444f;
    border-color: rgba(10, 181, 212, 0.3);
}

.wa-input-area input::placeholder {
    color: #8696a0;
}

.wa-input-area button {
    background: var(--color-cyan);
    color: var(--bg-dark);
    border: none;
    outline: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-premium);
    flex-shrink: 0;
}

.wa-input-area button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px var(--color-cyan);
}

/* Indicador de digitando da IA */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 18px !important;
}

.typing-indicator .dot {
    width: 6px;
    height: 6px;
    background: #8696a0;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Modal de Captura de Leads */
.lead-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lead-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(10, 181, 212, 0.15);
    text-align: left;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.lead-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--color-gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-premium);
}

.modal-close-btn:hover {
    color: var(--color-white);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.modal-header p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
}

.form-group input {
    background: #0f0f1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    outline: none;
    color: var(--color-white);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition-premium);
}

.form-group input:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(10, 181, 212, 0.2);
}

.form-group input::placeholder {
    color: #4b5563;
}

.btn-submit-lead {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    outline: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    width: 100%;
    cursor: pointer;
    transition: var(--transition-premium);
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(10, 181, 212, 0.2);
}

.btn-submit-lead:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 181, 212, 0.4);
}

.btn-submit-lead:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ============================================================
   ESTILOS DOS CARROSSÉIS INTERATIVOS E MOCKUPS DINÂMICOS
   ============================================================ */

.display-mockup-alt {
    position: relative;
    padding: 0 !important;
    height: 350px !important;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.mini-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

/* Botões de navegação manual */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-premium);
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: var(--color-cyan);
    color: var(--bg-dark);
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(10, 181, 212, 0.4);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Dots indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-premium);
}

.indicator-dot.active {
    background: var(--color-cyan);
    width: 16px;
    border-radius: 4px;
}

/* Agenda de vários profissionais (Mock) */
.mock-grid-schedule {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #0f0f1f;
    padding: 15px;
    box-sizing: border-box;
}

.schedule-header-row {
    display: grid;
    grid-template-columns: 50px repeat(3, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--color-gray);
    text-align: center;
}

.schedule-grid-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.schedule-grid-row {
    display: grid;
    grid-template-columns: 50px repeat(3, 1fr);
    align-items: center;
    height: 38px;
}

.schedule-time-cell {
    font-size: 0.7rem;
    color: var(--color-gray);
    text-align: center;
}

.schedule-slot-card {
    background: rgba(10, 181, 212, 0.08);
    border: 1px solid rgba(10, 181, 212, 0.2);
    border-left: 3px solid var(--color-cyan);
    border-radius: 6px;
    padding: 4px 6px;
    font-size: 0.68rem;
    text-align: left;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90%;
}

.schedule-slot-card.busy-pink {
    background: rgba(230, 0, 126, 0.08);
    border-color: rgba(230, 0, 126, 0.2);
    border-left-color: var(--color-magenta);
}

.schedule-slot-card.busy-purple {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
    border-left-color: #a855f7;
}

.schedule-slot-card.empty-slot {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-left: none;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.schedule-slot-card span {
    font-weight: bold;
}

.schedule-slot-card label {
    font-size: 0.55rem;
    color: var(--color-gray);
}

/* Mockup de Notificações */
.notification-card-mock {
    background: rgba(10, 181, 212, 0.04);
    border: 1px solid rgba(10, 181, 212, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: float-notif 3s ease-in-out infinite;
}

@keyframes float-notif {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.notif-badge-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(10, 181, 212, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-cyan);
    flex-shrink: 0;
}

.notif-badge-icon.pink-glow {
    background: rgba(230, 0, 126, 0.12);
    color: var(--color-magenta);
}

.notif-content-text {
    text-align: left;
}

.notif-content-text span {
    font-size: 0.7rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.notif-content-text h4 {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--color-white);
    margin: 3px 0;
}

.notif-content-text p {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin: 0;
}

/* Indicador de Digitando IA no Mock */
.mock-typing-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #202c33;
    padding: 10px 14px;
    border-radius: 12px;
    width: fit-content;
    border-top-left-radius: 0;
    align-self: flex-start;
}

.mock-typing-box span {
    font-size: 0.8rem;
    color: #8696a0;
}

/* Cards de recurso (reaproveitados no carrossel "Explore Tudo") */
.feature-item-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: var(--transition-premium);
}

.feature-item-card:hover {
    border-color: rgba(10, 181, 212, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 181, 212, 0.08);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(10, 181, 212, 0.35);
}

.feature-item-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
}

.feature-item-card p {
    font-size: 0.88rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* Seção "Explore Tudo" - Carrossel horizontal de funcionalidades */
.all-features-section {
    background: rgba(255, 255, 255, 0.01);
    padding: 80px 0;
    border-top: 1px solid var(--bg-card-border);
}

.feature-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 24px;
}

.feature-carousel-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    padding: 16px 0;
}

.feature-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.feature-carousel-track {
    display: flex;
    gap: 20px;
}

.carousel-feature-card {
    position: relative;
    flex: 0 0 280px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-feature-card:hover {
    transform: scale(1.06);
    z-index: 2;
    border-color: rgba(10, 181, 212, 0.35);
    box-shadow: 0 12px 30px rgba(10, 181, 212, 0.18);
}

.feature-carousel-btn {
    flex-shrink: 0;
    background: rgba(15, 15, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-premium);
}

.feature-carousel-btn:hover {
    background: var(--color-cyan);
    color: var(--bg-dark);
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(10, 181, 212, 0.4);
}

@media (max-width: 560px) {
    .feature-carousel-wrapper {
        gap: 8px;
    }

    .feature-carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .carousel-feature-card {
        flex-basis: 240px;
    }
}

/* ============================================================
   SOBREPOSIÇÕES PREMIUM DE ATMOSFERA E CINEMA
   ============================================================ */

/* Film grain desativado - causava textura indesejada */
.film-grain {
    display: none;
}

/* ============================================================
   LOGO REAL - NAVBAR E HERO
   ============================================================ */

/* Logo na navbar: fundo rgba idêntico à barra do menu */
.navbar-logo {
    height: 52px !important;
    max-width: 200px !important;
    width: auto !important;
    display: block;
    object-fit: contain;
    background-color: rgba(6, 6, 12, 0.75);
    border-radius: 6px;
    padding: 4px 8px;
    filter: drop-shadow(0 0 8px rgba(10, 181, 212, 0.15));
    transition: filter 0.3s ease;
}

.navbar-logo:hover {
    filter: drop-shadow(0 0 16px rgba(10, 181, 212, 0.45));
}

/* Placeholder de vídeo no hero */
.hero-video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    border: 1px solid rgba(10, 181, 212, 0.15);
    background: rgba(10, 181, 212, 0.03);
    backdrop-filter: blur(4px);
}

.video-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.2);
}

.video-placeholder-inner i {
    font-size: 3rem;
    color: rgba(10, 181, 212, 0.3);
}

.video-placeholder-inner p {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

/* Rodapé: layout flex com logo à esquerda e info à direita */
.footer .container {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 56px !important;
    max-width: 220px !important;
    width: auto !important;
    display: block;
    object-fit: contain;
    background-color: rgb(6, 6, 12);
    border-radius: 8px;
    padding: 6px 10px;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.25));
}

.footer-info {
    flex: 1;
}
.dynamic-tint {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.25, 1, 0.5, 1), background 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}
