@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #060709;
    --card-bg: rgba(13, 16, 21, 0.45);
    --card-border: rgba(255, 255, 255, 0.12);
    --card-border-hover: rgba(181, 245, 0, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Neon gradients */
    --accent-teal: #08c39c;
    --accent-lime: #b5f500;
    --accent-glow: rgba(181, 245, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-lime) 100%);

    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-teal) 0%, var(--accent-lime) 100%);
    border-radius: 5px;
    border: 2.5px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-lime);
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-lime) var(--bg-color);
}

body {
    width: 100%;
    overflow-x: clip;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* Grid Line Background Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Radial Glows */
.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.6;
}

.glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Typography & Gradient Text */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-line {
    display: inline-block;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-teal);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-primary);
    max-width: 800px;
    margin-bottom: 40px;
}

/* Button & CTAs */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 16px 22px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(181, 245, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(181, 245, 0, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 16px 22px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-lime);
    color: var(--accent-lime);
    transform: translateY(-3px);
}

/* Glass Card */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--card-border-hover);
    box-shadow: 0 10px 30px rgba(181, 245, 0, 0.05);
}

/* Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header.scrolled {
    padding: 16px 0;
    background: rgba(6, 7, 9, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent-lime);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border-color: var(--accent-lime);
    color: var(--accent-lime);
    background: rgba(181, 245, 0, 0.05);
    transform: translateY(-2px);
}

.btn-whatsapp-nav i {
    color: #25d366;
    font-size: 13px;
}

.btn-whatsapp-nav:hover {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
    background: rgba(181, 245, 0, 0.05);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
    /* Prevent video overflow */
}

/* Fixed Video Container (Scrubbed on Scroll) */
.fixed-video-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind grid overlay (z-index: 1) but above body bg */
    pointer-events: none;
    overflow: hidden;
}

.fixed-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0;
}

.fixed-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, rgba(6, 7, 9, 0.7) 90%), linear-gradient(180deg, rgba(6, 7, 9, 0.15) 0%, #060709 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-primary);
    margin: 0 auto 20px;
    max-width: 700px;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1.5deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.45;
    }
}

.scroll-down {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 2;
    background: transparent;
    border: none;
}

.scroll-down svg {
    fill: var(--text-secondary);
    width: 32px;
    height: 32px;
    transition: var(--transition-smooth);
}

.scroll-down:hover svg {
    fill: var(--accent-lime);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Method Section - Venn Diagram Layout */
.method-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.venn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.venn-container {
    position: relative;
    width: 440px;
    height: 440px;
}

.venn-circle {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: #0d1015;
    /* Solid premium dark background to avoid filter bugs */
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    z-index: 2;
    /* Ensure circles are on top of container */
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.venn-circle h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0 4px;
    color: var(--text-primary);
}

.venn-circle p {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.venn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.venn-icon svg {
    width: 22px;
    height: 22px;
    transition: var(--transition-smooth);
}

.circle-estrategia .venn-icon svg {
    fill: var(--accent-teal);
}

.circle-ai .venn-icon svg {
    fill: #06b6d4;
}

.circle-humanizacao .venn-icon svg {
    fill: var(--accent-lime);
}

/* Positions for Venn Circles */
.circle-estrategia {
    top: 20px;
    left: -10px;
    border-color: rgba(8, 195, 156, 0.25);
}

.circle-estrategia .venn-icon {
    border-color: rgba(8, 195, 156, 0.3);
    background: rgba(8, 195, 156, 0.03);
}

.circle-ai {
    top: 20px;
    right: -10px;
    border-color: rgba(6, 182, 212, 0.25);
}

.circle-ai .venn-icon {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.03);
}

.circle-humanizacao {
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, 30%);
    border-color: rgba(181, 245, 0, 0.25);
}

.circle-humanizacao .venn-icon {
    border-color: rgba(181, 245, 0, 0.3);
    background: rgba(181, 245, 0, 0.03);
}

/* Hovers with Neon Glow borders */
.circle-estrategia:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 0 35px rgba(8, 195, 156, 0.35);
    z-index: 5;
    background: rgba(13, 16, 21, 0.7);
}

.circle-ai:hover {
    border-color: #06b6d4;
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.35);
    z-index: 5;
    background: rgba(13, 16, 21, 0.7);
}

.circle-humanizacao:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 0 35px rgba(181, 245, 0, 0.35);
    z-index: 5;
    background: rgba(13, 16, 21, 0.7);
}

/* Intersecting central node */
.venn-intersection {
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    color: #000;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 0 35px var(--accent-lime);
    pointer-events: none;
}

.venn-intersection.animate-heartbeat {
    animation: heartbeat 2.2s ease-in-out infinite;
}

.venn-intersection span {
    line-height: 1.2;
}

@keyframes heartbeat {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 35px var(--accent-lime);
    }

    14% {
        transform: translateX(-50%) scale(1.08);
        box-shadow: 0 0 45px var(--accent-lime);
    }

    28% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 35px var(--accent-lime);
    }

    42% {
        transform: translateX(-50%) scale(1.08);
        box-shadow: 0 0 45px var(--accent-lime);
    }

    70% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 35px var(--accent-lime);
    }
}

/* Purpose Section */
.purpose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.purpose-content p {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.purpose-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.purpose-glow-backdrop {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--accent-lime) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.25;
    animation: pulseGlow 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.purpose-visual img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 15px 50px rgba(8, 195, 156, 0.25));
}

/* Traffic Section (What We Do 1) */
.traffic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.traffic-card {
    height: 100%;
}

.traffic-card-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 24px;
    height: 100%;
}

.traffic-card-inner .card-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-lime);
    opacity: 0.5;
}

.traffic-card-inner h3 {
    font-size: 20px;
    color: var(--text-primary);
}

.traffic-card-inner p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.traffic-card-inner .platform-icon {
    font-size: 28px;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.traffic-card-inner .platform-icon svg {
    width: 28px !important;
    height: 28px !important;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    transition: fill 0.3s ease, color 0.3s ease;
}

/* Social Hover Colors */
.traffic-card-inner.google:hover {
    border-color: #4285F4;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.15);
}

.traffic-card-inner.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
}

.traffic-card-inner.meta:hover {
    border-color: #0081FB;
    box-shadow: 0 10px 30px rgba(0, 129, 251, 0.15);
}

.traffic-card-inner.chatgpt:hover {
    border-color: #10a37f;
    box-shadow: 0 10px 30px rgba(16, 163, 127, 0.15);
}

.traffic-card-inner.google:hover .platform-icon {
    color: #4285F4;
}

.traffic-card-inner.youtube:hover .platform-icon {
    color: #FF0000;
}

.traffic-card-inner.meta:hover .platform-icon {
    color: #0081FB;
}

.traffic-card-inner.chatgpt:hover .platform-icon {
    color: #10a37f;
}


/* Consultancy Section (Interactive Tabs) */
.consulting-wrapper {
    margin-top: 40px;
}

/* Bento Grid Styles */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bento-box {
    background: rgba(13, 16, 21, 0.55);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-box:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 245, 0, 0.3);
    box-shadow: 0 15px 35px rgba(181, 245, 0, 0.05);
}

/* Grid layout desktop placements */
.bento-box.box-marketing {
    grid-column: span 2;
}

.bento-box.box-growth {
    grid-column: span 1;
}

.bento-box.box-sales {
    grid-column: span 1;
}

.bento-box.box-audit {
    grid-column: span 1;
}

.bento-box.box-training {
    grid-column: span 1;
}

.bento-box.box-cta {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(8, 195, 156, 0.05) 0%, rgba(181, 245, 0, 0.05) 100%);
    border-color: rgba(181, 245, 0, 0.2);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    gap: 30px;
}

.bento-box.box-cta .cta-text-side {
    flex: 1;
    text-align: left;
}

.bento-box.box-cta .cta-button-side {
    flex-shrink: 0;
}

.bento-box.box-cta:hover {
    border-color: rgba(181, 245, 0, 0.4);
    box-shadow: 0 15px 35px rgba(181, 245, 0, 0.1);
}

.bento-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bento-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bento-badge {
    display: inline-block;
    font-size: 11px;
    color: var(--accent-lime);
    background: rgba(181, 245, 0, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    display: inline-block;
    font-size: 9px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff007f 0%, #ff3b30 100%);
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.45);
    animation: pulseBadgeNew 2s infinite alternate;
}

@keyframes pulseBadgeNew {
    0% {
        box-shadow: 0 0 6px rgba(255, 0, 127, 0.35);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 16px rgba(255, 0, 127, 0.65);
        transform: scale(1.03);
    }
}

.bento-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.bento-box-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-inner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    height: 100%;
    align-items: center;
}



/* Text List inside Bento Box */
.bento-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.bento-services-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.bento-services-list li svg {
    fill: var(--accent-lime);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Visual wrapper */
.bento-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bento-visual .mockup-window {
    max-width: 100%;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bento-toggle-icon {
    display: none;
    font-size: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

/* Section Background & Glow Effects */
#consultoria {
    position: relative;
    background: linear-gradient(180deg, #060709 0%, #0c0f16 50%, #060709 100%);
    /* More pronounced tech dot grid pattern */
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: center;
    overflow: hidden;
}

#consultoria::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(8, 195, 156, 0.22) 0%, rgba(181, 245, 0, 0.1) 50%, transparent 80%);
    pointer-events: none;
    z-index: 1;
    filter: blur(100px);
}

.consulting-wrapper {
    position: relative;
    z-index: 2;
}

/* Custom Interactive CSS Dashboards */
.mockup-window {
    width: 100%;
    max-width: 460px;
    background: rgba(13, 16, 21, 0.75);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(8, 195, 156, 0.05);
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: floatingMockup 6s ease-in-out infinite alternate;
}

@keyframes floatingMockup {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.window-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dot.red {
    background: #ff5f56;
}

.window-dot.yellow {
    background: #ffbd2e;
}

.window-dot.green {
    background: #27c93f;
}

.window-title {
    margin-left: auto;
    font-size: 11px;
    font-family: monospace;
    color: var(--text-secondary);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.window-content {
    padding: 24px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* 1. Marketing Funnel Mockup */
.mockup-funnel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.funnel-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.funnel-label {
    width: 130px;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: right;
}

.funnel-bar {
    flex-grow: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.funnel-bar .fill {
    height: 100%;
    border-radius: 5px;
    animation: fillProgress 1.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.funnel-row:nth-child(1) .fill {
    background: #08c39c;
}

.funnel-row:nth-child(2) .fill {
    background: #55db6d;
}

.funnel-row:nth-child(3) .fill {
    background: #b5f500;
}

.funnel-val {
    width: 35px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.mockup-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mockup-metrics .mini-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-card .card-title {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.mini-card .card-num {
    font-size: 18px;
    font-weight: 700;
}

.mini-card .card-num.val-down {
    color: #ff5f56;
}

.mini-card .card-num.val-up {
    color: var(--accent-lime);
}

/* 2. Growth Mockup */
.mockup-growth {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.growth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 12px;
}

.growth-header .metric-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.growth-header .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-lime);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(181, 245, 0, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 10px rgba(181, 245, 0, 0.8));
    }
}

.growth-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
    padding: 0 10px;
}

.growth-bars .bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 32px;
}

.growth-bars .bar-fill {
    width: 100%;
    background: linear-gradient(to top, #08c39c, #b5f500);
    border-radius: 4px;
    height: 0;
    animation: growBar 1.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.growth-bars .bar span {
    font-size: 9px;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* 3. Sales Ops Kanban */
.mockup-kanban {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.kanban-col {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kanban-col h5 {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
    opacity: 0.8;
}

.kanban-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kanban-card.card-a {
    animation: moveCardA 9s infinite ease-in-out;
}

.kanban-card.card-b {
    animation: moveCardB 9s infinite ease-in-out;
}

.kanban-card.card-c {
    animation: moveCardC 9s infinite ease-in-out;
}

@keyframes moveCardA {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    30% {
        transform: translateY(15px);
        opacity: 0.2;
    }

    35% {
        transform: translateY(-15px);
        opacity: 0;
    }

    40% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes moveCardB {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        border-color: var(--accent-lime);
    }
}

@keyframes moveCardC {

    0%,
    100% {
        background: rgba(255, 255, 255, 0.03);
    }

    50% {
        background: rgba(181, 245, 0, 0.08);
        border-color: var(--accent-lime);
    }
}

/* 4. Campaign Audit Mockup */
.mockup-audit {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.audit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.audit-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.audit-gauge {
    width: 60px;
    height: 60px;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke: var(--accent-lime);
    animation: progressCircle 2s ease-out forwards;
}

@keyframes progressCircle {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    fill: #fff;
    font-family: sans-serif;
    font-size: 9px;
    text-anchor: middle;
    font-weight: bold;
}

.audit-checklist {
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.audit-checklist li {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    transform: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.audit-checklist li i {
    font-size: 14px;
}

.audit-checklist li.checked i {
    color: var(--accent-lime);
}

.audit-checklist li.warning i {
    color: #ffbd2e;
}

.audit-scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-lime), transparent);
    animation: scanningLine 3s linear infinite;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes scanningLine {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* 5. Financial Gestao Mockup */
.mockup-gestao {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gestao-metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gestao-metric .lbl {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gestao-metric .val {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #fff 30%, var(--accent-lime) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-bar-small {
    height: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    animation: fillProgress 1.5s ease-out forwards;
}

.progress-fill.google-fill {
    background: #4285F4;
}

.progress-fill.meta-fill {
    background: #08c39c;
}

@keyframes fillProgress {
    from {
        width: 0%;
    }
}

/* 6. Training Hub Mockup */
.mockup-training {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.training-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 14px;
}

.training-icon {
    font-size: 24px;
    color: var(--accent-lime);
}

.training-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.training-info h5 {
    font-size: 13px;
    font-weight: 600;
}

.training-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    overflow: hidden;
}

.training-bar .fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: fillProgress 1.5s ease-out forwards;
}

.training-percentage {
    font-size: 10px;
    color: var(--text-secondary);
    align-self: flex-end;
}

.training-badges {
    display: flex;
    gap: 10px;
}

.training-badges .badge {
    background: rgba(181, 245, 0, 0.05);
    border: 1px solid rgba(181, 245, 0, 0.15);
    color: var(--accent-lime);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulseBadge 2s infinite alternate;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 2px rgba(181, 245, 0, 0.1);
    }

    100% {
        box-shadow: 0 0 10px rgba(181, 245, 0, 0.3);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Experience & Stats */
.experience-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.experience-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Success Cases (Videos) */
/* Success Cases (Videos) - Opção 3 em Formato Slider */
.cases-slider-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
}

.cases-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 10px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.cases-slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.cases-slider-track .video-card {
    flex: 0 0 750px;
    scroll-snap-align: center;
    cursor: pointer;
    padding: 24px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    align-items: center;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cases-slider-track .video-card:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 10px 30px rgba(181, 245, 0, 0.08);
}

.video-card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    font-size: 32px;
    color: var(--accent-lime);
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.client-info span {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-top: 2px;
}

.client-quote {
    font-size: 14px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.client-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-item {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(8, 195, 156, 0.08);
    border: 1px solid rgba(8, 195, 156, 0.2);
    color: var(--accent-teal);
}

.badge-item.lime {
    background: rgba(181, 245, 0, 0.08);
    border: 1px solid rgba(181, 245, 0, 0.2);
    color: var(--accent-lime);
}

.video-card-thumbnail {
    width: 100%;
}

/* Slider Navigation Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13, 16, 21, 0.8);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--gradient-primary);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(181, 245, 0, 0.4);
}

.slider-arrow.prev-btn {
    left: -60px;
}

.slider-arrow.next-btn {
    right: -60px;
}

/* Slider Dots Indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots .dot.active {
    background: var(--accent-lime);
    box-shadow: 0 0 10px var(--accent-lime);
    width: 24px;
    border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .slider-arrow.prev-btn {
        left: -10px;
    }

    .slider-arrow.next-btn {
        right: -10px;
    }

    .cases-slider-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .cases-slider-track .video-card {
        flex: 0 0 100%;
        grid-template-columns: 1.3fr 0.7fr;
    }
}

@media (max-width: 768px) {
    .cases-slider-track .video-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .slider-arrow {
        display: none;
        /* Hide arrows on mobile, rely on swipe */
    }

    .video-thumbnail {
        margin: 10px auto 0 !important;
        max-width: 150px !important;
    }
}

.video-thumbnail {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    max-width: 135px;
    width: 100%;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(181, 245, 0, 0.3);
}

.play-btn svg {
    fill: #000;
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-card:hover .video-thumbnail::after {
    background: rgba(0, 0, 0, 0.2);
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(181, 245, 0, 0.5);
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Google Partner section */
.partner-badge {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 635px;
}

.partner-logo {
    max-height: 80px;
    border-radius: 12px;
}

.partner-text {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
}

/* Process Section (How it works) */
.process-steps {
    position: relative;
    max-width: 1100px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 29px;
    /* Centered horizontally on nodes */
    left: calc(100% / 6);
    width: calc(100% * 2 / 3);
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

/* Growing connecting line animated by GSAP */
.process-progress-line {
    position: absolute;
    top: 29px;
    left: calc(100% / 6);
    width: 0;
    max-width: calc(100% * 2 / 3);
    height: 2px;
    background: var(--gradient-primary);
    z-index: 1;
    transform-origin: left;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-node {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.step-item:hover .step-node {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
    box-shadow: 0 0 15px rgba(181, 245, 0, 0.2);
}

.step-node.node-cta {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
    box-shadow: 0 0 15px rgba(181, 245, 0, 0.25);
    background: rgba(181, 245, 0, 0.04);
}

.step-item:hover .step-node.node-cta {
    box-shadow: 0 0 25px rgba(181, 245, 0, 0.5);
    background: rgba(181, 245, 0, 0.08);
}

.step-info {
    padding-top: 0;
}

.step-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-info p {
    color: var(--text-secondary);
}

#process-cta {
    margin-top: 50px;
}

/* Footer & Back to top */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 70px;
}

.footer-copy {
    font-size: 14px;
    color: var(--text-muted);
}

.back-to-top {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.back-to-top:hover {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
    transform: translateY(-3px);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 380px;
    max-height: 85vh;
    aspect-ratio: 9/16;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-lime);
}

.lightbox-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Interactive Growth Chart SVG styling */
.chart-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.chart-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    /* Animated by GSAP */
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 52px;
    }

    .method-grid,
    .purpose-wrapper,
    .experience-layout,
    .tab-pane-grid {
        display: block !important;
        min-height: auto;
    }

    .method-content,
    .purpose-content,
    .experience-content {
        margin-bottom: 40px;
    }

    .tab-pane-visual {
        display: block;
    }

    /* Simpler layout on tablets */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-box {
        grid-column: span 1 !important;
        padding: 24px;
        cursor: pointer;
    }

    .bento-box:hover {
        transform: none !important;
    }

    .bento-toggle-icon {
        display: block;
        /* Visible on mobile */
    }

    .bento-box-header {
        margin-bottom: 0;
        transition: margin-bottom 0.3s ease;
    }

    .bento-box.active .bento-box-header {
        margin-bottom: 20px;
    }

    .bento-box .bento-box-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
        opacity: 0;
        margin-top: 0;
    }

    .bento-box.active .bento-box-content {
        max-height: 1200px;
        opacity: 1;
        margin-top: 20px;
    }

    .bento-box.active .bento-toggle-icon {
        transform: rotate(180deg);
        color: var(--accent-lime);
    }

    .bento-box.box-marketing .bento-inner-grid,
    .bento-box.box-training .bento-inner-grid {
        grid-template-columns: 1fr;
    }

    .bento-inner-grid {
        gap: 20px;
    }

    .bento-box.box-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
        gap: 20px;
    }

    .bento-box.box-cta .cta-text-side {
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Stacked Cards for Traffic Section (Mobile) */
    #servicos-trafego {
        overflow: visible;
    }

    .traffic-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .traffic-card {
        position: sticky;
        top: 15vh;
    }

    .traffic-card-inner {
        background: rgba(13, 16, 21, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        transform-origin: top center;
    }

    .partner-badge {
        flex-direction: column;
        text-align: center;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Header Mobile Menu adjustments */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(6, 7, 9, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        z-index: 105;
        transition: var(--transition-smooth);
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .btn-whatsapp-nav {
        display: inline-flex;
        font-size: 10px;
        padding: 8px 12px;
        border-radius: 8px;
        z-index: 106;

    }

    .venn-wrapper {
        margin-top: 10px;
        overflow: hidden;
        padding-bottom: 80px;
    }

    .venn-container {
        position: relative;
        left: 50%;
        transform: translateX(-50%) scale(0.8) !important;
        transform-origin: center center;
        margin: -25px 0 !important;
    }

    .venn-circle h3 {
        font-size: 22px;
    }

    .venn-circle p {
        font-size: 14px;
    }

    .venn-intersection {
        font-size: 13px;
        width: 140px;
        height: 140px;
        top: 185px;
    }

    /* Process Section - Reset to Vertical on Mobile */
    .process-steps {
        flex-direction: column;
        max-width: 800px;
        gap: 40px;
    }

    .process-steps::before {
        top: 29px;
        left: 28px;
        width: 2px;
        height: calc(100% - 58px);
    }

    .process-progress-line {
        top: 29px;
        left: 28px;
        width: 2px;
        height: 0;
        max-height: calc(100% - 58px);
        transform-origin: top;
    }

    .step-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 28px;
    }

    .step-info {
        padding-top: 12px;
    }

    #process-cta {
        margin-top: 20px;
    }

    /* Sticky Tab Navigation for Consulting Section (Mobile) */
    #consultoria {
        overflow: visible !important;
    }


}

@media (max-width: 480px) {
    .venn-container {
        position: relative;
        left: 50%;
        transform: translateX(-50%) scale(0.7) !important;
        transform-origin: center center;
        margin: -50px 0 !important;
    }

    .venn-circle h3 {
        font-size: 24px;
    }

    .venn-circle p {
        font-size: 15px;
    }

    .venn-intersection {
        font-size: 14px;
        width: 142px;
        height: 142px;
    }

    .circle-estrategia {
        top: 10px;
        left: -50px;
        border-color: rgba(8, 195, 156, 0.25);
    }

    .circle-ai {
        top: 10px;
        right: -65px;
        border-color: rgba(6, 182, 212, 0.25);
    }

    /* Prevent hero text overflow on narrow mobile screens */
    .hero-content h1 {
        font-size: 42px !important;
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: 15px !important;
    }

    .hero-line {
        display: inline !important;
    }

    #hero-tag {
        padding-top: 100px!important;
        font-size: 14px !important;
        letter-spacing: 1px !important;
        display: block !important;
    }
}