/* ===== VARIÁVEIS & RESET ===== */
:root {
    --bg-dark: #030610;
    --bg-panel: rgba(12, 18, 34, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* ===== BACKGROUNDS (Grid & Glow) ===== */
.bg-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    filter: blur(120px);
    z-index: -2;
    opacity: 0.6;
    pointer-events: none;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

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

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

.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 99, 235, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-nav-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.w-full {
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent !important;
    pointer-events: none;
    transition: all 0.3s ease;
}

.navbar.menu-open {
    pointer-events: auto;
}

.nav-container {
    pointer-events: auto;
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 0.75rem; /* Logo ainda mais para a esquerda */
    }
}

.logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-pill-wrapper {
    display: flex;
    justify-content: center;
    flex: none;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(10, 15, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.4rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-nav-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(96, 165, 250, 0.4);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 10px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-nav-primary:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 4px 15px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    padding: 0;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(3, 6, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto; /* Garantir que os links sejam clicáveis */
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.mobile-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--primary-light);
}

@media (max-width: 900px) {
    .nav-pill-wrapper {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 60px;
    position: relative;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
    }
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1.2;
    text-align: left;
    max-width: 750px;
    margin-left: -4rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    word-spacing: -0.05em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 0 2rem 0;
    line-height: 1.5;
    text-align: left;
}

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

.cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    opacity: 0.7;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
    perspective: 2000px;
}

@media (max-width: 992px) {
    .hero-grid {
        flex-direction: column;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
        margin-left: 0;
    }
    
    .hero-subtitle {
        margin: 0 0 2.5rem 0;
    }
    
    .hero-cta {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .cta-note {
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 4rem;
    }
}

/* ===== CHAT MOCKUP ===== */
.chat-mockup {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 !important;
    text-align: left;
    background: #0f1322 !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(37, 99, 235, 0.1);
    position: relative;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    height: 500px;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 0.8rem;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
}

.chat-info .chat-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    overflow-y: auto;
}

.chat-message {
    max-width: 85%;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #fff;
}

.message-right {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px 16px 4px 16px;
    align-self: flex-end;
}

.message-left {
    background: var(--primary);
    border-radius: 16px 16px 16px 4px;
    align-self: flex-start;
}

.floating-badge {
    position: absolute;
    background: rgba(30, 35, 55, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    z-index: 10;
}

.floating-badge.badge-1 {
    top: 8%;
    right: calc(100% - 1.5rem);
}

.floating-badge.badge-2 {
    top: 25%;
    left: calc(100% - 1.5rem);
}

.floating-badge.badge-3 {
    bottom: 35%;
    right: calc(100% - 1.5rem);
}

.floating-badge.badge-4 {
    bottom: 15%;
    left: calc(100% - 1.5rem);
}

@media (max-width: 768px) {
    .floating-badge { 
        transform: scale(0.75); 
        max-width: 80vw;
        white-space: normal;
        text-align: center;
    }
    .floating-badge.badge-1 { right: auto; left: 0; top: -5%; }
    .floating-badge.badge-2 { left: auto; right: 0; top: 15%; }
    .floating-badge.badge-3 { right: auto; left: 0; bottom: 35%; }
    .floating-badge.badge-4 { left: auto; right: 0; bottom: 5%; }
}

/* ===== PARTNERS MARQUEE ===== */
.partners-section {
    margin-top: 4rem;
    width: 100%;
    overflow: hidden;
    padding-bottom: 1rem;
}

.partners-title {
    font-size: 0.8rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.7;
    text-align: center;
}

.logos-marquee {
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    gap: 8rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.logo-item img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.2;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-item.logo-large img {
    height: 110px;
}

.logo-item.logo-python img {
    height: 50px;
}

.logo-item.logo-obsidian img {
    height: 85px;
}

.logo-item:hover img {
    opacity: 0.6;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

/* ===== DORES SECTION ===== */
.dores-section {
    padding: 4rem 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
}

.dores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .dores-grid {
        grid-template-columns: 1fr;
    }
}

.dor-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 2.5rem;
    height: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(12, 18, 34, 0.8) 0%, rgba(5, 8, 20, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.dor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(96, 165, 250, 0.1), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.dor-card:hover::before {
    left: 200%;
}

.dor-card:hover {
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(37, 99, 235, 0.2);
}

.dor-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(29, 78, 216, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    box-shadow: inset 0 0 20px rgba(96, 165, 250, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.dor-card:hover .dor-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(96, 165, 250, 0.6);
}

.dor-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.dor-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== SECTIONS GENERIC ===== */
section {
    padding: 8rem 0;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
}

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

/* ===== FUNCIONALIDADES (SHOWCASE) ===== */
.funcionalidades {
    padding: 8rem 0 8rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.feature-item.alternate {
    flex-direction: row-reverse;
}

.feature-item.feature-centered {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
}

.feature-item.feature-centered .feature-content {
    max-width: 800px;
}

.feature-item.feature-centered .feature-desc {
    margin-left: auto;
    margin-right: auto;
}

.feature-content {
    flex: 1.5;
}

.feature-cta {
    margin-top: 2.5rem;
}

/* Feature 1 Specific Styles */
.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    margin-bottom: 1.5rem;
}

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

.feature-checklist {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    font-size: 1.05rem;
}

.check-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

/* Workflow Mockup */
.workflow-mockup {
    width: 100%;
    max-width: 450px;
    background: rgba(12, 18, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    padding-left: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.workflow-mockup::before {
    content: '';
    position: absolute;
    top: 4.2rem;
    bottom: 4.2rem;
    left: 2rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.workflow-step {
    display: flex;
    align-items: center;
    background: #0f1322;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.2rem;
    gap: 1rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1.5rem;
    width: 1.5rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    z-index: -1;
}

.workflow-step:hover {
    transform: translateX(10px);
    border-color: rgba(37, 99, 235, 0.3);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-bot { 
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.25), rgba(30, 20, 50, 0.8)); 
    box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.1);
    color: #c084fc; 
}
.step-calendar { 
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.25), rgba(10, 40, 25, 0.8)); 
    box-shadow: inset 0 0 10px rgba(34, 197, 94, 0.1);
    color: #4ade80; 
}
.step-chat { 
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.25), rgba(15, 30, 60, 0.8)); 
    box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.1);
    color: #60a5fa; 
}

.step-text h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.step-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.green-glow-bg {
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center,
        rgba(37, 211, 102, 0.45) 0%,
        rgba(37, 211, 102, 0.25) 40%,
        transparent 75%);
    filter: blur(50px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
}
.feature-visual {
    flex: 1.5;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Linhas técnicas decorativas (cantos) */
.feature-visual::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--primary-light);
    border-left: 2px solid var(--primary-light);
    opacity: 0.5;
    animation: framePulse 6s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-visual .tech-frame-corner {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--primary-light);
    border-right: 2px solid var(--primary-light);
    opacity: 0.5;
    animation: framePulse 6s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-centered .feature-visual {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
}

.horizontal-line-glow {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 1px;
    margin: 8rem auto;
    background: #fff;
    box-shadow: 0 0 20px var(--primary-light), 0 0 40px rgba(37, 99, 235, 0.3);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    opacity: 0.8;
    z-index: 5;
}

/* ===== PHONE GLOW EFFECTS ===== */
.phone-glow-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
}

.phone-glow-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center,
        rgba(37, 99, 235, 0.35) 0%,
        rgba(59, 130, 246, 0.15) 40%,
        transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

.phone-img-glow {
    position: relative;
    z-index: 2;
    width: 480px !important;
    min-width: 480px;
    max-width: none;
    filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.5)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.2));
}

.icons-img-glow {
    position: relative;
    z-index: 2;
    width: 650px !important;
    min-width: 650px;
    max-width: none;
    filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.5));
}

/* Anéis concêntricos */
.phone-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.25);
    z-index: 1;
    pointer-events: none;
}

.phone-ring-1 {
    width: 440px;
    height: 440px;
    animation: ringPulse 4s ease-in-out infinite;
}

.phone-ring-2 {
    width: 600px;
    height: 600px;
    border-color: rgba(59, 130, 246, 0.15);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

.phone-ring-3 {
    width: 760px;
    height: 760px;
    border-color: rgba(59, 130, 246, 0.08);
    animation: ringPulse 4s ease-in-out infinite 2s;
}

/* Partículas flutuantes */
.phone-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-light);
    z-index: 1;
    pointer-events: none;
}

.phone-particle.p1 {
    width: 6px; height: 6px;
    top: 15%; left: 10%;
    opacity: 0.7;
    animation: floatParticle 5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--primary-light);
}

.phone-particle.p2 {
    width: 4px; height: 4px;
    top: 75%; left: 8%;
    opacity: 0.5;
    animation: floatParticle 7s ease-in-out infinite 1.5s;
    box-shadow: 0 0 6px var(--primary-light);
}

.phone-particle.p3 {
    width: 5px; height: 5px;
    top: 20%; right: 8%;
    opacity: 0.6;
    animation: floatParticle 6s ease-in-out infinite 0.8s;
    box-shadow: 0 0 8px rgba(99, 179, 237, 0.8);
    background: rgba(99, 179, 237, 0.9);
}

.phone-particle.p4 {
    width: 3px; height: 3px;
    top: 80%; right: 12%;
    opacity: 0.5;
    animation: floatParticle 8s ease-in-out infinite 2s;
    box-shadow: 0 0 6px var(--primary-light);
}

.phone-particle.p5 {
    width: 5px; height: 5px;
    top: 50%; left: 5%;
    opacity: 0.4;
    animation: floatParticle 9s ease-in-out infinite 3s;
    box-shadow: 0 0 10px rgba(147, 197, 253, 0.8);
    background: rgba(147, 197, 253, 0.8);
}

.icons-img-glow {
    position: relative;
    z-index: 2;
    width: 360px;
    filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.4)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.15));
}

.glow-large .phone-ring-1 { width: 500px; height: 500px; }
.glow-large .phone-ring-2 { width: 650px; height: 650px; }
.glow-large .phone-ring-3 { width: 800px; height: 800px; }

@keyframes glowPulse {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.05); }
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.03); }
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
    33% { transform: translateY(-15px) translateX(8px); opacity: 1; }
    66% { transform: translateY(8px) translateX(-5px); opacity: 0.3; }
}

@keyframes barColorPulse {
    0% { 
        opacity: 0.5;
        box-shadow: 0 0 15px var(--primary-light);
        transform: scaleX(0.98);
    }
    100% { 
        opacity: 0.9;
        box-shadow: 0 0 30px #fff, 0 0 50px var(--primary-light);
        transform: scaleX(1);
    }
}

.feature-centered .feature-visual::after {
    display: none;
}

@keyframes framePulse {
    0% { transform: translate(-8px, -8px) scale(0.95); opacity: 0.2; }
    50% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(8px, 8px) scale(1.05); opacity: 0.8; }
}

.feature-visual.no-frame::before {
    display: none;
}

.feature-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.feature-visual.visual-small {
    flex: 0.7;
}

.feature-visual.visual-small img {
    width: 90%;
}

.feature-visual.visual-small::after {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
    width: 140%;
    height: 140%;
}

@keyframes floatFeature {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.feature-visual:hover img {
    transform: scale(1.05);
}

/* Efeito de luz atrás das imagens */
.feature-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.feature-title {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.feature-title span {
    color: #fff;
    display: block;
}

.feature-centered .feature-title {
    font-size: clamp(1.8rem, 4.2vw, 3rem);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    background: linear-gradient(90deg, #fff 0%, var(--primary-light) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textSweep 4s linear infinite;
}

.feature-centered .feature-title span {
    display: inline;
}

@keyframes textSweep {
    to { background-position: 200% center; }
}

.feature-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
}

.feature-centered .feature-desc {
    font-size: 1.5rem;
    max-width: 900px;
}

@media (max-width: 992px) {

    .feature-item,
    .feature-item.alternate {
        flex-direction: column;
        text-align: left;
        gap: 3rem;
        margin-bottom: 8rem;
    }

    .feature-desc {
        margin: 0;
    }

    .title-with-icon {
        justify-content: flex-start !important;
    }

    .feature-centered, .feature-centered .feature-content, .hero-content {
        text-align: center !important;
    }

    .feature-centered .feature-desc, .hero-subtitle {
        margin: 0 auto !important;
    }

    .feature-centered .feature-cta, .hero-cta {
        align-items: center !important;
    }

    .feature-title, .hero-title {
        text-align: center !important;
    }

    .feature-checklist li {
        font-size: 0.8rem !important;
        white-space: nowrap;
        gap: 0.5rem !important;
    }

    .check-circle {
        width: 18px !important;
        height: 18px !important;
    }
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-light);
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.timeline-content {
    flex-grow: 1;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== AGENDAR SECTION (NOVA) ===== */
.agendar-section {
    padding: 8rem 0 2rem 0;
    width: 100%;
}

.agendar-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

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

.badge-mini {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.agendar-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.agendar-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 480px;
}

.agendar-card-wrapper {
    position: relative;
}

.agendar-card {
    padding: 3rem !important;
    background: rgba(8, 12, 24, 0.9) !important;
    border: 1px solid rgba(37, 99, 235, 0.2) !important;
    border-radius: 40px !important;
    /* Arredondamento maior como na imagem */
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 99, 235, 0.1);
    animation: cardGlow 6s infinite alternate ease-in-out;
}

@keyframes cardGlow {
    0% {
        border-color: rgba(37, 99, 235, 0.2);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 20px rgba(37, 99, 235, 0.05);
    }

    100% {
        border-color: rgba(37, 99, 235, 0.5);
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(37, 99, 235, 0.2);
    }
}

.light-streak {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
    animation: streakMove 8s infinite alternate ease-in-out;
}

@keyframes streakMove {
    0% {
        transform: translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: translate(-20px, 20px);
        opacity: 0.8;
    }
}

.agendar-card form {
    position: relative;
    z-index: 2;
}

.agendar-card .input-group {
    margin-bottom: 1.2rem;
}

.agendar-card input,
.agendar-card select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 100px !important;
    padding: 1.1rem 1.5rem !important;
    color: var(--text-main) !important;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.agendar-card input:focus,
.agendar-card select:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(37, 99, 235, 0.5) !important;
    outline: none;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
}

.agendar-card select option {
    color: #000 !important;
    background: #fff !important;
}

.agendar-card .btn-primary {
    border-radius: 100px !important;
    padding: 1.2rem 2rem !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    border: 1px solid rgba(96, 165, 250, 0.6) !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.agendar-card .btn-primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.3) !important;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

/* ===== MANIFESTO SECTION ===== */
.manifesto-section {
    position: relative;
    padding: 4rem 0 4rem 0;
    overflow: hidden;
    text-align: center;
    background: transparent !important;
}

.manifesto-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.manifesto-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.manifesto-circle-1,
.manifesto-circle-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.manifesto-circle-1 {
    width: 400px;
    height: 400px;
    animation: pulseCircle 8s infinite alternate ease-in-out;
}

.manifesto-circle-2 {
    width: 800px;
    height: 800px;
    opacity: 0.5;
    animation: pulseCircle 12s infinite alternate-reverse ease-in-out;
}

@keyframes pulseCircle {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.3;
    }
}

/* Os arcos laterais de luz como na imagem */
.manifesto-section::before,
.manifesto-section::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.4);
    filter: blur(30px);
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.manifesto-section::before {
    left: -350px;
    mask-image: linear-gradient(to right, black, transparent);
}

.manifesto-section::after {
    right: -350px;
    mask-image: linear-gradient(to left, black, transparent);
}

.manifesto-content {
    position: relative;
    z-index: 3;
    max-width: 1100px !important;
}

.badge-manifesto {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 3rem;
    text-transform: none;
}

.manifesto-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-light);
    /* Texto agora em azul */
    opacity: 0.8;
}

.manifesto-title span {
    color: #fff;
    display: block;
}

#typing-text {
    position: relative;
    border-right: 3px solid var(--primary-light);
    padding-right: 5px;
    animation: blink 0.7s infinite;
    min-height: 1.2em;
    display: inline-block;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--primary-light); }
}

@media (max-width: 768px) {
    #typing-text {
        border-right: none !important;
        animation: none !important;
        padding-right: 0 !important;
    }
}
.agente-ia-section {
    padding: 4rem 0 8rem 0;
}

.agente-header {
    margin-bottom: 4rem;
    text-align: center;
}

.terminal-title {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(1.1rem, 2.8vw, 1.9rem) !important;
    background: linear-gradient(to right, #ffffff 30%, #3b82f6 50%, #ffffff 70%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    text-align: center;
    animation: blueSweep 3s infinite linear !important;
    white-space: nowrap;
    opacity: 1 !important;
}

/* Apenas o título da seção de automações */
.agente-header .terminal-title {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    white-space: normal !important;
    line-height: 1.2;
}

@keyframes blueSweep {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.agente-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.agente-card {
    background: #080c14;
    border: 1px solid var(--primary-light);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.05);
}

.agente-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #60a5fa;
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 99, 235, 0.2);
}

.agente-card.highlight {
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.15);
}

.agente-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 12px var(--primary-light);
    flex-shrink: 0;
    animation: dotPulse 2s infinite ease-in-out;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 12px var(--primary-light); }
    50% { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 20px var(--primary-light); }
}

.agente-card.highlight .dot {
    background: var(--primary-light);
    box-shadow: 0 0 12px var(--primary-light);
}

.agente-card:not(.highlight) .dot {
    background: var(--primary-light);
}

@media (max-width: 768px) {
    .agente-grid {
        grid-template-columns: 1fr;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700 !important;
}

.manifesto-text {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-text strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .manifesto-section {
        padding: 8rem 1rem;
    }
}

/* Responsividade do grid */
@media (max-width: 992px) {
    .agendar-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

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

    .agendar-desc {
        margin: 0 auto;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 3rem 0 0 0;
    margin-top: 8rem;
    background: var(--bg-dark) !important; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.site-footer .footer-brand {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-footer .footer-brand img {
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .site-footer .footer-brand {
        justify-content: center;
        margin-bottom: 1rem;
    }
}

.site-footer .footer-links {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 5rem;
}

.site-footer .link-group h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.site-footer .link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.site-footer .link-group a:hover {
    color: var(--primary-light);
}

@media (max-width: 992px) {
    .site-footer .footer-links {
        justify-content: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .site-footer .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .site-footer .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        width: 100%;
    }

    .site-footer .link-group {
        width: 100%;
    }

    .site-footer .link-group h4 {
        margin-bottom: 1rem;
    }

    .site-footer .link-group a {
        margin-bottom: 1rem;
        word-break: break-all; /* Para links longos de WhatsApp */
    }
}

.footer-social-cta {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--primary-light);
}

.btn-contato-pink {
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-contato-pink:hover {
    background: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.site-footer .footer-bottom {
    background: rgba(0, 0, 0, 0.2); 
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cases-showcase,
    .cta-box {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .nav-pill-wrapper {
        display: none;
    }
    
    /* Garantir que nada vaze horizontalmente, exceto o track da marquee */
    *:not(.logos-track) {
        max-width: 100vw;
    }

    /* Redução Global de Fontes */
    body {
        font-size: 14px; /* Base menor */
    }

    h1, .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    h2, .section-title, .manifesto-title {
        font-size: 1.6rem !important;
        text-align: center !important;
    }

    h3, .feature-title, .dor-card h3 {
        font-size: 1.3rem !important;
        text-align: center !important;
    }

    .hero-subtitle, .section-desc, .manifesto-text, .feature-desc {
        font-size: 0.95rem !important;
        line-height: 1.6;
        text-align: center; /* Alinhado ao meio conforme solicitado */
        margin-bottom: 2.5rem !important; /* Espaço extra para o botão respirar */
    }

    .process-step p, .case-text, .ganhos-grid .card p, .ganhos-texto p {
        font-size: 0.85rem !important;
        text-align: left;
    }

    .nav-link, .btn-primary {
        font-size: 0.9rem !important;
    }

    .badge, .badge-mini, .badge-manifesto {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.8rem !important;
    }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), var(--primary-light), rgba(255, 255, 255, 0.1), transparent);
    position: relative;
    margin: 1.5rem 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 40px;
    background: var(--primary-light);
    filter: blur(40px);
    opacity: 0.15;
    pointer-events: none;
}

/* ===== CASES SECTION (O resultado?) ===== */
.cases-section {
    padding: 6rem 0 4rem 0;
}

.cases-header {
    text-align: center;
    margin-bottom: 5rem;
}

.cases-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cases-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cases-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Card individual --- */
.case-card {
    position: relative;
    padding: 2.5rem 2rem !important;
    background: rgba(8, 12, 24, 0.85) !important;
    border: 1px solid rgba(37, 99, 235, 0.15) !important;
    border-radius: 28px !important;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.case-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.4) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.15);
}

.case-card:hover::before {
    opacity: 1;
}

/* Número do case */
.case-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(96, 165, 250, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.04em;
}

.case-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.case-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.case-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-muted);
    flex: 1;
}

/* --- Player de áudio --- */
.case-audio-wrapper {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.audio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.audio-label svg {
    opacity: 0.8;
}

/* Estilizando o player nativo */
.case-audio-wrapper audio {
    width: 100%;
    height: 40px;
    border-radius: 100px;
    outline: none;
    filter: invert(1) hue-rotate(180deg) brightness(0.85) contrast(1.1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.case-audio-wrapper audio:hover {
    opacity: 1;
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .cases-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        gap: 1.5rem;
    }

    .cases-header {
        margin-bottom: 3rem;
    }
}

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

    .case-card {
        padding: 2rem 1.5rem !important;
    }
}

/* ===== GANHOS SECTION ===== */
.ganhos-section {
    padding: 6rem 0;
}

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

/* From Uiverse.io by bhaveshxrawat */ 
.ganhos-grid .card {
  width: 320px;
  max-width: 100%;
  height: 200px;
  background: #07182E;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 480px) {
    .ganhos-grid .card {
        height: 180px;
    }
    .ganhos-grid .card h2 {
        font-size: 1.15rem;
    }
    .ganhos-grid .card p {
        font-size: 0.85rem;
    }
}

.ganhos-grid .card-content {
  z-index: 1;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

.ganhos-grid .card h2 {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  margin-bottom: 0.8rem;
  color: #fff;
}

.ganhos-grid .card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.ganhos-grid .card::before {
  content: '';
  position: absolute;
  width: 150px;
  background-image: linear-gradient(180deg, transparent, var(--primary-light), var(--primary), transparent);
  height: 200%;
  animation: rotBGimg 6s linear infinite;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ganhos-grid .card::after {
  content: '';
  position: absolute;
  background: #050814;
  inset: 3px;
  border-radius: 17px;
}

/* ===== PROCESSO SECTION (Timeline) ===== */
.processo-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    margin-top: 4rem;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: #0B0F19;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1), inset 0 0 10px rgba(59, 130, 246, 0.1);
    position: relative;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .process-line {
        top: 0;
        left: 30px;
        width: 1px;
        height: 100%;
    }
    .process-step {
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .process-step .step-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .process-step h3 {
        margin-bottom: 0;
    }
    .process-step .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}