/* =========================================
   1. CORE & DESIGN SYSTEM (MASTER) - GETMOVA REBRAND
   ========================================= */
:root {
    /* Layered Black Palette - Visual Depth */
    --bg-deepest: #000000;
    --bg-deep: #000000;
    --bg-surface: #050505;
    --bg-elevated: #0a0a0a;
    --bg-highlight: #0f0f0f;

    /* Vibrant Orange - Primary (High Performance) */
    --primary: #FF4500;
    --primary-dim: #cc3700;
    --primary-glow: rgba(255, 69, 0, 0.2);
    --primary-gradient: linear-gradient(135deg, #FF4500 0%, #E03E00 100%);

    /* Typography */
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-tertiary: #9ca3af;
    /* Improved from #808080 for WCAG AAA */
    --placeholder-color: #6b7280;
    /* New: Better placeholder contrast */

    /* Layout & Spacing */
    --container-width: 1240px;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Borders em camadas */
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-tech: 1px solid rgba(255, 255, 255, 0.08);
    --border-strong: 1px solid rgba(255, 255, 255, 0.15);
    --border-active: 1px solid rgba(255, 69, 0, 0.5);
    --ease-tech: cubic-bezier(0.22, 1, 0.36, 1);

    /* Efeitos Visuais - Glows */
    --glow-primary: 0 0 20px rgba(255, 69, 0, 0.2);
    --glow-strong: 0 0 40px rgba(255, 69, 0, 0.4);
}

/* Reset & Base */
html,
body {
    width: 100%;
    overflow-x: hidden !important;
    position: relative;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-deepest);
    color: var(--text-secondary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Clean slate for layers */
}

/* =========================================
   BACKGROUND SYSTEM (NEW)
   ========================================= */

/* 1. Global Noise Overlay (Cinematic Feel) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Noise SVG Data URI */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

/* 2. Tech Grid Utility */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background-size: 50px 50px;
    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);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* 3. Ambient Glow Utility (Orbs) */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: floatGlow 10s infinite alternate ease-in-out;
}

.bg-glow-primary {
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.bg-glow-secondary {
    background: #4169E1;
    /* Royal Blue for deeply tech contrast */
    bottom: -100px;
    left: -100px;
    opacity: 0.08;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Texture Noise */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* 4. Cursor Spotlight (New) */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    /* Just below noise */
    background: radial-gradient(600px circle at var(--cursor-x, 50%) var(--cursor-y, 50%),
            rgba(255, 69, 0, 0.06),
            transparent 40%);
    mix-blend-mode: screen;
}

/* 5. Parallax Utilities (New) */
.parallax-slow {
    transform: translateY(calc(var(--scroll) * 0.1px));
    will-change: transform;
}

.parallax-medium {
    transform: translateY(calc(var(--scroll) * 0.2px));
    will-change: transform;
}

.parallax-fast {
    transform: translateY(calc(var(--scroll) * 0.3px));
    will-change: transform;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: #333;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

h1 {
    font-family: var(--font-sans);
    letter-spacing: -0.05em;
    font-weight: 800;
}

h2 {
    font-family: var(--font-serif);
    font-weight: 600;
}

h3 {
    font-family: var(--font-serif);
    font-weight: 600;
}

h4 {
    font-family: var(--font-sans);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #808080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--primary);
}

/* =========================================
   2. UI COMPONENTS & MOTION
   ========================================= */
.magnetic-wrap {
    display: inline-block;
    position: relative;
    z-index: 5;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-sans);
    transition: all 0.3s var(--ease-tech);
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.2);
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-primary.loading {
    background: #222;
    pointer-events: none;
    color: transparent;
}

.btn-primary.loading::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    left: 50%;
    top: 50%;
    margin: -9px 0 0 -9px;
}

.btn-primary.success {
    background: #10b981;
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    /* Thicker orange border */
    color: var(--primary);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #333;
    color: var(--text-secondary);
    border-radius: 8px;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 69, 0, 0.05);
}

.badge {
    background: rgba(255, 69, 0, 0.15);
    /* Increased from 0.08 */
    border: 2px solid rgba(255, 69, 0, 0.4);
    /* Thicker border from 1px */
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.1);
    /* Added glow */
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

}

to {
    opacity: 1;
}
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.reveal {
    /* Content visible by default */
}

.reveal.active {
    animation: fadeInUp 0.8s var(--ease-tech) forwards;
}

/* FIX DE TEXTO QUEBRADO (ATUALIZADO) */
.reveal-word {
    display: inline-block;
    white-space: nowrap;
    /* Garante que a palavra não quebre no meio */
    margin-right: 0.25em;
    /* Espaço entre as palavras */
    vertical-align: top;
}

.split-text-char {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s var(--ease-tech), opacity 0.8s;
}

.reveal-text.active .split-text-char {
    transform: translateY(0);
    opacity: 1;
}

.parallax-el {
    transition: transform 0.1s linear;
    will-change: transform;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Animated gradient for hero - MESH GRADIENT */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 69, 0, 0.08) 0%, transparent 50%);
    animation: mesh-movement 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

@keyframes mesh-movement {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-5%, 5%) rotate(2deg);
    }

    66% {
        transform: translate(5%, -5%) rotate(-2deg);
    }
}

/* =========================================
   3. HEADER & NAV
   ========================================= */
.main-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 a {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.05em;
    font-family: var(--font-sans);
}

.logo span {
    color: var(--primary);
}

.nav-menu ul {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    /* Orange for active state */
    font-weight: 700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s var(--ease-tech);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    height: 3px;
    /* Thicker active underline */
}

.mobile-toggle {
    display: none;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 400px;
        height: 100vh;
        background: #000;
        padding: 6rem 2rem;
        transition: 0.6s var(--ease-tech);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 1.5rem;
        display: block;
        color: #fff;
    }

    .cta-header {
        display: none;
    }
}

/* =========================================
   4. LAYOUT & SECTIONS
   ========================================= */
section {
    padding: 6rem 0;
    position: relative;
}

}

@media(min-width: 768px) {
    section {
        padding: 8rem 0;
    }
}

.hero {
    padding: 10rem 0 8rem;
    text-align: center;
}

.stat-value {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
    text-align: center;
}

.hero h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
    line-height: 1.05;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.section-title p {
    color: var(--text-tertiary);
    max-width: 500px;
    margin: 0 auto;
}

/* Grid Cards (Tech Style) */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Mobile Responsive - Grid Cards */
@media (max-width: 768px) {
    .grid-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.card-pain {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
    border: var(--border-tech);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-tech);
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Mobile - Smaller Padding */
@media (max-width: 768px) {
    .card-pain {
        padding: 2rem 1.5rem;
    }
}

.card-pain:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 69, 0, 0.4);
    background: linear-gradient(135deg, var(--bg-highlight) 0%, var(--bg-elevated) 100%);
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 69, 0, 0.3),
        0 0 20px rgba(255, 69, 0, 0.2),
        0 8px 24px rgba(255, 69, 0, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
}

.card-pain::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.03), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-pain:hover::after {
    opacity: 1;
}

.card-pain h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.card-pain p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* Icon Circular Backgrounds - Visual Context */
.card-pain i[class*="ph"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.25);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s var(--ease-tech);
}

.card-pain:hover i[class*="ph"] {
    background: rgba(255, 69, 0, 0.15);
    border-color: rgba(255, 69, 0, 0.4);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

/* Tech Grid Cards */
.tech-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.tech-card {
    background: var(--bg-surface);
    border: var(--border-tech);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--ease-tech);
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem !important;
    flex: 1;
    min-width: 0;
    max-width: 200px;
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 69, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.15);
}

.tech-card h4 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.tech-card i {
    margin: 0 !important;
    padding: 0 !important;
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
}

.tech-card i {
    font-size: 2rem;
    color: var(--primary);
    display: block;
}

/* Mobile Responsive - Tech Cards */
@media (max-width: 768px) {
    .tech-grid {
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .tech-card {
        height: 130px;
        padding: 1.25rem 1rem;
        min-width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        flex: 0 0 calc(50% - 0.5rem);
    }

    .tech-card i {
        font-size: 2rem !important;
    }

    .tech-card h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tech-card {
        height: 110px;
        padding: 1rem 0.75rem;
    }

    .tech-card i {
        font-size: 1.75rem !important;
    }

    .tech-card h4 {
        font-size: 0.8rem;
    }
}

transition: 0.3s;
}

.tech-card:hover i {
    color: var(--primary);
}

/* Case Cards */
.case-card {
    background: var(--bg-surface);
    border: var(--border-tech);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    transition: 0.4s;
}

.case-card:hover {
    border-color: var(--primary);
}

@media(min-width: 768px) {
    .case-card {
        grid-template-columns: 300px 1fr;
    }

    .case-img {
        height: auto !important;
    }
}

.case-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.case-content {
    padding: 3rem;
}

.case-stat {
    display: inline-block;
    background: var(--bg-deep);
    border: 1px solid #333;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* =========================================
   5. PRICING GRID
   ========================================= */
.grid-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1240px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .grid-pricing {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .grid-pricing .plan-card:last-child {
        grid-column: 1;
    }

    .grid-pricing .plan-card:last-child .plan-body {
        flex-direction: column;
        gap: 1.5rem;
    }

    .grid-pricing .plan-card:last-child .features {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 1200px) {
    .grid-pricing .plan-card:last-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 2.5rem;
        gap: 3rem;
    }

    .grid-pricing .plan-card:last-child .plan-header {
        min-width: 300px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 2rem;
        margin-bottom: 0;
    }

    .grid-pricing .plan-card:last-child .plan-body {
        display: flex;
        flex: 1;
        justify-content: space-between;
        align-items: center;
    }
}

.plan-card {
    background: var(--bg-surface);
    border: var(--border-tech);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    transition: 0.4s var(--ease-tech);
    /* Removed min-height - let content dictate */
}

/* Removed: Causes empty space in cards with less content
.plan-card>*:last-child {
    margin-top: auto;
}
*/

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-card.featured {
    background: #080808;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05) 0%, var(--bg-surface) 100%);
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.05);
}

.plan-card.featured::before {
    content: "Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Mobile Responsive - Plan Cards */
@media (max-width: 768px) {
    .grid-pricing {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .plan-card {
        padding: 1.5rem 1.25rem;
    }

    .plan-header h3 {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2rem;
    }
}

.plan-header {
    margin-bottom: 1.2rem;
    /* Reduced from 1.5rem */
}

.plan-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-header .subtitle {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--text-primary);
    margin: 1rem 0 1.2rem;
    /* Reduced margins */
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    /* Reduced from 0.8rem */
    margin-bottom: 0.6rem;
    /* Reduced from 0.8rem */
    color: var(--text-secondary);
    font-size: 0.9rem;
    /* Slightly smaller */
}

.features li i {
    color: var(--primary);
    font-size: 1rem;
    /* Reduced from 1.2rem */
    flex-shrink: 0;
}

.features li strong {
    color: var(--text-primary);
}

/* =========================================
   6. FORMS & INPUTS
   ========================================= */
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #080808;
    border: 1px solid #222;
    border-radius: 6px;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-tech);
}

/* Better placeholder contrast */
.lead-form input::placeholder,
.lead-form textarea::placeholder,
.lead-form select::placeholder {
    color: var(--placeholder-color);
    opacity: 0.8;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
    /* Glow effect */
    outline: none;
    background: #000;
}

/* Error and Success States */
.lead-form input.error,
.lead-form textarea.error {
    border-color: #ef4444;
}

.lead-form input.success,
.lead-form textarea.success {
    border-color: #10b981;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media(min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    /* Orange instead of white */
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-tech);
    border: none;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-submit:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
}

/* Multi-step Wizard */
.step-form-container {
    background: var(--bg-surface);
    border: var(--border-tech);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

@media(min-width: 768px) {
    .step-form-container {
        padding: 4rem;
    }
}

.form-step {
    display: none;
    animation: fadeIn 0.6s ease;
}

.form-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: #222;
    border-radius: 50%;
    transition: 0.3s;
}

.step-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

.radio-option {
    position: relative;
}

.radio-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #080808;
    border: 1px solid #222;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    height: 100%;
    font-size: 0.9rem;
}

.radio-option input:checked+label {
    background: #000;
    border-color: var(--primary);
    color: var(--primary);
}

/* =========================================
   7. CHARTS & EXTRA
   ========================================= */
.chart-container {
    background: var(--bg-surface);
    border: var(--border-tech);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    height: 200px;
    gap: 1rem;
    padding-top: 2rem;
}

.bar {
    flex: 1;
    background: #222;
    border-radius: 2px 2px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bar.fill {
    background: var(--primary);
}

.bar span {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

/* =========================================
   8. FOOTER & ROADMAP
   ========================================= */
footer {
    background: #000;
    padding: 6rem 0 2rem;
    border-top: 1px solid #111;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.footer-col a {
    color: #777;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Stats Big */
.stats-grid-big {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.big-stat h3 {
    text-align: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.2rem;
    font-family: var(--font-serif);
}

.big-stat span {
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Roadmap - Tech Line */
.roadmap-section {
    background: var(--bg-deep);
}

.roadmap-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media(min-width: 768px) {
    .roadmap-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.roadmap-step {
    background: var(--bg-surface);
    border: var(--border-tech);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: 0.3s;
    position: relative;
}

.roadmap-step:hover {
    border-color: rgba(255, 69, 0, 0.3);
}

.step-badge {
    background: #000;
    border: 1px solid #333;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Contact Info & Leader Card */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media(min-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

.contact-info-card {
    background: var(--bg-surface);
    border: var(--border-tech);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: 0.3s;
}

.contact-info-card:hover {
    border-color: var(--primary);
}

.icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.leader-card {
    background: #0a0a0a;
    border: var(--border-tech);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media(min-width: 768px) {
    .leader-card {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
    }
}

.leader-img {
    width: 120px;
    height: 120px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    flex-shrink: 0;
}

/* FAQ Details */
details {
    background: var(--bg-surface);
    border: var(--border-tech);
    color: #d4d4d8;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

details[open] {
    border-color: var(--primary);
    background: #0a0a0a;
}

summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    position: relative;
    font-size: 0.95rem;
}

summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 300;
}

details[open] summary::after {
    content: '-';
}

details p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* =========================================
   9. NEW SECTIONS - RESPONSIVE FIXES
   ========================================= */

/* Practical Workflow - Force 2x2 on desktop + Visual Flow */
.practical-workflow .grid-cards {
    grid-template-columns: 1fr;
    /* Mobile: stack */
    max-width: 900px;
    /* Limit grid width to force better layout */
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Visual Flow - Vertical Line (Mobile) */
@media(max-width: 767px) {
    .practical-workflow .grid-cards::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 60px;
        bottom: 60px;
        width: 2px;
        background: linear-gradient(180deg,
                var(--primary) 0%,
                rgba(255, 69, 0, 0.2) 50%,
                var(--primary) 100%);
        z-index: 0;
    }
}

@media(min-width: 768px) {
    .practical-workflow .grid-cards {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet+: 2x2 grid */
        max-width: 1000px;
        gap: 2rem;
    }

    /* Connecting Lines for 2x2 Grid */
    .practical-workflow .card-pain {
        position: relative;
    }

    /* Card 1 → Card 2 (horizontal right) */
    .practical-workflow .card-pain:nth-child(1)::after {
        content: '';
        position: absolute;
        right: -1rem;
        top: 50%;
        width: 2rem;
        height: 2px;
        background: rgba(255, 69, 0, 0.3);
        z-index: 0;
    }

    /* Card 1 → Card 3 (vertical down) */
    .practical-workflow .card-pain:nth-child(1)::before {
        content: '';
        position: absolute;
        left: 50%;
        \n bottom: -1rem;
        width: 2px;
        height: 2rem;
        background: rgba(255, 69, 0, 0.3);
        z-index: 0;
    }

    /* Card 2 → Card 4 (vertical down) */
    .practical-workflow .card-pain:nth-child(2)::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -1rem;
        width: 2px;
        height: 2rem;
        background: rgba(255, 69, 0, 0.3);
        z-index: 0;
    }

    /* Card 3 → Card 4 (horizontal right) */
    .practical-workflow .card-pain:nth-child(3)::after {
        content: '';
        position: absolute;
        right: -1rem;
        top: 50%;
        width: 2rem;
        height: 2px;
        background: rgba(255, 69, 0, 0.3);
        z-index: 0;
    }
}

/* Enhanced Number Badges */
.practical-workflow .card-pain h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    font-weight: 800;
    margin-right: 1rem;
    font-family: var(--font-sans);
    position: relative;
    z-index: 1;
}

/* Capabilities Section - Ensure consistent heights */
.capabilities-section .card-pain {
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.capabilities-section .card-pain p {
    flex: 1;
}

/* Centralização Section - Better mobile flow */
.unified-ecosystem .reveal>div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media(max-width: 768px) {

    .unified-ecosystem .reveal>div>div:first-child span,
    .unified-ecosystem .reveal>div>div:first-child i {
        display: block;
        margin-bottom: 0.5rem;
    }
}

/* =========================================
   10. CREATIVE CARD LAYOUTS - PHASE 5
   ========================================= */

/* Pain Points Section - Feature + Grid Layout */
.pain-points .grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* First card as FEATURED */
.pain-points .card-pain:nth-child(1) {
    grid-column: 1 / -1;
    /* Full width */
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg,
            rgba(255, 69, 0, 0.08) 0%,
            var(--bg-elevated) 50%,
            var(--bg-surface) 100%);
    border: 2px solid rgba(255, 69, 0, 0.3);
    min-height: 240px;
}

.pain-points .card-pain:nth-child(1) i {
    font-size: 4rem !important;
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0;
}

.pain-points .card-pain:nth-child(1) h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pain-points .card-pain:nth-child(1) p {
    font-size: 1.1rem;
}

/* Mobile: Stack featured card */
@media(max-width: 968px) {
    .pain-points .grid-cards {
        grid-template-columns: 1fr;
    }

    .pain-points .card-pain:nth-child(1) {
        flex-direction: column;
        text-align: center;
    }
}

/* Capabilities Section - Staggered Layout */
.capabilities-section .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
}

.capabilities-section .card-pain:nth-child(even) {
    margin-top: 3rem;
    /* Offset every other card */
}

/* Mobile: Remove stagger */
@media(max-width: 768px) {
    .capabilities-section .grid-cards {
        grid-template-columns: 1fr;
    }

    .capabilities-section .card-pain:nth-child(even) {
        margin-top: 0;
    }
}

/* Stat Badges (optional) - Add to any card */
.card-pain .stat-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-serif);
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

.card-pain:hover .stat-badge {
    opacity: 0.25;
}

/* =========================================
   11. COMPARISON CARDS - PHASE 6
   ========================================= */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

/* Mobile Responsive - Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col h5 {
        margin-bottom: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

/* Grid Cards (Tech Style) */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.comparison-.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 968px) {
    .grid-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.card-pain {
    background: var(--bg-surface);
    border: var(--border-tech);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    transition: 0.3s var(--ease-tech);
    position: relative;
    overflow: hidden;
}

/* Spotlight Effect */
.card-pain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 69, 0, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-pain:hover::before {
    opacity: 1;
}

/* Animated Border */
.card-pain::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 69, 0, 0.6),
            transparent 50%,
            rgba(255, 69, 0, 0.6));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-pain:hover::after {
    opacity: 1;
}

.card-pain:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.03) 0%, transparent 100%);
    border-color: rgba(255, 69, 0, 0.3);
}

.comparison-card {
    padding: 3.5rem 3rem;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.comparison-card.before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.comparison-card.after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.comparison-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.comparison-badge.negative {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.comparison-badge.positive {
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Tools List */
.tools-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    flex: 1;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid rgba(239, 68, 68, 0.3);
}

.tool-item i {
    font-size: 1.5rem;
    color: #ef4444;
    width: 32px;
    flex-shrink: 0;
}

.tool-item span {
    color: var(--text-secondary);
}

/* Flow Visual */
.flow-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex: 1;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.flow-step i {
    font-size: 2rem;
    color: var(--primary);
}

.flow-step span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 80px;
}

.flow-visual .arrow {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Result Boxes */
.result-box {
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    margin-top: auto;
}

.result-box.negative {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.result-box.positive {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

/* Mobile */
@media(max-width: 968px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .flow-visual {
        flex-direction: column;
    }

    .flow-visual .arrow {
        transform: rotate(90deg);
    }
}

/* =========================================
   12. HEADER CONTACT & FLOATING BUTTON
   ========================================= */

/* Header phone contact */
.header-contact {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.header-contact a:hover {
    color: var(--primary) !important;
}

.header-contact a:hover i {
    transform: scale(1.1);
}

@media(max-width: 968px) {
    .header-contact {
        display: none;
        /* Hide on mobile */
    }
}

/* Floating WhatsApp Button */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 2147483647 !important;
    /* Maximum Possible Z-Index */
    transition: all 0.3s var(--ease-tech);
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    /* Fix for mobile webkit */
    backface-visibility: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* =========================================
   13. DESKTOP + MOBILE CAROUSEL FOR CAPACIDADES
   ========================================= */

/* DESKTOP CAROUSEL - Shows 3.5 cards with scroll */
.capabilities-section .grid-cards {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 0 2rem 3rem 2rem;
    margin: 0 -2rem;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: unset !important;
    align-items: flex-start;
}

.capabilities-section .grid-cards::-webkit-scrollbar {
    height: 8px;
}

.capabilities-section .grid-cards::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.capabilities-section .grid-cards::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.capabilities-section .grid-cards::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dim);
}

.capabilities-section .grid-cards .card-pain {
    min-width: 320px !important;
    width: 320px !important;
    min-height: 320px !important;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 2rem !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s var(--ease-tech);
}

.capabilities-section .grid-cards .card-pain:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 69, 0, 0.3);
}

.capabilities-section::after {
    content: "← Arraste para ver mais →";
    display: block;
    text-align: center;
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-weight: 600;
    opacity: 0.7;
}

/* MOBILE CAROUSEL - Smaller cards */
@media (max-width: 968px) {
    .capabilities-section .grid-cards {
        gap: 1rem;
        padding: 0 1.5rem 2rem 1.5rem;
        margin: 0 -1.5rem;
        scrollbar-width: none;
    }

    .capabilities-section .grid-cards::-webkit-scrollbar {
        display: none;
    }

    .capabilities-section .grid-cards .card-pain {
        min-width: 260px !important;
        width: 260px !important;
        scroll-snap-align: center;
        padding: 1.5rem !important;
    }

    .capabilities-section .grid-cards .card-pain h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3;
    }

    .capabilities-section .grid-cards .card-pain p {
        display: block !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        color: var(--text-secondary);
        padding-bottom: 0.5rem;
    }

    .capabilities-section .grid-cards .card-pain i {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        color: var(--primary);
    }

    .capabilities-section::after {
        content: "← Deslize para ver mais →";
        font-size: 0.8rem;
    }
}

/* =========================================
   SECTION DIVIDERS
   ========================================= */

/* Elegant section divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 69, 0, 0.3) 20%,
            rgba(255, 69, 0, 0.6) 50%,
            rgba(255, 69, 0, 0.3) 80%,
            transparent 100%);
    margin: 6rem 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.section-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
}