:root {
    /* Colors - Original Purple/Cyan Palette */
    --bg-dark: #0a0e17;
    --bg-card: #151b2b;
    --primary: #6d28d9;
    /* Deep Purple */
    --primary-light: #8b5cf6;
    --accent: #06b6d4;
    /* Cyan */
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --border-color: #374151;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #6d28d9 0%, #06b6d4 100%);
    --gradient-text: linear-gradient(90deg, #a78bfa, #22d3ee);

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows */
    --shadow-glow: 0 0 20px rgba(109, 40, 217, 0.3);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}


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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.highlight {

    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
}



/* Modern Buttons (Next Gen) */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    /* Increased padding */
    border-radius: 9999px;
    /* Absolute maximum roundness (perfect pill) */
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

/* Primary: Gradient + Neon Glow */
.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    /* Purple to Blue */
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Secondary: Glassmorphism */
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Inherits border-radius: 9999px from .btn */
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
}

/* Header Specific Overrides */
.header-cta .btn {
    padding: 0.7rem 1.5rem;
    /* Slightly smaller for header */
    font-size: 0.85rem;
}

.header-cta .btn-secondary {
    margin-left: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}



/* Header */
#header {
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

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

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

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 180px;
    /* Increased to account for taller header logo */
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

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

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.2));
    animation: float 6s ease-in-out infinite;
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Keyframes */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Sections General */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 1rem;
}

/* Cards (Problem) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}


.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(145deg, var(--bg-card), #1e263b);
}

.hero-image {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.card .icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Solution (Split Layout) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse .text-content {
    order: 2;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

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

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Use Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: linear-gradient(145deg, var(--bg-card), #0f1320);
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 2px solid transparent;
}

.feature-box:hover {
    border-top-color: var(--accent);
}

.feature-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.feature-box ul li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.feature-box ul li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Differential */
.center-text {
    text-align: center;
}

.differential-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.diff-item {
    max-width: 300px;
    text-align: center;
}

.diff-item h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.quote-box {
    margin-top: 4rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-white);
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 2rem;
    display: inline-block;
    text-align: left;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.benefit-card:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.benefit-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}


/* Authority */
#autoridade {
    background: linear-gradient(to right, var(--bg-card), var(--bg-dark));
}

.authority-content {
    display: flex;
    justify-content: center;
    text-align: center;
}

.auth-text {
    max-width: 800px;
}

/* Client Benefits Section */
#cliente {
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
}

.client-benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: 0.3s;
}

.client-benefit-item:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.cb-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cb-text h3 {
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-size: 1.2rem;
}

.cb-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}







/* Market Intelligence Section */
#market-intelligence {
    background: var(--bg-dark);
    padding: 8rem 0;
    position: relative;
}

#market-intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
}

.intelligence-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.intelligence-content {
    flex: 1;
    min-width: 300px;
}

.intelligence-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intelligence-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.metric-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.metric-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

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

/* Dashboard Visual */
.dashboard-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: absolute;
    backdrop-filter: blur(10px);
}

.card-main {
    width: 300px;
    height: 220px;
    padding: 1.5rem;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 3px solid var(--primary);
}

.card-header {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.card-graph {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
}

.bar {
    width: 12%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    animation: bar-grow 2s ease-out forwards;
}

.bar:nth-child(1)::after {
    animation-delay: 0.2s;
    height: 100%;
}

.bar:nth-child(2)::after {
    animation-delay: 0.4s;
    height: 100%;
}

.bar:nth-child(3)::after {
    animation-delay: 0.6s;
    height: 100%;
}

.bar:nth-child(4)::after {
    animation-delay: 0.8s;
    height: 100%;
}

.bar:nth-child(5)::after {
    animation-delay: 1.0s;
    height: 100%;
}

.bar.active {
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.card-float-1 {
    padding: 1rem 1.5rem;
    top: 20%;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    z-index: 11;
    border-left: 3px solid #10b981;
}

.card-float-1 i {
    color: #10b981;
}

.card-float-2 {
    padding: 1rem 1.5rem;
    bottom: 20%;
    left: 10%;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 5s ease-in-out infinite reverse;
    z-index: 12;
    border-left: 3px solid #f59e0b;
}

.card-float-2 i {
    color: #f59e0b;
}

@keyframes bar-grow {
    from {
        height: 0%;
    }

    to {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .intelligence-wrapper {
        flex-direction: column;
    }

    .intelligence-metrics {
        grid-template-columns: 1fr;
    }
}

#social-integration {
    background: radial-gradient(circle at 70% 50%, rgba(109, 40, 217, 0.15) 0%, rgba(10, 14, 23, 1) 70%);
    overflow: hidden;
    perspective: 1000px;
    /* For 3D effects */
    padding: 8rem 0;
}

.social-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* Challenge Section */
#desafio-tradicional {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f1320 100%);
    padding: var(--spacing-xl) 0;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.challenge-column {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.challenge-column.bad {
    border-top: 4px solid #ef4444;
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.05), var(--bg-card));
}

.challenge-column.unique {
    border-top: 4px solid var(--primary);
    transform: scale(1.05);
    /* Highlight middle */
    z-index: 2;
    background: linear-gradient(145deg, rgba(109, 40, 217, 0.1), #1e263b);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.challenge-column.good {
    border-top: 4px solid #10b981;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), var(--bg-card));
}

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

.col-header .icon-bad {
    color: #ef4444;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.col-header .icon-unique {
    color: var(--primary-light);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.col-header .icon-good {
    color: #10b981;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-list li,
.gain-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pain-list li i {
    color: #ef4444;
    margin-top: 4px;
    flex-shrink: 0;
}

.gain-list li i {
    color: #10b981;
    margin-top: 4px;
    flex-shrink: 0;
}

.unique-content {
    text-align: center;
    color: var(--text-white);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.col-summary {
    margin-top: auto;
    padding-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.col-summary.bad p {
    color: #f87171;
    margin-bottom: 0;
}

.col-summary.unique p {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.col-summary.good p {
    color: #34d399;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .challenge-column.unique {
        transform: none;
        margin: 2rem 0;
    }

    .challenge-grid {
        gap: 2rem;
    }
}

.social-text {
    flex: 1;
    z-index: 10;
}

.social-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;

    background: linear-gradient(90deg, #fff, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.social-benefits i {
    color: var(--accent);
    background: rgba(6, 182, 212, 0.1);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

/* 3D Visual Area */
.social-visual {
    flex: 1;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.orbit-system {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateX(20deg) rotateY(-10deg);
    /* Initial 3D tilt */
    transition: transform 0.1s ease-out;
    /* Smooth parallax */
}

/* Central Pulse */
.central-node {
    width: 140px;
    height: 140px;
    background: rgba(21, 27, 43, 0.9);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(109, 40, 217, 0.6);
    z-index: 20;
    position: relative;
    backdrop-filter: blur(10px);
}

.pulsing-glow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.central-node i {
    font-size: 4rem;

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    /* Text removed, no margin needed */
}


/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 250px;
    height: 250px;
    animation: spin 20s linear infinite;
}

.ring-2 {
    width: 350px;
    height: 350px;
    border-color: rgba(6, 182, 212, 0.2);
    animation: spin 30s linear infinite reverse;
}

.ring-3 {
    width: 450px;
    height: 450px;
    border: 1px dotted rgba(109, 40, 217, 0.2);
    animation: spin 40s linear infinite;
}

/* Floating Icons */
.float-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(30, 38, 59, 0.9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 15;
    transition: transform 0.3s ease;
    animation: float-icon 4s ease-in-out infinite;
}


/* Positions for Floating Icons (Absolute regarding container) */
.icon-insta {
    top: 10%;
    left: 20%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    animation-delay: 0s;
}

.icon-facebook {
    top: 75%;
    left: 80%;
    background: #1877F2;
    animation-delay: 1.5s;
}

.icon-tiktok {
    top: 80%;
    left: 20%;
    background: #000;
    border: 1px solid #333;
    animation-delay: 3s;
}

.icon-youtube {
    top: 20%;
    left: 80%;
    background: #FF0000;
    animation-delay: 0.5s;
}

.icon-linkedin {
    top: 60%;
    left: 5%;
    background: #0077b5;
    animation-delay: 2.2s;
}

.icon-pinterest {
    top: 15%;
    left: 50%;
    background: #bd081c;
    animation-delay: 1.2s;
}

.icon-x {
    top: 85%;
    left: 50%;
    background: #000;
    border: 1px solid #333;
    animation-delay: 2.8s;
}

.icon-whatsapp {
    top: 45%;
    left: 90%;
    background: #25D366;
    animation-delay: 1.8s;
}

.icon-telegram {
    top: 45%;
    left: 10%;
    background: #0088cc;
    animation-delay: 0.8s;
}

.icon-google {
    top: 5%;
    left: 65%;
    background: #4285F4;
    animation-delay: 2.5s;
}

/* Connections SVG */
.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.3;
}

.connect-line {
    stroke: var(--accent);
    stroke-width: 1;
    stroke-dasharray: 5;
    animation: dash 1s linear infinite;
}

/* Animations */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}


.orbit-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #1e263b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    animation: orbit 10s linear infinite;
}

.icon-insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transform-origin: 180px center;
}

.icon-facebook {
    background: #1877F2;
    transform-origin: -120px center;
    animation-delay: -2s;
}

.icon-tiktok {
    background: #000000;
    transform-origin: 0px 180px;
    animation-delay: -5s;
    border: 1px solid #333;
}

.icon-kwai {
    background: #FF8F00;
    transform-origin: 0px -180px;
    animation-delay: -7s;
    font-weight: bold;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

@media (max-width: 768px) {
    .social-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .social-visual {
        width: 100%;
        margin-top: 2rem;
    }
}



/* Implementation Roadmap */
.implementation-roadmap {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(109, 40, 217, 0.1));
    overflow: hidden;
    position: relative;
    padding: 3rem;
}

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


.roadmap-header h3 {
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.speed-stat {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0;
    background: linear-gradient(90deg, #06b6d4, #10b981);
    /* Cyan to Green for speed */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.speed-label {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.roadmap-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.3);
    transition: 0.3s;
}

.step-item:hover .step-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 30px rgba(109, 40, 217, 0.6);
}

.step-content h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

/* Connecting Line */
.progress-line {
    position: absolute;
    top: 35px;
    /* Half of icon height */
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1;
    opacity: 0.3;
}


/* Accordion Section */
.accordion-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 500;
}

.accordion-header i {
    color: var(--text-gray);
    transition: transform 0.3s;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.4);
}

.accordion-body p {
    padding: 1.5rem;
    padding-top: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.accordion-item.active {
    border-color: var(--accent);
    background: rgba(109, 40, 217, 0.1);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--accent);
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    /* Adjust based on content */
}



/* Refined Footer (Green Card Layout) */
#footer-refined {
    background: #000;
    padding: 6rem 0;
}

.footer-split-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

/* Contact Card */
.contact-card-green {
    background: #0b0b0b;
    /* Dark Card */
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.contact-green-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.contact-green-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box-green {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 127, 0.05);
    /* Very subtle green bg */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff7f;
    /* Spring Green */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-green-list .info-content {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-green-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.contact-green-list a:hover {
    color: #00ff7f;
}

/* Note Section */
.contact-note-green {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.green-bar {
    width: 4px;
    height: 40px;
    background: #00ff7f;
    border-radius: 2px;
    flex-shrink: 0;
}

.contact-note-green p {
    margin: 0;
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Logo Side */
.footer-logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-large {
    height: 150px;
    width: auto;
    /* Filter removed to show original colors */
    opacity: 1;
    /* Fully visible */
}


@media (max-width: 900px) {
    .footer-split-layout {
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .contact-card-green {
        padding: 2rem;
    }
}



/* Footer Contacts */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.contact-list li i {
    color: var(--primary);
    margin-top: 5px;
}

.contact-list li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
}

.contact-list li a:hover {
    color: var(--accent);
}

.contact-note {
    border-radius: 4px;
    line-height: 1.4;
}

/* Header Button Secondary */
.header-cta .btn-secondary {
    background: transparent;
    border: 1px solid var(--text-white);
    padding: 0.5rem 1rem;
}

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

@media (max-width: 768px) {
    .roadmap-steps {
        flex-direction: column;
        align-items: center;
    }

    .progress-line {
        display: none;
    }

    .step-item {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        padding: 1rem;
        border-radius: 10px;
    }

    .step-icon {
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}



.cta-final h2 {
    margin-bottom: 1.5rem;
}

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.9rem;
}

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

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .split-layout.reverse .text-content {
        order: 1;
    }

    nav {
        display: none;
        /* simple hide for now, would need JS toggle */
    }


    .mobile-menu-icon {
        display: block;
    }
}

/* Animations */
.animate-on-scroll {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-on-scroll:not(.fade-in-up) {
    transform: translateY(20px);
}

nav.active ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--bg-card);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    display: flex;
}

/* Consumer Habit Section */
/* Consumer Habit Section */
#novo-costume {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* Split Layout Styles */
/* Split Layout Styles */
.ag-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* Standard gap for equal split */
    align-items: center;
}

.ag-text-col {
    padding-right: 0;
}

.section-header.align-left {
    text-align: left;
    margin: 0 0 2rem 0;
    max-width: none;
    /* remove constraint */
}

.habit-alert.align-left {
    margin: 3rem 0 0 0;
    /* More space above alert */
    text-align: left;
    justify-content: flex-start;
}

.habit-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.habit-slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 12px;
    /* Optional: round corners of slider container itself */
}

.habit-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.habit-slide {
    min-width: 100%;
    /* Default 1 slide per view on mobile/inside column */
    box-sizing: border-box;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Adjust slides per view inside the column context */
/* Since column is 50% width, 1 slide is good, maybe 2 on very wide screens? */
/* Let's keep 1 slide per view inside the split column for better focus as requested "slide on side" */
@media (min-width: 1400px) {
    .habit-slide {
        /* maybe 2 slides if really wide? Let's stick to 1 for now to be safe with image sizes */
        min-width: 100%;
    }
}

.step-image {
    position: relative;
    width: 100%;
    /* Make responsive */
    max-width: 300px;
    /* Limit max size */
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    /* Changed from circle to rounded rect for 'slide' feel? Or keep circle? keeping circle as per previous request unless specified */
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-left: auto;
    margin-right: auto;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.habit-slide:hover .step-image {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.4);
}

.step-number {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-card);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.habit-slide h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 300px;
    margin: 0 auto;
}

.habit-alert {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    /* margin: 0 auto; Removed to allow align-left override */
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fca5a5;
    animation: alert-pulse 3s infinite;
}

.habit-alert i {
    font-size: 1.5rem;
}

.habit-alert strong {
    color: #ef4444;
    text-transform: uppercase;
}

@keyframes alert-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Slider Controls */
.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsiveness */
@media (max-width: 992px) {
    .ag-split-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .section-header.align-left,
    .habit-alert.align-left {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}