/* ==========================================================================
   CSS Variables & Theme Setup
   ========================================================================== */
:root {
    /* Colors Premium Identity */
    --bg-dark: #070B14;
    /* Very dark blue/black */
    --bg-card: #0F172A;
    /* Petrol blue card background */
    --bg-surface: #1E293B;
    /* Graphite surface */

    --text-primary: #F8FAFC;
    /* Off-white */
    --text-secondary: #94A3B8;
    /* Slate light gray */

    --accent-primary: #00E6A8;
    /* vibrant Cyan/Green */
    --accent-secondary: #00B3FF;
    /* Tech Blue */
    --accent-glow: rgba(0, 230, 168, 0.2);

    --border-color: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-pad: 8rem 0;

    /* Animation */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Tech Background Canvas & Overlay
   ========================================================================== */

/* Canvas de partículas - fixo, cobre tudo, atrás de tudo */
#techCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Grade tech com scanline animado */
.tech-grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.4;
}

.tech-grid-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 59px,
        rgba(0, 179, 255, 0.04) 59px,
        rgba(0, 179, 255, 0.04) 60px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 59px,
        rgba(0, 179, 255, 0.04) 59px,
        rgba(0, 179, 255, 0.04) 60px
    );
}

/* Linha de scan deslizando de cima para baixo */
.tech-grid-overlay::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 230, 168, 0.3) 20%,
        rgba(0, 230, 168, 0.6) 50%,
        rgba(0, 230, 168, 0.3) 80%,
        transparent 100%
    );
    animation: scanline 8s linear infinite;
    box-shadow: 0 0 20px rgba(0, 230, 168, 0.4);
}

@keyframes scanline {
    0% { top: -2px; }
    100% { top: 100vh; }
}

/* Garantir que todos os conteúdos ficam acima do canvas */
header, section, footer, .whatsapp-btn {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Badge Dot Pulsante
   ========================================================================== */
.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    margin-right: 8px;
    vertical-align: middle;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--accent-primary);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px rgba(0, 230, 168, 0.7); }
    50% { opacity: 0.5; transform: scale(0.75); box-shadow: 0 0 12px rgba(0, 230, 168, 0.2); }
}

/* ==========================================================================
   Typed Text Cursor
   ========================================================================== */
.typed-text::after {
    content: '|';
    display: inline-block;
    margin-left: 3px;
    color: var(--accent-primary);
    animation: cursorBlink 0.8s step-end infinite;
}

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

/* ==========================================================================
   Glow Pulsante nos Cards e Seções
   ========================================================================== */
.service-card:hover,
.problem-card:hover {
    box-shadow: 0 0 30px rgba(0, 230, 168, 0.12), 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Borda animada gradient nos service cards */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 230, 168, 0.2), rgba(0, 179, 255, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* ==========================================================================
   Floating Glow Orbs (decoração hero)
   ========================================================================== */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 230, 168, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 179, 255, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat 12s ease-in-out infinite alternate-reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.1); }
}

/* Seção hero com conteúdo acima do canvas */
.hero-content, .hero-visual {
    position: relative;
    z-index: 2;
}

/* Efeito de brilho no título hero */
.hero-content h1 {
    text-shadow: 0 0 60px rgba(0, 230, 168, 0.1);
}

/* Glow nos ícones sociais */
.social-links a:hover {
    box-shadow: 0 0 15px rgba(0, 230, 168, 0.5);
}

/* Animação de entrada suave */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-pad);
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-bg {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.text-light {
    color: var(--text-secondary);
}

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

.icon-green {
    stroke: var(--accent-primary);
}

.dark-bg {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: #00cc95;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 230, 168, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-block {
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 230, 168, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 230, 168, 0.2);
    margin-bottom: 1rem;
}

.badge-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-secondary);
}

/* Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.2rem 0;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar--hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(7, 11, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.1rem 0;
}

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

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

.footer-logo-img {
    height: 700px !important;
    width: auto !important;
    max-width: 100%;
    display: block;
}

.footer-logo a {
    display: block;
}

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

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(0, 230, 168, 0.1) 0%, rgba(7, 11, 20, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

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

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 90%;
}

.bullet-proof {
    margin-bottom: 3rem;
}

.bullet-proof li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-note svg {
    width: 16px;
    height: 16px;
}

/* Dashboard Mockup in Hero */
.dashboard-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 230, 168, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.mockup-header {
    background: var(--bg-surface);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.dot.red {
    background: #FF5A5A;
}

.dot.yellow {
    background: #FFBC1F;
}

.dot.green {
    background: #00E6A8;
}

.mockup-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metric-card {
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.metric-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 100px;
    padding-top: 1rem;
}

.bar {
    flex: 1;
    background: var(--bg-surface);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-primary);
    background: rgba(0, 230, 168, 0.1);
    padding: 0.75rem;
    border-radius: 6px;
}

.ai-status svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    stroke: var(--text-secondary);
}

.problem-conclusion {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.alert-box {
    background: rgba(255, 90, 90, 0.1);
    border: 1px solid rgba(255, 90, 90, 0.2);
    color: #FF8F8F;
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    font-size: 1.125rem;
}

.alert-box strong {
    color: #FF5A5A;
}

/* ==========================================================================
   Solution Section
   ========================================================================== */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.solution-pillars {
    margin-top: 2rem;
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.solution-pillars p {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-pillars ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.solution-pillars li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

/* Graphic */
.solution-visual {
    position: relative;
    height: 400px;
}

.glow-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 179, 255, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    border-radius: 50%;
}

.network-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--accent-primary);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 230, 168, 0.1);
    z-index: 2;
}

.center-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-primary);
    color: var(--bg-dark);
    font-size: 1.5rem;
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 230, 168, 0.4);
}

.node-1 {
    top: 15%;
    left: 15%;
}

.node-2 {
    top: 25%;
    right: 15%;
}

.node-3 {
    bottom: 15%;
    left: 40%;
}

.connections {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.connections line {
    stroke: rgba(0, 230, 168, 0.3);
    stroke-width: 2;
    stroke-dasharray: 4;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.service-card {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 168, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.service-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-row:hover {
    border-color: rgba(0, 230, 168, 0.3);
    transform: translateX(10px);
}

.benefit-icon {
    background: rgba(0, 230, 168, 0.1);
    color: var(--accent-primary);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
}

.benefit-text p {
    margin-bottom: 0;
}

/* ==========================================================================
   Differentiators Section
   ========================================================================== */
.diff-card {
    padding: 2rem;
    border-left: 2px solid var(--border-color);
    transition: var(--transition);
}

.diff-card:hover {
    border-left-color: var(--accent-primary);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.diff-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-surface);
    -webkit-text-stroke: 1px var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1;
}

.diff-highlight {
    background: rgba(0, 230, 168, 0.05);
    border-left-color: var(--accent-primary);
    border-radius: 0 8px 8px 0;
}

.diff-highlight .diff-number {
    color: var(--accent-primary);
    -webkit-text-stroke: 0;
}

.diff-highlight .diff-number svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-primary);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    padding-bottom: 120px;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 179, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cta-list {
    margin: 2rem 0;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.cta-list svg {
    width: 20px;
    height: 20px;
}

.form-container {
    background: var(--bg-dark);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 230, 168, 0.2);
}

.form-container h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

.footer-logo-img {
    height: 80px !important;
    width: auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .footer-logo {
    margin-bottom: 0;
}

.footer-tagline {
    margin-top: 0.25rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.link-group a:hover {
    color: var(--accent-primary);
}

/* Telefone no rodapé */
.footer-phone {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-phone svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-phone:hover {
    color: var(--accent-primary);
}


.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
}

.footer-bottom {
    background: #04070D;
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   CTA 1 — Faixa de Urgência
   ========================================================================== */
.cta-urgency {
    background: linear-gradient(135deg, rgba(0, 230, 168, 0.08) 0%, rgba(0, 179, 255, 0.06) 100%);
    border-top: 1px solid rgba(0, 230, 168, 0.2);
    border-bottom: 1px solid rgba(0, 230, 168, 0.2);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.cta-urgency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-urgency-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cta-urgency-text p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-primary);
    flex-shrink: 0;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 230, 168, 0.8);
}

.cta-urgency .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-urgency .btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   CTA 2 — Prova Social com Números
   ========================================================================== */
.cta-numbers {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.cta-numbers-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 3rem;
}

.cta-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.cta-stat:hover {
    border-color: rgba(0, 230, 168, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 230, 168, 0.1);
}

.cta-stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.cta-stat-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.cta-numbers-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-sub {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.cta-sub svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-primary);
}

.cta-numbers .btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   CTA 3 — Card WhatsApp Direto
   ========================================================================== */
.cta-whatsapp-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.cta-whatsapp-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.07) 0%, rgba(0, 179, 255, 0.05) 100%);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    transition: var(--transition);
}

.cta-whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.1);
}

.cta-whatsapp-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.5));
    animation: orbFloat 4s ease-in-out infinite alternate;
}

.cta-whatsapp-text {
    flex: 1;
}

.cta-whatsapp-text h3 {
    margin-bottom: 0.5rem;
}

.cta-whatsapp-text p {
    margin: 0;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background-color: #1da851;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ==========================================================================
   Hamburger Menu
   ========================================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }

    .hero-container,
    .solution-grid,
    .cta-box,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-box { padding: 2.5rem; }
    .hero { padding-top: 150px; }

    .cta-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    /* Show hamburger, hide desktop nav */
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(7, 11, 20, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1050;
        padding: 2rem;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a:not(.btn) {
        font-size: 1.4rem;
        font-weight: 600;
    }

    .nav-links .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    /* Grids */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }

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

    .hero-cta {
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 340px;
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        text-align: center;
    }

    .bullet-points li {
        justify-content: center;
    }

    /* Logo */
    .logo-img {
        height: 100px;
    }
    .footer-logo-img {
        height: 280px;
    }

    /* Solutions */
    .solution-pillars ul {
        grid-template-columns: 1fr;
    }

    /* CTA boxes */
    .cta-box {
        padding: 1.5rem;
        gap: 2rem;
    }

    /* CTA urgency */
    .cta-urgency-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

    /* CTA números */
    .cta-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-stat-value {
        font-size: 2.2rem;
    }

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

    /* CTA WhatsApp card */
    .cta-whatsapp-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* WhatsApp button */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.5rem; }

    .container { padding: 0 1rem; }

    .cta-numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .cta-stat {
        padding: 1.25rem 0.75rem;
    }

    .cta-stat-value {
        font-size: 1.9rem;
    }

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

    .cta-box {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 230, 168, 0.2);
    padding: 1.25rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 260px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-banner-text strong {
    color: var(--text-primary);
}

.cookie-banner-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent-primary);
    color: var(--bg-dark);
}

.cookie-btn-accept:hover {
    background: #00cc95;
    transform: translateY(-1px);
}

.cookie-btn-essential {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-btn-essential:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.cookie-btn-link {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    background: none;
}

.cookie-btn-link:hover {
    color: var(--accent-primary);
    text-decoration: none;
}

@media (max-width: 640px) {
    .cookie-banner { padding: 1rem; }
    .cookie-banner-content { gap: 1rem; }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn-accept, .cookie-btn-essential { flex: 1; }
}
/* Dropdown Menu Integrado */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1c23;
    min-width: 275px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(0, 230, 168, 0.2); /* Borda verde suave da INTELIBIZ */
    top: 100%;
    left: 0;
}
.dropdown-content a {
    color: #a1a1aa !important;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a:hover {
    background-color: rgba(0, 230, 168, 0.1);
    color: #fff !important;
    padding-left: 22px; /* Efeito agradável de slide B2B */
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 768px) {
    .dropdown:hover .dropdown-content { display: none; }
    .dropdown-content { position: relative; width: 100%; display: block; background: transparent; box-shadow: none; border: none; }
    .dropdown-content a { padding-left: 30px; font-size: 1.1rem; border-bottom: none; }
}

/* Typing Cursor Animation */
.cursor {
    display: inline-block;
    width: 4px;
    margin-left: 4px;
    background-color: transparent;
    color: #00e6a8; /* match the gradient color loosely */
    animation: blink 1s infinite;
}
.cursor.typing {
    animation: none;
}
@keyframes blink {
    0% {  opacity: 1; }
    49% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
}

/* ==========================================================================
   Logo Watermark - Fundo transparente em todas as secoes
   ========================================================================== */
.section-logo-watermark {
    position: relative;
    overflow: hidden;
}

.section-logo-watermark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background-image: url('Imagens/logo fundo transparente intelibiz_ImgID1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.section-logo-watermark > * {
    position: relative;
    z-index: 1;
}
