.ecosystem__item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ========================================
   Cometa Marketing - Site Principal
   Design Dark Mode
   ======================================== */

/* ========================================
   Animações de Scroll (Tutorial Style)
   ======================================== */

.section:not(.section--hero),
.section__header,
.section__cta,
.service-card,
.benefit-card,
.case-card,
.process-card,
.pain-card,
.value-card,
.pricing-card,
.faq-item {
    will-change: opacity, transform;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-left {
    animation: slideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-right {
    animation: slideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.rotate-in {
    animation: rotateIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-5deg) scale(0.95);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

:root {
    /* Cores Principais */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #13131a;
    --color-bg-tertiary: #1a1a24;
    --color-surface: #1f1f2e;
    --color-surface-hover: #262636;
    
    /* Gradientes Roxos */
    --gradient-primary: linear-gradient(135deg, #a50dee 0%, #590580 100%);
    --gradient-secondary: linear-gradient(135deg, #a50dee 0%, #8a0bc7 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(165, 13, 238, 0.3) 0%, transparent 70%);
    
    /* Cores de Texto */
    --color-text-primary: #ffffff;
    --color-text-secondary: #e5e7eb;
    --color-text-muted: #9ca3af;
    --color-text-accent: #a50dee;
    
    /* Cores de Destaque */
    --color-purple: #a50dee;
    --color-pink: #8a0bc7;
    --color-accent: #a50dee;
    --color-primary: #a50dee;
    --color-primary-dark: #8a0bc7;
    --color-secondary: #f5e4fd;
    
    /* Espaçamentos */
    --spacing-xs: 0.375rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Tipografia */
    --font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 2.75rem;
    
    /* Bordas */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(165, 13, 238, 0.2);
    --shadow-glow: 0 0 40px rgba(165, 13, 238, 0.4);
    
    /* Transições */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ========================================
   Tema Light
   ======================================== */

[data-theme="light"] {
    /* Cores Principais - Light Mode */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8f9fa;
    --color-bg-tertiary: #f1f3f5;
    --color-surface: #ffffff;
    --color-surface-hover: #f8f9fa;
    
    /* Cores de Texto - Light Mode */
    --color-text-primary: #1a1a24;
    --color-text-secondary: #2d2d3a;
    --color-text-muted: #6b7280;
    --color-text-accent: #a50dee;
    
    /* Sombras ajustadas para light mode */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(165, 13, 238, 0.15);
    --shadow-glow: 0 0 40px rgba(165, 13, 238, 0.2);
}

/* Ajustes específicos para elementos no tema light */
[data-theme="light"] .nav {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}

[data-theme="light"] .nav::before {
    background: linear-gradient(180deg, rgba(165, 13, 238, 0.05) 0%, rgba(138, 11, 199, 0.02) 100%);
}

[data-theme="light"] .hero__spotlight {
    background: radial-gradient(circle at center, rgba(165, 13, 238, 0.1) 0%, rgba(255, 255, 255, 1) 70%);
}

[data-theme="light"] .hero__glow {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 100%);
}

[data-theme="light"] .section {
    background: var(--color-bg-primary);
}

[data-theme="light"] .section--ecosystem {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.98) 50%, rgba(255, 255, 255, 1) 100%) !important;
}

[data-theme="light"] .section--ecosystem::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%) !important;
}

[data-theme="light"] .section--ecosystem-cards {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.98) 50%, rgba(255, 255, 255, 1) 100%);
}

[data-theme="light"] .ecosystem-cards__grid {
    background: transparent !important;
}

[data-theme="light"] .section--free-tools {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
}

[data-theme="light"] .section--ai {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 228, 253, 0.1) 50%, rgba(255, 255, 255, 1) 100%);
}

[data-theme="light"] .section--services {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

[data-theme="light"] .section--faq {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

[data-theme="light"] .ecosystem__item,
[data-theme="light"] .service-card,
[data-theme="light"] .ai-product-card {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .ecosystem-card::after {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 0 0 0.5px rgba(0, 0, 0, 0.05) inset;
}

[data-theme="light"] .ecosystem-card::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
}

[data-theme="light"] .ecosystem__item:hover,
[data-theme="light"] .service-card:hover,
[data-theme="light"] .ai-product-card:hover {
    background: transparent;
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .nav__link {
    color: var(--color-text-primary);
}

[data-theme="light"] .nav__link:hover {
    color: var(--color-text-accent);
}

[data-theme="light"] .section__header h2 {
    color: var(--color-text-primary) !important;
}

[data-theme="light"] .section__header .eyebrow {
    color: var(--color-primary) !important;
}

[data-theme="light"] .hero__title {
    color: var(--color-text-primary) !important;
}

[data-theme="light"] .hero__subtitle {
    color: var(--color-text-secondary) !important;
}

[data-theme="light"] .eyebrow {
    color: var(--color-primary) !important;
}

[data-theme="light"] .ecosystem__item-label,
[data-theme="light"] .ecosystem__item-description,
[data-theme="light"] .ecosystem-card__title,
[data-theme="light"] .ecosystem-card__description,
[data-theme="light"] .service-card h4,
[data-theme="light"] .service-card p,
[data-theme="light"] .ai-product-card h3,
[data-theme="light"] .ai-product-card p,
[data-theme="light"] .faq-question {
    color: var(--color-text-primary);
}

[data-theme="light"] .hero__subtitle,
[data-theme="light"] .intro-text,
[data-theme="light"] .ecosystem__item-description,
[data-theme="light"] .ecosystem-card__description,
[data-theme="light"] .service-card p,
[data-theme="light"] .ai-product-card p,
[data-theme="light"] .faq-answer {
    color: var(--color-text-secondary);
}

[data-theme="light"] .hero__microcopy,
[data-theme="light"] .hero__form-footer,
[data-theme="light"] .free-tools__cta-text {
    color: var(--color-text-muted);
}

[data-theme="light"] .nav__container .nav__links {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
}

[data-theme="light"] .nav__container .nav__links::before {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.05) 0%, rgba(138, 11, 199, 0.02) 100%);
}

[data-theme="light"] .nav__link:not(.nav__link--active):hover {
    color: var(--color-text-accent);
    background: rgba(165, 13, 238, 0.1);
}

[data-theme="light"] .nav__link--active {
    background: rgba(165, 13, 238, 0.15);
    color: var(--color-text-accent);
    border: 1px solid rgba(165, 13, 238, 0.3);
}

[data-theme="light"] .nav__link--active:hover {
    color: var(--color-text-accent);
    background: rgba(165, 13, 238, 0.2);
    border-color: rgba(165, 13, 238, 0.4);
}

[data-theme="light"] .nav__mega-menu {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .nav__mega-item {
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav__mega-item:hover {
    border-color: rgba(165, 13, 238, 0.3);
    box-shadow: 0 8px 24px rgba(165, 13, 238, 0.15);
}

[data-theme="light"] .hero__form {
    background: var(--color-surface);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero__form-title,
[data-theme="light"] .hero__form-subtitle {
    color: var(--color-text-primary);
}

[data-theme="light"] .hero__form-input {
    background: var(--color-bg-secondary);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--color-text-primary);
}

[data-theme="light"] .hero__form-input:focus {
    border-color: var(--color-accent);
    background: var(--color-surface);
}

[data-theme="light"] .hero__form-label {
    color: var(--color-text-muted);
}

[data-theme="light"] .hero__form-input:focus ~ .hero__form-label,
[data-theme="light"] .hero__form-input:not(:placeholder-shown) ~ .hero__form-label,
[data-theme="light"] .hero__form-input.has-value ~ .hero__form-label {
    color: var(--color-text-accent);
}

/* Barra de rolagem para tema light */
[data-theme="light"] ::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: rgba(165, 13, 238, 0.3);
    border: 2px solid var(--color-bg-secondary);
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: rgba(165, 13, 238, 0.5);
}

/* Ajustes gerais para elementos com fundo escuro */
[data-theme="light"] .free-tool-card,
[data-theme="light"] .faq-item {
    background: var(--color-surface);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .faq-question {
    background: transparent;
}

[data-theme="light"] .faq-answer {
    color: var(--color-text-secondary);
}

/* ========================================
   Material Icons
   ======================================== */

.material-icons {
    font-family: 'Material Symbols Rounded', 'Material Icons';
    font-weight: 200;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}

/* Tamanhos específicos para diferentes contextos */
.btn .material-icons {
    font-size: 1em;
}

.ecosystem__item-icon .material-icons,
.ecosystem-card__icon .material-icons {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.service-card__icon-wrapper .material-icons,
.ai-product-card__icon .material-icons {
    font-size: 2rem;
}

.free-tool-card__icon .material-icons {
    font-size: 1.75rem;
}

.faq-question .material-icons {
    font-size: 1.25rem;
}

/* Ícones mais escuros no tema light */
[data-theme="light"] .material-icons {
    color: var(--color-text-primary);
    opacity: 0.9;
}

[data-theme="light"] .btn .material-icons,
[data-theme="light"] .nav__cta .material-icons {
    color: #ffffff;
    opacity: 1;
}

[data-theme="light"] .ecosystem__item-icon {
    background: rgba(165, 13, 238, 0.1);
    border-color: rgba(165, 13, 238, 0.2);
}

[data-theme="light"] .ecosystem__item-icon .material-icons {
    color: var(--color-primary) !important;
    opacity: 1;
}

[data-theme="light"] .ecosystem-card__icon {
    background: rgba(165, 13, 238, 0.1);
    border-color: rgba(165, 13, 238, 0.2);
}

[data-theme="light"] .ecosystem-card__icon .material-icons {
    color: var(--color-primary) !important;
    opacity: 1;
}


/* Ícones em elementos com background gradiente mantêm cor branca */
[data-theme="light"] .service-card--modern .service-card__icon-wrapper .material-icons,
[data-theme="light"] .ai-product-card__icon .material-icons {
    color: #ffffff;
    opacity: 1;
}

[data-theme="light"] .free-tool-card__icon .material-icons {
    color: var(--color-primary);
    opacity: 1;
}

[data-theme="light"] .free-tool-card:hover .free-tool-card__icon .material-icons {
    color: #ffffff;
    opacity: 1;
}

/* Ícones com fundo claro devem ter cor primária */
.free-tool-card__icon .material-icons,
.service-card__icon-wrapper--free .material-icons,
.service-card__icon-wrapper--ai .material-icons {
    color: var(--color-primary);
}

/* No hover, quando o fundo muda para gradiente, o ícone fica branco */
.free-tool-card:hover .free-tool-card__icon .material-icons {
    color: #ffffff;
}

/* Ícones em outros elementos */
[data-theme="light"] .faq-question .material-icons,
[data-theme="light"] .hero__form-footer .material-icons,
[data-theme="light"] .footer__contact .material-icons {
    color: var(--color-text-primary);
    opacity: 0.8;
}

/* ========================================
   Reset e Base
   ======================================== */

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

html {
    font-size: 16px;
    scroll-padding-top: 80px;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}


/* ========================================
   Barra de Rolagem Moderna e Slim
   ======================================== */

/* WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 15, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.6), rgba(138, 11, 199, 0.6));
    border-radius: 10px;
    border: 2px solid rgba(10, 10, 15, 0.5);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.8), rgba(138, 11, 199, 0.8));
    border: 1px solid rgba(165, 13, 238, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, rgba(165, 13, 238, 1), rgba(138, 11, 199, 1));
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(165, 13, 238, 0.6) rgba(10, 10, 15, 0.5);
}

.page-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* ========================================
   Tipografia
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

strong {
    color: var(--color-text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

a:hover {
    color: var(--color-purple);
}

ul, ol {
    list-style: none;
}

/* ========================================
   Eyebrow (Label de Seção)
   ======================================== */

.eyebrow {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(165, 13, 238, 0.1);
    border-radius: var(--radius-sm);
}

/* ========================================
   Botões
   ======================================== */

.btn {
    --btn-width: auto;
    --btn-height: 52px;
    --btn-padding: 8px;
    --btn-radius: 24px;
    --btn-dot-size: 8px;
    --btn-hue: 280deg;
    --btn-animation-duration: 1.2s;
    
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    min-width: var(--btn-width);
    height: var(--btn-height);
    padding: 0 calc(var(--btn-height) + var(--spacing-sm)) 0 calc(var(--btn-padding) * 2 + var(--spacing-sm));
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05)), 
                linear-gradient(135deg, #a50dee 0%, #8a0bc7 100%);
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.8) inset,
        0 2px 1px rgba(0, 0, 0, 0.06),
        0 4px 2px rgba(0, 0, 0, 0.06),
        0 8px 4px rgba(0, 0, 0, 0.06),
        0 16px 8px rgba(0, 0, 0, 0.06),
        0 32px 16px rgba(0, 0, 0, 0.06);
    
    transition:
        transform 0.25s cubic-bezier(0.25, 1.5, 0.5, 2.2),
        box-shadow 0.25s cubic-bezier(0.25, 1.5, 0.5, 1),
        filter 0.3s cubic-bezier(0.25, 1.5, 0.5, 1);
    
    will-change: transform, filter;
    z-index: 2;
    
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn--primary {
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05)), 
                linear-gradient(135deg, #a50dee 0%, #8a0bc7 100%);
    position: relative;
    overflow: visible;
}

.btn--primary::after {
    content: "";
    position: absolute;
    top: calc(50% - var(--btn-dot-size) / 2);
    right: calc(var(--btn-height) / 2);
    width: var(--btn-dot-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: hsla(280, 50%, 70%, 0.5);
    border: 1px solid hsla(280, 60%, 75%, 0.8);
    box-sizing: border-box;
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.9) inset,
        0 2px 1px rgba(0, 0, 0, 0.06),
        0 4px 2px rgba(0, 0, 0, 0.06),
        0 8px 4px rgba(0, 0, 0, 0.06);
    pointer-events: none;
    z-index: 3;
    opacity: 0.9;
}

.btn--primary span,
.btn--primary .btn__icon,
.btn--primary i {
    position: relative;
    z-index: 1;
    color: #ffffff;
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.3)) drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.3));
}

.btn--primary:hover,
.btn--primary:focus-visible {
    filter: drop-shadow(8px 0 8px hsla(280, 70%, 60%, 0.6));
    transform: translate3d(0, -2px, 2px);
    color: #ffffff;
}

.btn--primary:hover span,
.btn--primary:hover i,
.btn--primary:hover .btn__icon {
    color: #ffffff;
}

.btn--primary:hover::after {
    background-color: hsla(280, 100%, 50%, 1);
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.9) inset,
        0 2px 1px rgba(0, 0, 0, 0.06),
        0 4px 2px rgba(0, 0, 0, 0.06),
        0 8px 4px rgba(0, 0, 0, 0.06),
        0 0 10px 2px hsla(280, 80%, 50%, 0.3),
        0 0 20px 10px hsla(280, 80%, 50%, 0.5);
}

.btn--primary:focus-visible {
    outline: 2px dashed hsla(280, 70%, 40%, 1);
    outline-offset: var(--btn-padding);
}

.btn--primary:active {
    filter: drop-shadow(8px 0 8px hsla(280, 100%, 50%, 1));
    transform: translate3d(0, 0, -4px);
    color: #ffffff;
}

.btn--primary:active::after {
    background-color: hsla(280, 100%, 50%, 1);
}

.btn--ghost {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1)), 
                rgba(31, 31, 46, 0.6);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.3) inset,
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 4px 2px rgba(0, 0, 0, 0.2),
        0 8px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: visible;
}

.btn--ghost::after {
    content: "";
    position: absolute;
    top: calc(50% - var(--btn-dot-size) / 2);
    right: calc(var(--btn-height) / 2);
    width: var(--btn-dot-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: hsla(280, 50%, 50%, 0.2);
    border: 1px solid hsla(280, 60%, 60%, 0.4);
    box-sizing: border-box;
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.5) inset,
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 4px 2px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 3;
    opacity: 0.5;
}

.btn--ghost span,
.btn--ghost .btn__icon,
.btn--ghost i {
    position: relative;
    z-index: 1;
    color: #ffffff;
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.2)) drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.4));
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    filter: drop-shadow(8px 0 8px hsla(280, 70%, 60%, 0.4));
    transform: translate3d(0, -2px, 2px);
    border-color: rgba(165, 13, 238, 0.4);
    color: #ffffff;
}

.btn--ghost:hover span,
.btn--ghost:hover i,
.btn--ghost:hover .btn__icon {
    color: #ffffff;
}

.btn--ghost:hover::after {
    background-color: hsla(280, 100%, 50%, 0.8);
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.5) inset,
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 4px 2px rgba(0, 0, 0, 0.2),
        0 8px 4px rgba(0, 0, 0, 0.2),
        0 0 10px 2px hsla(280, 80%, 50%, 0.3),
        0 0 20px 10px hsla(280, 80%, 50%, 0.4);
}

.btn--ghost:focus-visible {
    outline: 2px dashed hsla(280, 70%, 40%, 1);
    outline-offset: var(--btn-padding);
}

.btn--ghost:active {
    filter: drop-shadow(8px 0 8px hsla(280, 100%, 50%, 0.8));
    transform: translate3d(0, 0, -4px);
    color: #ffffff;
}

.btn--ghost:active::after {
    background-color: hsla(280, 100%, 50%, 1);
}

.btn__icon {
    display: inline-flex;
    align-items: center;
}

.btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    flex-shrink: 0;
}

.btn i:not(:last-child) {
    margin-right: var(--spacing-xs);
}

.btn i:last-child:not(:only-child) {
    margin-left: var(--spacing-xs);
}

/* ========================================
   Navegação
   ======================================== */

.nav {
    position: fixed;
    top: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
    width: calc(100% - calc(var(--spacing-md) * 2));
    z-index: 10000; /* Acima do blur overlay (9999) */
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    margin: 0;
    transition: filter 0.3s ease-out;
    filter: blur(0px); /* Focada por padrão ao carregar a página */
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(165, 13, 238, 0.08) 0%, rgba(138, 11, 199, 0.04) 100%);
    border-radius: var(--radius-xl);
    pointer-events: none;
    z-index: -1;
}

.nav__surface {
    max-width: 100%;
    margin: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    position: relative;
}

.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav__logo-image {
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav__container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__container .nav__links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(31, 31, 46, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xs);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    overflow: visible;
}

.nav__container .nav__links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.05) 100%);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    list-style: none;
}

.nav__item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav__item--has-mega {
    position: static;
}

.nav__link--has-mega {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav__link--has-mega i {
    font-size: 1.2em;
    transition: transform var(--transition-fast);
}

.nav__item--has-mega:hover .nav__link--has-mega i,
.nav__item--has-mega[aria-expanded="true"] .nav__link--has-mega i {
    transform: rotate(180deg);
}

.nav__mega-menu {
    position: fixed !important;
    top: calc(1.5rem + 58px) !important;
    left: 1.5rem !important;
    right: 1.5rem !important;
    width: calc(100vw - 3rem) !important;
    max-width: none !important;
    margin: 0 !important;
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 10001;
    box-sizing: border-box !important;
}

/* Overlay escuro quando mega menu está aberto */
.nav__mega-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
}

.nav__mega-overlay--active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Mega menu ativo - controlado via JavaScript */
.nav__mega-menu--active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: translateY(0) !important;
}

.nav__mega-content {
    width: 100%;
}

.nav__mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.nav__mega-item {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav__mega-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.02) 0%, rgba(138, 11, 199, 0.01) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.nav__mega-item:hover {
    border-color: rgba(165, 13, 238, 0.2);
    box-shadow: 0 8px 24px rgba(165, 13, 238, 0.1);
    transform: translateY(-2px);
}

.nav__mega-item:hover::before {
    opacity: 1;
}

.nav__mega-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.nav__mega-icon i {
    font-size: 20px;
    color: var(--color-primary);
}

.nav__mega-content-inner {
    position: relative;
    z-index: 1;
}

.nav__mega-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-xs);
    margin-bottom: 4px;
}

.nav__mega-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
}

.nav__mega-description {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.4;
    margin: 0 0 var(--spacing-sm) 0;
}

.nav__mega-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap var(--transition-fast);
    margin-top: auto;
}

.nav__mega-item:hover .nav__mega-link {
    gap: 6px;
}

.nav__mega-link i {
    font-size: 14px;
    transition: transform var(--transition-fast);
}

.nav__mega-item:hover .nav__mega-link i {
    transform: translateX(4px);
}

.nav__mega-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.15) 0%, rgba(138, 11, 199, 0.15) 100%);
    border: 1px solid rgba(165, 13, 238, 0.3);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nav__mega-badge--ai {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.2) 0%, rgba(138, 11, 199, 0.2) 100%);
}

.nav__link {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    white-space: nowrap;
    display: block;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.nav__link:not(.nav__link--active):hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav__link--active {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.nav__link--active:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.nav__cta {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    white-space: nowrap;
}

.nav__toggle {
    width: 40px;
    height: 40px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav__toggle:hover {
    background: var(--color-surface);
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    padding-top: 100px;
    background: radial-gradient(circle at center, rgba(165, 13, 238, 0.08) 0%, rgba(245, 245, 250, 0.98) 70%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(240, 240, 245, 0.98) 100%);
    z-index: 1;
    pointer-events: none;
}


.hero__spotlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(165, 13, 238, 0.08) 0%,
        rgba(138, 11, 199, 0.04) 30%,
        transparent 70%
    );
    z-index: 1;
    pointer-events: none;
    transition: background 0.1s ease-out;
    opacity: 0.8;
}

.hero__layout {
    position: relative;
    z-index: 3;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(165, 13, 238, 0.05) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(165, 13, 238, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero__glow--left {
    bottom: -30%;
    right: auto;
    left: -30%;
}

.hero__layout {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl) var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    min-height: calc(100vh - 80px);
    width: 100%;
}

.hero__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    width: 100%;
    align-items: stretch;
    grid-auto-flow: column;
}

.hero__column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    flex: 1;
}

.hero__column--left {
    text-align: left;
    grid-column: 1 / 2;
    overflow: visible;
}

.hero__column--right {
    grid-column: 2 / 3;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 0;
    overflow: visible;
    padding-bottom: 0;
    position: relative;
}

/* Texto Circular Rotativo na Hero */
.hero__circular-text {
    position: absolute;
    right: 20px;
    top: -80px;
    width: 320px;
    height: 320px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.hero__circular-svg {
    width: 100%;
    height: 100%;
    animation: rotateHeroCircularText 25s linear infinite;
}

.hero__circular-text-path {
    fill: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
}

[data-theme="light"] .hero__circular-text-path {
    fill: var(--color-primary);
}

@keyframes rotateHeroCircularText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 968px) {
    .hero__circular-text {
        width: 200px;
        height: 200px;
        right: -30px;
        top: -30px;
        opacity: 1;
    }
    
    .hero__circular-text-path {
        font-size: 10px;
    }
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-align: left;
    box-sizing: border-box;
    min-width: 0;
}

.hero__main {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__pill {
    display: inline-block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    text-align: left;
    max-width: 100%;
}

.hero__subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 100%;
    text-align: left;
}

.hero__benefits {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.hero__benefit-separator {
    color: var(--color-purple);
}

.hero__plus {
    color: var(--color-purple);
    font-size: var(--font-size-4xl);
    vertical-align: baseline;
    margin-left: var(--spacing-xs);
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-sm);
    margin: 0 0 var(--spacing-md) 0;
    flex-wrap: wrap;
    width: 100%;
}

.btn--outline {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1)), 
                rgba(31, 31, 46, 0.7);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.3) inset,
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 4px 2px rgba(0, 0, 0, 0.2),
        0 8px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: visible;
}

.btn--outline::after {
    content: "";
    position: absolute;
    top: calc(50% - var(--btn-dot-size) / 2);
    right: calc(var(--btn-height) / 2);
    width: var(--btn-dot-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: hsla(280, 50%, 50%, 0.2);
    border: 1px solid hsla(280, 60%, 60%, 0.4);
    box-sizing: border-box;
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.5) inset,
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 4px 2px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 3;
    opacity: 0.5;
}

.btn--outline span,
.btn--outline .btn__icon,
.btn--outline i {
    position: relative;
    z-index: 1;
    color: #ffffff;
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.2)) drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.4));
}

.btn--outline:hover,
.btn--outline:focus-visible {
    filter: drop-shadow(8px 0 8px hsla(280, 70%, 60%, 0.4));
    transform: translate3d(0, -2px, 2px);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn--outline:hover span,
.btn--outline:hover i,
.btn--outline:hover .btn__icon {
    color: #ffffff;
}

.btn--outline:hover::after {
    background-color: hsla(280, 100%, 50%, 0.8);
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.5) inset,
        0 2px 1px rgba(0, 0, 0, 0.2),
        0 4px 2px rgba(0, 0, 0, 0.2),
        0 8px 4px rgba(0, 0, 0, 0.2),
        0 0 10px 2px hsla(280, 80%, 50%, 0.3),
        0 0 20px 10px hsla(280, 80%, 50%, 0.4);
}

.btn--outline:focus-visible {
    outline: 2px dashed hsla(280, 70%, 40%, 1);
    outline-offset: var(--btn-padding);
}

.btn--outline:active {
    filter: drop-shadow(8px 0 8px hsla(280, 100%, 50%, 0.8));
    transform: translate3d(0, 0, -4px);
    color: #ffffff;
}

.btn--outline:active::after {
    background-color: hsla(280, 100%, 50%, 1);
}

.btn--icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05)), 
                linear-gradient(135deg, #a50dee 0%, #8a0bc7 100%);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 50%;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        1px 1px 2px -1px rgba(255, 255, 255, 0.8) inset,
        0 2px 1px rgba(0, 0, 0, 0.06),
        0 4px 2px rgba(0, 0, 0, 0.06),
        0 8px 4px rgba(0, 0, 0, 0.06),
        0 16px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: visible;
    color: #ffffff;
}

.btn--icon i {
    position: relative;
    z-index: 1;
    color: #ffffff;
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.3)) drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.3));
}

.btn--icon:hover,
.btn--icon:focus-visible {
    filter: drop-shadow(8px 0 8px hsla(280, 70%, 60%, 0.6));
    transform: translate3d(0, -2px, 2px) scale(1.05);
    color: #ffffff;
}

.btn--icon:hover i {
    color: #ffffff;
}

.btn--icon:focus-visible {
    outline: 2px dashed hsla(280, 70%, 40%, 1);
    outline-offset: 4px;
}

.btn--icon:active {
    filter: drop-shadow(8px 0 8px hsla(280, 100%, 50%, 1));
    transform: translate3d(0, 0, -4px) scale(1);
    color: #ffffff;
}

.btn--icon:active i {
    color: #ffffff;
}

.hero__microcopy {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-align: left;
    max-width: 100%;
    margin: 0;
}

/* Formulário de Cadastro */
.hero__form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.hero__form:hover {
    border-color: rgba(165, 13, 238, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(165, 13, 238, 0.2) inset,
        0 0 40px rgba(165, 13, 238, 0.1);
}

.hero__form-header {
    margin-bottom: 20px;
    text-align: center;
}

.hero__form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 4px 0;
}

.hero__form-subtitle {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin: 0;
}

.hero__form-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero__form-group {
    position: relative;
}

.hero__form-group--floating {
    position: relative;
}

.hero__form-group--floating .hero__form-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    padding: 0 4px;
}

.hero__form-group--floating .hero__form-input:focus ~ .hero__form-label,
.hero__form-group--floating .hero__form-input:not(:placeholder-shown) ~ .hero__form-label,
.hero__form-group--floating .hero__form-input.has-value ~ .hero__form-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: rgba(165, 13, 238, 0.9);
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.hero__form-group--floating .hero__form-input.has-value {
    padding-top: 20px;
    padding-bottom: 10px;
}

.hero__form-input {
    width: 100%;
    padding: 16px 14px 14px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-text-primary);
    font-size: 14px;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    height: 52px;
}

.hero__form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(165, 13, 238, 0.6);
    box-shadow: 0 0 0 4px rgba(165, 13, 238, 0.1);
    padding-top: 20px;
    padding-bottom: 10px;
}

.hero__form-input::placeholder {
    color: transparent;
    opacity: 0;
}

.hero__form-input:focus::placeholder {
    opacity: 0;
}

.hero__form-submit {
    width: 100%;
    margin-top: 4px;
    padding: 14px var(--spacing-md);
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
}

.hero__form-footer {
    font-size: 10px;
    color: var(--color-text-muted);
    text-align: center;
    margin: 12px 0 0 0;
    line-height: 1.4;
}

.hero__form-link {
    color: rgba(165, 13, 238, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero__form-link:hover {
    color: rgba(165, 13, 238, 1);
    text-decoration: underline;
}

/* Hero Image */
.hero__image-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
}

.hero__image {
    width: 115%;
    height: auto;
    object-fit: contain;
    object-position: top center;
    display: block;
    max-width: 115%;
    margin-left: -2%;
    margin-top: -50px;
}

/* ========================================
   Signup Section - Full Width Primary Background
   ======================================== */

.section--signup {
    padding: calc(var(--spacing-xl) * 1.5) var(--spacing-lg);
    background: var(--gradient-primary) !important;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

/* Texto Circular Rotativo */
.signup__circular-text {
    position: absolute;
    left: -100px;
    top: 30%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.signup__circular-svg {
    width: 100%;
    height: 100%;
    animation: rotateCircularText 20s linear infinite;
}

.signup__circular-text-path {
    fill: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
}

@keyframes rotateCircularText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 968px) {
    .signup__circular-text {
        width: 200px;
        height: 200px;
        left: -60px;
        opacity: 0.1;
    }
    
    .signup__circular-text-path {
        font-size: 10px;
    }
}

.signup__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.signup__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-xl) * 1.2);
    align-items: center;
}

.signup__column {
    display: flex;
    flex-direction: column;
}

.signup__content {
    color: #ffffff;
}

.signup__title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
}

.signup__description {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.signup__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.signup__benefit {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.95);
}

.signup__benefit i {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 24px;
    flex-shrink: 0;
}

.signup__form {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 20px;
    padding: 32px;
    box-shadow: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.signup__form:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 40px rgba(255, 255, 255, 0.1);
}

.signup__form-header {
    margin-bottom: 24px;
    text-align: center;
}

.signup__form-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.signup__form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.signup__form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup__form-group {
    position: relative;
}

.signup__form-group--floating {
    position: relative;
}

.signup__form-group--floating .signup__form-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    padding: 0 4px;
}

.signup__form-group--floating .signup__form-input:focus ~ .signup__form-label,
.signup__form-group--floating .signup__form-input:not(:placeholder-shown) ~ .signup__form-label,
.signup__form-group--floating .signup__form-input.has-value ~ .signup__form-label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    color: rgba(255, 255, 255, 1);
    background: rgba(165, 13, 238, 0.9);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.signup__form-group--floating .signup__form-input.has-value {
    padding-top: 20px;
    padding-bottom: 12px;
}

.signup__form-input {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    height: 52px;
}

.signup__form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.signup__form-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    padding-bottom: 12px;
}

.signup__form-input:focus::placeholder {
    opacity: 0;
}

.signup__form-submit {
    width: 100%;
    margin-top: 4px;
    padding: 14px var(--spacing-md);
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #c56de8 0%, #a855d6 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(197, 109, 232, 0.4);
    position: relative;
    overflow: hidden;
}

.signup__form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.signup__form-submit:hover {
    background: linear-gradient(135deg, #d48ef0 0%, #b96edf 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 109, 232, 0.5);
}

.signup__form-submit:hover::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.signup__form-submit span,
.signup__form-submit i {
    position: relative;
    z-index: 1;
}

.signup__form-footer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 16px 0 0 0;
    line-height: 1.5;
}

.signup__form-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.signup__form-link:hover {
    color: #ffffff;
}

@media (max-width: 968px) {
    .signup__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .signup__title {
        font-size: var(--font-size-3xl);
    }
    
    .section--signup {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

.hero__visual {
    display: none;
}

.hero__tagline {
    text-align: right;
    margin-bottom: var(--spacing-lg);
}

.hero__tagline p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 350px;
    margin-left: auto;
}


/* Cards de Notificações Flutuantes - Rolagem Vertical */
.hero__notifications {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: visible;
    padding-bottom: 20px;
}

.hero__notification-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 320px;
    min-width: 280px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 0 0 0.5px rgba(255, 255, 255, 0.1) inset;
    position: absolute;
    left: 50%;
    transform-origin: center;
    overflow: hidden;
    visibility: visible;
    will-change: transform, opacity, filter;
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    /* Estado inicial - todos os cards invisíveis */
    opacity: 0;
    transform: translateX(-50%) translateY(calc(50% + 180px)) scale(0.9);
    filter: blur(3px);
    z-index: 1;
}

/* Card entrando (vindo de baixo) */
.hero__notification-card.entering {
    opacity: 0.8;
    transform: translateX(-50%) translateY(calc(50% + 120px)) scale(0.95);
    filter: blur(2px);
    z-index: 2;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card ativo (centro) */
.hero__notification-card.active {
    opacity: 1;
    transform: translateX(-50%) translateY(calc(50% + 60px)) scale(1);
    filter: blur(0px);
    z-index: 10;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

/* Card saindo (indo para cima) */
.hero__notification-card.exiting {
    opacity: 0;
    transform: translateX(-50%) translateY(calc(50% + 0px)) scale(0.9);
    filter: blur(3px);
    z-index: 1;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card fora de vista */
.hero__notification-card.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(calc(50% + 120px)) scale(0.9);
    filter: blur(3px);
    z-index: 0;
    pointer-events: none;
}

.hero__notification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    opacity: 0.6;
    pointer-events: none;
}

.hero__notification-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(165, 13, 238, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

/* Removido hover - tooltips não são interativos */

@keyframes slideUp {
    0% {
        transform: translateX(-50%) translateY(100px) scale(0.8);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}

/* Removido hover - tooltips não são interativos */

.hero__notification-card.animate-in {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-12px) scale(1.01);
    }
}

.hero__notification-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-base);
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 1;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    flex-shrink: 0;
}

.hero__notification-card:hover .hero__notification-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.08);
    box-shadow: 
        0 4px 12px rgba(165, 13, 238, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.hero__notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
}

.hero__notification-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.4;
    margin: 0;
    display: flex;
    align-items: center;
}

.hero__notification-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Imagem do Dashboard - Troca no hover dos cards */
.hero__dashboard-image {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.hero__dashboard-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    border-radius: 0 0 20px 20px;
    pointer-events: none;
    z-index: 1;
}

.hero__dashboard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: 0% 0% !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease-in-out;
    display: block;
    position: relative;
    z-index: 0;
}

.hero__stats {
    display: none !important;
}

.hero__stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
}

.hero__stat-card--highlight {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(165, 13, 238, 0.3);
}

.hero__stat-image {
    margin-bottom: var(--spacing-sm);
}


.hero__stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--color-purple);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.hero__stat-label {
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.hero__stat-plus {
    font-size: var(--font-size-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.hero__stat-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hero__stat-avatars {
    display: flex;
    gap: -10px;
    margin-top: var(--spacing-md);
}

.hero__stat-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-bg-primary);
    object-fit: cover;
    margin-left: -8px;
}

.hero__stat-avatars img:first-child {
    margin-left: 0;
}

.hero__stat-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.hero__social-icons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.hero__social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.hero__social-icon:hover {
    background: var(--color-purple);
    border-color: var(--color-purple);
    transform: translateY(-2px);
}

.hero__social-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-align: center;
}

.hero__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}

.hero__glow--left {
    top: 10%;
    left: -10%;
    animation: pulse 8s ease-in-out infinite;
}

.hero__glow--right {
    bottom: 10%;
    right: -10%;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ========================================
   Seções
   ======================================== */

.section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Efeito de blur no topo e bottom da página */
.blur-overlay {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.3s ease-out;
    opacity: 1;
}

.blur-overlay--top {
    top: 0;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
}

.blur-overlay--bottom {
    bottom: 0;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
}

.section__header {
    max-width: 1000px;
    margin: 0 auto var(--spacing-xs);
    text-align: center;
}

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

.section__header h2 {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-4xl);
}

.section__header p {
    font-size: var(--font-size-lg);
    max-width: 650px;
    margin: 0 auto;
}

.section__cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.section__cta-text {
    font-size: var(--font-size-xl);
    color: var(--color-text-accent);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

/* ========================================
   Intro Section
   ======================================== */

.section--intro {
    background: var(--color-bg-secondary);
}

.intro-text {
    font-size: var(--font-size-xl);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    display: block;
    text-align: center;
    color: var(--color-text-secondary);
}

/* ========================================
   Pains Section
   ======================================== */

.pains-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
}

.pain-card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    color: rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.pain-card:nth-child(1) {
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgba(200, 200, 200, 0.3) 100%);
}

.pain-card:nth-child(2) {
    background: transparent;
}

.pain-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.pain-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.15) 0%, rgba(138, 11, 199, 0.15) 100%);
}

.pain-card:nth-child(4) {
    background: transparent;
}

.pain-card:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.pain-card:nth-child(5) {
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgba(200, 200, 200, 0.3) 100%);
}

.pain-card__bg-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 40px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: attentionPulse 3s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.4);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.pain-card__icon {
    font-size: var(--font-size-2xl);
    color: rgba(255, 255, 255, 1);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.pain-card p {
    margin: 0;
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.pain-card p strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    display: block;
    margin-bottom: 0.25em;
}

@keyframes attentionPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.15);
    }
}

/* ========================================
   Value Section
   ======================================== */

.section--value {
    background: var(--color-bg-secondary);
}

.value-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.value-card {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(165, 13, 238, 0.5);
}

.value-card .icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    margin: 0;
    color: var(--color-text-secondary);
}

/* ========================================
   Services Section
   ======================================== */

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    margin: 0;
    color: var(--color-text-secondary);
}

/* ========================================
   Services Modern Section - App Style
   ======================================== */

.services-category {
    margin-bottom: var(--spacing-xl);
}

.services-category__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    text-align: center;
}

.services-category__title i {
    font-size: var(--font-size-xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-category__subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
}

.services-categories-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.services-category--side {
    margin-bottom: 0;
}

.services-category--highlight {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.05) 0%, rgba(138, 11, 199, 0.05) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(165, 13, 238, 0.1);
}

.services-category--free {
    background: linear-gradient(135deg, rgba(245, 228, 253, 0.05) 0%, rgba(165, 13, 238, 0.05) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 228, 253, 0.1);
}

.service-card--modern {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
    padding: var(--spacing-lg);
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.service-card--modern:nth-child(1) {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.3) 0%, rgba(138, 11, 199, 0.35) 100%);
}

.service-card--modern:nth-child(2) {
    background: linear-gradient(135deg, rgba(245, 228, 253, 0.3) 0%, rgba(165, 13, 238, 0.3) 100%);
}

.service-card--modern:nth-child(3) {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.28) 0%, rgba(89, 5, 128, 0.32) 100%);
}

.service-card--modern:nth-child(4) {
    background: linear-gradient(135deg, rgba(138, 11, 199, 0.3) 0%, rgba(165, 13, 238, 0.32) 100%);
}

.service-card--modern:nth-child(5) {
    background: linear-gradient(135deg, rgba(245, 228, 253, 0.28) 0%, rgba(138, 11, 199, 0.3) 100%);
}

.service-card--modern:nth-child(6) {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.32) 0%, rgba(89, 5, 128, 0.35) 100%);
}

.service-card--modern:nth-child(7) {
    background: linear-gradient(135deg, rgba(138, 11, 199, 0.28) 0%, rgba(245, 228, 253, 0.3) 100%);
}

.service-card--modern:nth-child(8) {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.3) 0%, rgba(138, 11, 199, 0.32) 100%);
}

.service-card--modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(165, 13, 238, 0.2);
    border-color: rgba(165, 13, 238, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.service-card--modern .service-card__icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(165, 13, 238, 0.3);
}

.service-card--modern .service-card__icon-wrapper i {
    font-size: var(--font-size-2xl);
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card--modern:hover .service-card__icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(165, 13, 238, 0.4);
}

.service-card--modern:hover .service-card__icon-wrapper i {
    transform: scale(1.1);
}

.service-card--modern h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.service-card--modern p {
    color: var(--color-text-secondary);
    line-height: 1.5;
    font-size: var(--font-size-sm);
    margin: 0 0 var(--spacing-md) 0;
}

.service-card__btn {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(138, 11, 199, 0.4);
    border-radius: 8px;
    color: color-mix(in srgb, var(--color-primary) 70%, white 30%);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
}

.service-card__btn:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(165, 13, 238, 0.3);
}

.service-card--ai {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.08) 0%, rgba(138, 11, 199, 0.08) 100%);
    border: 1px solid rgba(165, 13, 238, 0.2);
    position: relative;
    overflow: visible;
}

.service-card--ai::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card--ai:hover::after {
    opacity: 0.3;
}

.service-card__icon-wrapper--ai {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.3) 0%, rgba(138, 11, 199, 0.3) 100%);
    box-shadow: 0 8px 20px rgba(165, 13, 238, 0.2);
}

.service-card__icon-wrapper--ai i {
    color: var(--color-primary);
    filter: drop-shadow(0 2px 8px rgba(165, 13, 238, 0.4));
}

.service-card__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.9) 0%, rgba(249, 115, 22, 0.9) 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    z-index: 10;
}

.service-card--builder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.services-grid--ai {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.services-grid--single {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.services-grid--free {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
}

.service-card--free {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card--free:hover {
    transform: translateY(-4px);
    background: rgba(245, 228, 253, 0.05);
    border-color: rgba(165, 13, 238, 0.2);
}

.service-card__icon-wrapper--free {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, rgba(245, 228, 253, 0.2) 0%, rgba(165, 13, 238, 0.1) 100%);
}

.service-card__icon-wrapper--free i {
    color: var(--color-primary);
    font-size: var(--font-size-xl);
}

.service-card--free h4 {
    font-size: var(--font-size-base);
    font-weight: 500;
    margin: 0;
    color: var(--color-text);
}

@media (max-width: 968px) {
    .services-categories-row {
        grid-template-columns: 1fr;
    }

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

    .services-grid--free {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

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

/* ========================================
   Cometa IA Section - Modern App Style
   ======================================== */

.section--ai {
    background: linear-gradient(180deg, rgba(10, 10, 15, 1) 0%, rgba(10, 10, 15, 0.98) 50%, rgba(10, 10, 15, 1) 100%);
    position: relative;
    overflow: hidden;
}

.section--ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(165, 13, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.ai-products {
    position: relative;
    z-index: 1;
}

.ai-products__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
}

.ai-product-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(165, 13, 238, 0.2);
    border-radius: 24px;
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.ai-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.ai-product-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(165, 13, 238, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ai-product-card:hover .ai-product-card__glow {
    opacity: 1;
}

.ai-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(165, 13, 238, 0.4);
    box-shadow: 0 20px 60px rgba(165, 13, 238, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.ai-product-card--featured {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.15) 100%);
    border-color: rgba(165, 13, 238, 0.3);
    box-shadow: 0 10px 40px rgba(165, 13, 238, 0.2);
}

.ai-product-card--featured:hover {
    box-shadow: 0 25px 70px rgba(165, 13, 238, 0.4);
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.15) 0%, rgba(138, 11, 199, 0.2) 100%);
}

.ai-product-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.ai-product-card__header .ai-product-card__badge {
    position: absolute;
    top: -12px;
    right: -12px;
}

.ai-product-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(165, 13, 238, 0.4);
    position: relative;
    overflow: hidden;
}

.ai-product-card__icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 1;
    }
}

.ai-product-card__icon i {
    font-size: var(--font-size-3xl);
    color: white;
    position: relative;
    z-index: 1;
}

.ai-product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.9) 0%, rgba(249, 115, 22, 0.9) 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    z-index: 10;
}

/* Badge "Grátis" com sombra preta sutil */
.section--features .ai-product-card__badge[style*="16, 185, 129"],
.ai-product-card__badge[style*="16, 185, 129"] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ai-product-card__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ai-product-card__content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-product-card__content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-base);
    margin: 0;
}

.ai-product-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.ai-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(165, 13, 238, 0.1);
    border: 1px solid rgba(165, 13, 238, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.ai-feature-tag i {
    color: var(--color-primary);
    font-size: var(--font-size-xs);
}

.ai-product-card:hover .ai-feature-tag {
    background: rgba(165, 13, 238, 0.15);
    border-color: rgba(165, 13, 238, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .ai-products__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .ai-product-card {
        min-height: auto;
    }
}

/* ========================================
   Cometa Builder Section - Modern App Style
   ======================================== */

.section--builder {
    background: linear-gradient(180deg, rgba(10, 10, 15, 1) 0%, rgba(10, 10, 15, 0.98) 50%, rgba(10, 10, 15, 1) 100%);
    position: relative;
    overflow: hidden;
}

.section--builder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 11, 199, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.builder-showcase {
    position: relative;
    z-index: 1;
}

.builder-showcase__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
}

.builder-card {
    background: var(--gradient-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(138, 11, 199, 0.3);
    border-radius: 24px;
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(138, 11, 199, 0.3);
}

.builder-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 11, 199, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.builder-card:hover .builder-card__glow {
    opacity: 1;
}

.builder-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 11, 199, 0.5);
    box-shadow: 0 20px 60px rgba(138, 11, 199, 0.4);
    filter: brightness(1.1);
}

.builder-card__main {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.builder-card__header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.builder-card__header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin: 0;
    color: white;
    text-align: left;
}

.builder-card__header .intro-text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin: 0;
}

.builder-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.builder-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(138, 11, 199, 0.3);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.builder-card__icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: builderShimmer 3s ease-in-out infinite;
}

@keyframes builderShimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0.8;
    }
}

.builder-card:hover .builder-card__icon {
    background: var(--gradient-primary);
    box-shadow: 0 12px 32px rgba(138, 11, 199, 0.5);
    transform: scale(1.05);
}

.builder-card__icon i {
    font-size: var(--font-size-3xl);
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.builder-card__badges {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xs);
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.builder-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.builder-card:hover .builder-badge {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-4px);
}

.builder-card__content {
    position: relative;
    z-index: 1;
}

.builder-card__content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.builder-card__content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: var(--font-size-base);
    margin: 0;
}

.builder-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 1;
    margin-top: var(--spacing-xs);
}

.builder-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: var(--font-size-sm);
}

.builder-feature i {
    color: white;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.builder-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.builder-card:hover .builder-feature {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .builder-card__main {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .builder-card__header h2 {
        font-size: var(--font-size-2xl);
    }

    .builder-card__badges {
        justify-content: flex-start;
    }
}

/* ========================================
   Ecosystem Cards Section
   ======================================== */

.section--ecosystem-cards {
    padding: var(--spacing-2xl) 0 0 0;
    background: transparent;
    position: relative;
}

.ecosystem-cards {
    position: relative;
    z-index: 1;
}

.ecosystem-cards__container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    position: relative;
}

.ecosystem-cards__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 1) 100%);
    border-radius: 0;
}

.ecosystem-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, opacity 0.4s ease, filter 0.4s ease, visibility 0s linear 0.4s;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    max-width: 1150px;
    width: 100%;
    margin: 0 auto -60px auto;
    box-shadow: none;
    z-index: 1;
}

.ecosystem-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    z-index: -1;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 0 0 0.5px rgba(255, 255, 255, 0.1) inset;
}


.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 0;
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

.ecosystem-card:last-child {
    margin-bottom: 0;
}

.ecosystem-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.9) 0%, rgba(138, 11, 199, 0.9) 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(165, 13, 238, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ecosystem-card__image {
    width: 450px;
    min-width: 450px;
    height: auto;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
    padding: calc(var(--spacing-xl) * 1.5) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-card__image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: none;
    display: block;
    border-radius: 12px;
}

.ecosystem-card__content {
    padding: calc(var(--spacing-xl) * 1.5) var(--spacing-xl) calc(var(--spacing-xl) * 1.5) 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: center;
}

.ecosystem-card__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.ecosystem-card__header .ecosystem-card__icon {
    margin: 0;
    flex-shrink: 0;
}

.ecosystem-card__header .ecosystem-card__title {
    margin: 0;
    flex: 1;
}

.ecosystem-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(165, 13, 238, 0.15);
    border: 1px solid rgba(165, 13, 238, 0.3);
    border-radius: 50%;
    color: rgba(165, 13, 238, 1);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    transition: none;
    vertical-align: middle;
}

.ecosystem-card__icon .material-icons {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.ecosystem-card__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.3;
}

.ecosystem-card__description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.ecosystem-card__link {
    margin-top: var(--spacing-sm);
    align-self: flex-start;
}

@media (max-width: 968px) {
    .ecosystem-card {
        flex-direction: column;
    }
    
    .ecosystem-card__image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }
    
    .ecosystem-card__image img {
        min-height: 250px;
    }
}

/* Lightbox para imagens do ecossistema */
.ecosystem-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: var(--spacing-xl);
}

.ecosystem-lightbox--active {
    opacity: 1;
    visibility: visible;
}

.ecosystem-lightbox__content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-lightbox__image {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ecosystem-lightbox__close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-text-primary);
    font-size: var(--font-size-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.ecosystem-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.ecosystem-card__image img {
    cursor: default;
    transition: none;
}

@media (max-width: 768px) {
    .ecosystem-lightbox {
        padding: var(--spacing-md);
    }
    
    .ecosystem-lightbox__close {
        top: var(--spacing-md);
        right: var(--spacing-md);
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
    }
}

/* ========================================
   Free Tools Section - Modern App Style
   ======================================== */

.section--free-tools {
    background: linear-gradient(180deg, rgba(10, 10, 15, 1) 0%, rgba(245, 228, 253, 0.02) 50%, rgba(10, 10, 15, 1) 100%);
    position: relative;
    overflow: hidden;
}

.section--free-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 228, 253, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.free-tools {
    position: relative;
    z-index: 1;
}

.free-tools__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.free-tools__carousel {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-sm) 0;
    cursor: grab;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.free-tools__carousel.is-grabbing {
    cursor: grabbing;
}

.free-tools__grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: nowrap;
    min-width: max-content;
    margin-bottom: 0;
}

.free-tool-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(245, 228, 253, 0.2);
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    cursor: pointer;
    min-width: 240px;
    flex: 0 0 auto;
}

.free-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 228, 253, 0.1) 0%, rgba(165, 13, 238, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.free-tool-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 228, 253, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.free-tool-card:hover::before {
    opacity: 1;
}

.free-tool-card:hover::after {
    opacity: 1;
}

.free-tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(165, 13, 238, 0.4);
    box-shadow: 0 15px 40px rgba(165, 13, 238, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.free-tool-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 228, 253, 0.3) 0%, rgba(165, 13, 238, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(165, 13, 238, 0.2);
}

.free-tool-card:hover .free-tool-card__icon {
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(165, 13, 238, 0.4);
    transform: scale(1.1);
}

.free-tool-card__icon i {
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.free-tool-card:hover .free-tool-card__icon i {
    color: white;
}

.free-tool-card h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.free-tool-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(245, 228, 253, 0.3);
    border: 1px solid rgba(165, 13, 238, 0.3);
    color: var(--color-primary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: var(--spacing-xs);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(165, 13, 238, 0.2);
}

.free-tool-card:hover .free-tool-card__badge {
    background: rgba(245, 228, 253, 0.4);
    border-color: rgba(165, 13, 238, 0.4);
    box-shadow: 0 3px 12px rgba(165, 13, 238, 0.3);
}

.free-tools__cta {
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.btn--free {
    background: var(--gradient-primary);
    box-shadow: 0 8px 24px rgba(165, 13, 238, 0.4);
    position: relative;
    overflow: hidden;
}

.btn--free::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.btn--free:hover {
    box-shadow: 0 12px 32px rgba(165, 13, 238, 0.5);
    transform: translateY(-2px);
}

.free-tools__cta-text {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.free-tools__cta-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(21, 128, 61, 0.25) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(34, 197, 94, 0.9);
    font-size: var(--font-size-xs);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.free-tools__cta-badge .material-icons {
    font-size: 14px;
}

@media (max-width: 968px) {
    .free-tools__grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: var(--spacing-sm);
    }

    .free-tool-card {
        min-height: 160px;
        padding: var(--spacing-md);
    }
}

@media (max-width: 640px) {
    .free-tools__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Benefits Section
   ======================================== */

.section--benefits {
    background: var(--color-bg-secondary);
}

.benefits-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(165, 13, 238, 0.3);
}

.benefit-card__icon {
    font-size: var(--font-size-3xl);
    color: var(--color-purple);
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.benefit-card p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ========================================
   Cases Section
   ======================================== */

.cases {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.case-card {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.case-card header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.case-card header img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.case-card header strong {
    display: block;
    font-size: var(--font-size-lg);
    margin-bottom: 4px;
}

.case-card header small {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.case-card p {
    font-style: italic;
    margin: 0;
    color: var(--color-text-secondary);
}

/* ========================================
   Process Section
   ======================================== */

.section--process {
    background: var(--color-bg-secondary);
}

.process-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.process-card {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    position: relative;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.process-card h3 {
    margin-bottom: var(--spacing-xs);
}

.process-card p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ========================================
   Offer Section
   ======================================== */

.section--offer {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.1) 100%);
    border-radius: var(--radius-xl);
    margin: var(--spacing-xl) var(--spacing-md);
}

.urgency-bar {
    background: rgba(165, 13, 238, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    margin: var(--spacing-md) auto;
    max-width: 420px;
    font-size: var(--font-size-sm);
    color: var(--color-purple);
    font-weight: 600;
    text-align: center;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.pricing-card {
    background: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--highlight {
    border: 2px solid var(--color-purple);
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.1) 100%);
    position: relative;
}

.pricing-card--highlight::before {
    content: 'Mais Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.pricing-card header {
    margin-bottom: 0;
}

.pricing-card header h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xs);
}

.pricing-card header p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-3xl);
    font-weight: 800;
}

.pricing-card__price .currency {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-muted);
}

.pricing-card__price .value {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card__price .period {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-text-muted);
}

.pricing-card__features {
    flex: 1;
    margin-bottom: var(--spacing-md);
}

.pricing-card__features li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: 700;
}

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

/* ========================================
   Guarantee Section
   ======================================== */

.section--guarantee {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-xl);
    margin: var(--spacing-xl) var(--spacing-md);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding-top: var(--spacing-lg);
}

.faq-item {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-surface-hover);
}

.faq-question i {
    transition: transform var(--transition-base);
    color: var(--color-purple);
}

.faq-item[aria-expanded="true"] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    padding-top: var(--spacing-sm);
}

.faq-item[aria-expanded="true"] .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    margin: 0;
    color: var(--color-text-secondary);
}

/* ========================================
   CTA Section
   ======================================== */

.section--cta {
    background: var(--color-bg-secondary);
}

.cta {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.cta__content h2 {
    margin-bottom: var(--spacing-md);
}

.cta__form-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
}

.cta__form {
    margin-top: var(--spacing-lg);
}

.field {
    margin-bottom: var(--spacing-md);
}

.field--full {
    grid-column: 1 / -1;
}

.cta__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.field label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
}

.field input,
.field select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-fast);
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(165, 13, 238, 0.1);
}

.field input::placeholder {
    color: var(--color-text-muted);
}

.form-microcopy {
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-align: center;
}

.form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.form-success p {
    margin: 0;
    color: #4ade80;
}

.cta__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal {
    width: 100%;
    max-width: 420px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.terminal__header {
    background: var(--color-bg-tertiary);
    padding: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-xs);
}

.terminal__header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.terminal__header span:nth-child(1) {
    background: #ef4444;
}

.terminal__header span:nth-child(2) {
    background: #f59e0b;
}

.terminal__header span:nth-child(3) {
    background: #10b981;
}

.terminal__body {
    padding: var(--spacing-lg);
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-sm);
}

.terminal__body .line {
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-secondary);
}

.terminal__body .line::before {
    content: '$ ';
    color: var(--color-purple);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl) var(--spacing-md);
}

.footer__grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__grid > div h4 {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
}

.footer__grid .nav__logo {
    margin-bottom: var(--spacing-md);
}

.footer__grid ul {
    list-style: none;
}

.footer__grid ul li {
    margin-bottom: var(--spacing-xs);
}

.footer__grid ul li a {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
    transition: color var(--transition-fast);
}

.footer__grid ul li a:hover {
    color: var(--color-purple);
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.footer__contact i,
.footer__contact-icon {
    color: var(--color-purple);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-block;
}

.footer__social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.footer__social a:hover {
    background: var(--color-purple);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.footer__social a:hover svg {
    fill: rgba(255, 255, 255, 0.9);
}

.footer__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer__bottom {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.footer__bottom a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__bottom a:hover {
    color: var(--color-purple);
}

/* ========================================
   Ícones com Gradiente
   ======================================== */

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
}

.icon--gradient {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

/* ========================================
   Badges
   ======================================== */

.badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.badge--primary {
    background: rgba(165, 13, 238, 0.2);
    color: var(--color-purple);
}

.badge--success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.badge--warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero__title {
        font-size: var(--font-size-4xl);
    }
    
    .cta {
        grid-template-columns: 1fr;
    }
    
    .nav__mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }
    
    .hero__layout {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero__columns {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero__column--left,
    .hero__column--right {
        grid-column: 1;
    }
    
    .hero__content {
        align-items: center;
    }
    
    .hero__main {
        text-align: center;
        align-items: center;
    }
    
    .hero__title,
    .hero__subtitle,
    .hero__microcopy {
        text-align: center;
    }
    
    .hero__benefits {
        justify-content: center;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__notifications {
        align-items: center;
        min-height: auto;
    }
    
    .hero__notification-card {
        max-width: 100%;
    }
    
    .nav__surface {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .nav__container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: none;
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md);
    }
    
    .nav--open .nav__container {
        display: block;
    }
    
    .nav__container .nav__links {
        background: transparent;
        border: none;
        padding: 0;
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: stretch;
    }
    
    .nav__mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: var(--spacing-sm);
        padding: var(--spacing-md);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        display: none;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    
    .nav__item--has-mega[aria-expanded="true"] .nav__mega-menu {
        transform: none;
        display: block;
    }
    
    .nav__item--has-mega:hover .nav__mega-menu {
        display: none;
    }
    
    .nav__mega-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .nav__mega-item {
        padding: var(--spacing-md);
    }

    .nav__link {
        padding: var(--spacing-sm) var(--spacing-md);
        text-align: left;
    }
    
    .nav__link--active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__cta {
        display: none;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero__columns {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero__column--left {
        text-align: center;
    }
    
    .hero__content {
        align-items: center;
        text-align: center;
    }
    
    .hero__main {
        text-align: center;
        align-items: center;
    }
    
    .hero__title {
        font-size: var(--font-size-3xl);
        text-align: center;
    }
    
    .hero__subtitle {
        text-align: center;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__microcopy {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero__visual {
        order: -1;
    }
    
    .hero__tagline {
        text-align: center;
    }
    
    .hero__tagline p {
        margin: 0 auto;
    }
    
    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .hero__stat-social {
        grid-column: 1 / -1;
    }
    
    .section__header h2 {
        font-size: var(--font-size-3xl);
    }
    
    .services-grid,
    .benefits-grid,
    .value-grid,
    .pains-grid,
    .process-grid,
    .pricing {
        grid-template-columns: 1fr;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .cta__form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: var(--font-size-2xl);
    }
    
    .hero {
        min-height: 80vh;
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
    }
    
    .hero__stat-social {
        grid-column: 1;
    }
    
    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
}

/* ========================================
   Animações e Efeitos
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   Ecossistema
   ======================================== */

.section--ecosystem {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
    position: relative;
    overflow: visible;
}

.section--ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 1) 100%);
    z-index: 0;
    pointer-events: none;
}

.ecosystem {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ecosystem__container {
    position: relative;
    min-height: 100vh;
    padding: var(--spacing-xl) 0;
    padding-top: 0;
}

/* Grid de 3 colunas: Itens | Centro | Itens */
.ecosystem__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Colunas */
.ecosystem__column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
}

.ecosystem__column--left {
    align-items: flex-end;
    text-align: right;
}

.ecosystem__column--center {
    align-items: center;
    text-align: center;
    justify-content: center;
    min-width: 120px;
    width: auto;
    padding: var(--spacing-xl) 0;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    z-index: 10;
    height: fit-content;
    overflow: visible;
}

.ecosystem__column--right {
    align-items: flex-start;
    text-align: left;
}

/* Item do ecossistema */
.ecosystem__item {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 320px;
    align-items: flex-start;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    overflow: visible;
}

/* Spotlight fixo leve nas laterais direcionado ao centro */
.ecosystem__item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 150px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(165, 13, 238, 0.15) 0%, rgba(138, 11, 199, 0.1) 50%, transparent 80%);
    opacity: 0.5;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(15px);
    will-change: opacity;
}

/* Cards da esquerda - spotlight na direita (direcionado ao centro) */
.ecosystem__column--left .ecosystem__item::before {
    right: -20px;
    left: auto;
}

/* Cards da direita - spotlight na esquerda (direcionado ao centro) */
.ecosystem__column--right .ecosystem__item::before {
    left: -20px;
    right: auto;
}

.ecosystem__item:hover::before {
    opacity: 0.7;
}

/* Overlay glass */
.ecosystem__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.ecosystem__column--left .ecosystem__item {
    flex-direction: row-reverse;
    text-align: right;
}

.ecosystem__column--right .ecosystem__item {
    flex-direction: row;
    text-align: left;
}

.ecosystem__item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Cards 2 e 3 de cada coluna lateral mais afastados horizontalmente do centro (para fora) */
.ecosystem__column--left .ecosystem__item-link:nth-child(2),
.ecosystem__column--left .ecosystem__item-link:nth-child(3) {
    margin-right: 120px;
}

.ecosystem__column--right .ecosystem__item-link:nth-child(2),
.ecosystem__column--right .ecosystem__item-link:nth-child(3) {
    margin-left: 120px;
}

.ecosystem__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 48px rgba(165, 13, 238, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.15) inset,
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 60px rgba(165, 13, 238, 0.15);
    transform: translateY(-2px);
}

.ecosystem__item-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.ecosystem__item:hover .ecosystem__item-icon {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(165, 13, 238, 0.5);
    box-shadow: 
        0 8px 24px rgba(165, 13, 238, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 30px rgba(165, 13, 238, 0.3);
}

.ecosystem__item-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    position: relative;
    z-index: 1;
    flex: 1;
}

.ecosystem__item-label {
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.ecosystem__item-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
    opacity: 0.85;
}

/* Nós (pontinhos) de conexão nos cards */
.ecosystem__item-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(165, 13, 238, 1) 0%, rgba(138, 11, 199, 0.9) 50%, rgba(165, 13, 238, 1) 100%);
    border: none;
    box-shadow: 
        0 0 15px rgba(165, 13, 238, 0.8),
        0 0 30px rgba(165, 13, 238, 0.6),
        0 0 45px rgba(165, 13, 238, 0.4),
        0 0 60px rgba(138, 11, 199, 0.3);
    z-index: 100;
    pointer-events: none;
}

.ecosystem__column--left .ecosystem__item-node {
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    animation: pulseNodeLeft 2s ease-in-out infinite;
}

.ecosystem__column--right .ecosystem__item-node {
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    animation: pulseNodeRight 2s ease-in-out infinite;
}

@keyframes pulseNodeLeft {
    0%, 100% {
        opacity: 0.9;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes pulseNodeRight {
    0%, 100% {
        opacity: 0.9;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

/* SVG com linhas conectando */
.ecosystem__lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.ecosystem__lines path {
    stroke: url(#lineGradient);
    stroke-width: 2;
    fill: none;
    opacity: 0.4;
    transition: opacity 0.3s ease-out;
}

.ecosystem__lines path.ecosystem-line {
    stroke: url(#lineGradient);
    stroke-width: 2;
    opacity: 0.4;
    animation: linePulse 3s ease-in-out infinite;
}

.ecosystem__lines path:nth-of-type(1) {
    animation-delay: 0.1s, 3.1s;
}

.ecosystem__lines path:nth-of-type(2) {
    animation-delay: 0.2s, 3.2s;
}

.ecosystem__lines path:nth-of-type(3) {
    animation-delay: 0.3s, 3.3s;
}

.ecosystem__lines path:nth-of-type(4) {
    animation-delay: 0.4s, 3.4s;
}

.ecosystem__lines path:nth-of-type(5) {
    animation-delay: 0.5s, 3.5s;
}

.ecosystem__lines path:nth-of-type(6) {
    animation-delay: 0.6s, 3.6s;
}

.ecosystem__lines path:nth-of-type(7) {
    animation-delay: 0.7s, 3.7s;
}

.ecosystem__lines path:nth-of-type(8) {
    animation-delay: 0.8s, 3.8s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.4;
        stroke-width: 2;
    }
    50% {
        opacity: 0.7;
        stroke-width: 3;
    }
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.4;
        stroke-width: 2;
    }
    50% {
        opacity: 0.8;
        stroke-width: 2.5;
    }
}

.ecosystem__lines path.ecosystem-line:nth-of-type(1) {
    animation-delay: 0s;
}

.ecosystem__lines path.ecosystem-line:nth-of-type(2) {
    animation-delay: 0.4s;
}

.ecosystem__lines path.ecosystem-line:nth-of-type(3) {
    animation-delay: 0.8s;
}

.ecosystem__lines path.ecosystem-line:nth-of-type(4) {
    animation-delay: 1.2s;
}

.ecosystem__lines path.ecosystem-line:nth-of-type(5) {
    animation-delay: 1.6s;
}

.ecosystem__lines path.ecosystem-line:nth-of-type(6) {
    animation-delay: 2s;
}

.ecosystem__lines path.ecosystem-line:nth-of-type(7) {
    animation-delay: 2.4s;
}

.ecosystem__lines path.ecosystem-line:nth-of-type(8) {
    animation-delay: 2.8s;
}

.ecosystem__item:hover ~ .ecosystem__lines path[data-item],
.ecosystem__lines path[data-item]:hover {
    opacity: 0.7;
}

/* Centro - Cometa Marketing */
.ecosystem__core {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 5;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    width: auto;
    min-width: 100px;
    overflow: visible;
}

.ecosystem__core-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border: 2px solid rgba(165, 13, 238, 0.4);
    border-radius: 50%;
    color: rgba(255, 255, 255, 1);
    font-size: var(--font-size-3xl);
    box-shadow: 
        0 8px 32px rgba(165, 13, 238, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 60px rgba(165, 13, 238, 0.2);
    position: relative;
    z-index: 2;
}

.ecosystem__core-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    border-radius: 50%;
    filter: brightness(0) invert(1);
}

/* Nós de conexão no centro - um à esquerda e um à direita do ícone */
.ecosystem__core-node {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(165, 13, 238, 1) 0%, rgba(138, 11, 199, 1) 50%, rgba(165, 13, 238, 1) 100%);
    border: none;
    box-shadow: 
        0 0 15px rgba(165, 13, 238, 0.8),
        0 0 30px rgba(165, 13, 238, 0.6),
        0 0 45px rgba(165, 13, 238, 0.4),
        0 0 60px rgba(138, 11, 199, 0.3);
    z-index: 200;
    pointer-events: none;
    animation: pulseCoreNode 2s ease-in-out infinite;
}

.ecosystem__core-node--left {
    left: 5px;
    transform: translateY(-50%);
}

.ecosystem__core-node--right {
    right: 5px;
    transform: translateY(-50%);
}

@keyframes pulseCoreNode {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-50%) scale(1.3);
    }
}

.ecosystem__core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(165, 13, 238, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.ecosystem__core-label {
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-align: center;
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.15) 0%, rgba(138, 11, 199, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

/* Mensagem final */
.ecosystem__message {
    position: relative;
    text-align: center;
    z-index: 4;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    width: 100%;
}

.ecosystem__message-text {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    margin: 0;
}

.ecosystem__message-highlight {
    color: var(--color-text-primary);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(165, 13, 238, 1) 0%, rgba(138, 11, 199, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 1024px) {
    .ecosystem__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .ecosystem__column--left,
    .ecosystem__column--right {
        align-items: center;
        text-align: center;
    }
    
    .ecosystem__column--left .ecosystem__item,
    .ecosystem__column--right .ecosystem__item {
        align-items: center;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .ecosystem__grid {
        gap: var(--spacing-lg);
    }
    
    .ecosystem__column {
        gap: var(--spacing-md);
    }
    
    .ecosystem__item {
        max-width: 100%;
    }
    
    .ecosystem__item-icon {
        width: 56px;
        height: 56px;
        font-size: var(--font-size-lg);
    }
    
    .ecosystem__item-label {
        font-size: var(--font-size-sm);
    }
    
    .ecosystem__item-description {
        font-size: var(--font-size-xs);
    }
    
    .ecosystem__core-icon {
        width: 64px;
        height: 64px;
        font-size: var(--font-size-2xl);
    }
    
    .ecosystem__core-label {
        font-size: var(--font-size-base);
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .ecosystem__message-text {
        font-size: var(--font-size-base);
    }
    
    .ecosystem__column--center {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .ecosystem__column {
        gap: var(--spacing-sm);
    }
    
    .ecosystem__item-icon {
        width: 48px;
        height: 48px;
        font-size: var(--font-size-base);
    }
    
    .ecosystem__item-label {
        font-size: var(--font-size-xs);
    }
    
    .ecosystem__item-description {
        font-size: 11px;
    }
}

/* Scroll suave para âncoras */

/* Estilo para elementos com gradiente de texto */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Botão Voltar ao Topo
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a50dee 0%, #8a0bc7 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(165, 13, 238, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    isolation: isolate;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(165, 13, 238, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b96edf 0%, #a50dee 100%);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top .material-icons {
    font-size: 24px;
    color: #ffffff;
    z-index: 1;
    position: relative;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .back-to-top .material-icons {
        font-size: 20px;
    }
}

/* ========================================
   SERVICE PAGES STYLES
   ======================================== */

/* Service Hero - Centralizado */
.service-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-xl) * 2) var(--spacing-md);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0.98) 100%);
}

.service-hero__spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(165, 13, 238, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.service-hero__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.service-hero__badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.service-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 100px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: rgba(165, 13, 238, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(165, 13, 238, 0.2);
}

.service-hero__badge i {
    font-size: 16px;
    color: rgba(124, 10, 178, 1);
}

.service-hero__badge--ai {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.15) 0%, rgba(138, 11, 199, 0.15) 100%);
}

.service-hero__badge--ai i {
    color: #8a0bc7;
}

.service-hero__badge--new {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.2);
}

.service-hero__badge--new i {
    color: rgba(4, 120, 87, 1);
}

.service-hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-primary);
    margin: 0;
}

.service-hero__subtitle {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    margin-top: calc(var(--spacing-md) * -0.4);
}

.service-hero__description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0;
    margin-top: calc(var(--spacing-md) * -0.4);
}

.service-hero__actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: calc(var(--spacing-md) * -0.3);
}

.btn--large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
}

.btn--glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(165, 13, 238, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(165, 13, 238, 0.5);
    }
}

.service-hero__trust {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: calc(var(--spacing-md) * -0.3);
}

.service-hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.service-hero__trust-item i {
    font-size: 18px;
    color: #10b981;
}

.service-hero__decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.service-hero__svg {
    position: absolute;
    opacity: 0.5;
}

.service-hero__svg--1 {
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    animation: rotateDecoration 30s linear infinite;
}

.service-hero__svg--2 {
    bottom: 10%;
    left: -5%;
    width: 200px;
    height: 200px;
    animation: rotateDecoration 25s linear infinite reverse;
}

@keyframes rotateDecoration {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.service-hero__glow--left {
    bottom: -20%;
    left: -10%;
    background: rgba(165, 13, 238, 0.3);
}

.service-hero__glow--right {
    top: -20%;
    right: -10%;
    background: rgba(138, 11, 199, 0.2);
}

/* Reality Section - 2 Colunas */
.section--reality {
    background: linear-gradient(180deg, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.eyebrow--warning {
    color: #f59e0b !important;
}

.eyebrow--success {
    color: #10b981 !important;
}

.reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.reality-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reality-visual__phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.reality-visual__phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #0a0a0f;
    border-radius: 20px;
    z-index: 10;
}

.reality-visual__screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.reality-visual__header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple-dark) 100%);
    padding: 50px 20px 20px;
    text-align: center;
}

.reality-visual__header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.reality-visual__header-icon i {
    font-size: 28px;
    color: white;
}

.reality-visual__header-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.reality-visual__content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reality-visual__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0.5;
}

.reality-visual__empty i {
    font-size: 48px;
    color: #ccc;
}

.reality-visual__empty span {
    font-size: 12px;
    color: #999;
    text-align: center;
}

.reality-visual__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px;
}

.reality-visual__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.reality-visual__dot--active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* Floating elements around phone */
.reality-visual__float {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    animation: floatElement 3s ease-in-out infinite;
}

.reality-visual__float i {
    font-size: 20px;
}

.reality-visual__float--1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.reality-visual__float--1 i {
    color: #f59e0b;
}

.reality-visual__float--2 {
    top: 40%;
    right: -25%;
    animation-delay: 0.5s;
}

.reality-visual__float--2 i {
    color: #ef4444;
}

.reality-visual__float--3 {
    bottom: 20%;
    left: -15%;
    animation-delay: 1s;
}

.reality-visual__float--3 i {
    color: #8b5cf6;
}

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

.reality-content {
    max-width: 100%;
}

.reality-content .eyebrow {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.reality-content h2 {
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
}

.reality-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.reality-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reality-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-purple-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reality-step:hover {
    transform: translateX(8px);
    border-color: rgba(165, 13, 238, 0.2);
    box-shadow: 0 8px 30px rgba(165, 13, 238, 0.1);
}

.reality-step:hover::before {
    opacity: 1;
}

.reality-step__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.reality-step__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reality-step__icon i {
    font-size: 20px;
    color: var(--color-primary);
}

.reality-step__content p {
    margin: 0;
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    line-height: 1.5;
}

.reality-conclusion {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(239, 68, 68, 0.08) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(245, 158, 11, 0.15);
    position: relative;
    overflow: hidden;
}

.reality-conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
}

.reality-conclusion__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reality-conclusion__icon i {
    font-size: 24px;
    color: #d97706;
}

.reality-conclusion p {
    margin: 0;
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .reality-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .reality-visual {
        order: -1;
    }
    
    .reality-visual__phone {
        width: 220px;
        height: 440px;
    }
    
    .reality-visual__float {
        display: none;
    }
}

/* Problem Section */
.section--problem {
    background: linear-gradient(180deg, rgba(254, 242, 242, 1) 0%, rgba(254, 226, 226, 0.95) 50%, rgba(254, 242, 242, 1) 100%);
    position: relative;
    overflow: hidden;
}

.section--problem::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-xl) * 1.5);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.problem-content {
    position: relative;
    z-index: 1;
}

.problem-content .eyebrow {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
    color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.15) !important;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.problem-content h2 {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.problem-intro {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.problem-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.problem-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.problem-card:hover {
    transform: translateX(8px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.1);
}

.problem-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-card__icon i {
    font-size: 24px;
    color: #ef4444 !important;
}

.problem-card__content h4 {
    margin: 0 0 4px 0;
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-primary);
}

.problem-card__content p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.problem-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.problem-visual__illustration {
    width: 100%;
    max-width: 450px;
    position: relative;
}

.problem-visual__illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Problem Visual Card Style */
.problem-visual__card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.problem-visual__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 100%);
}

.problem-visual__card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-visual__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-visual__card-icon i {
    font-size: 24px;
    color: #ef4444;
}

.problem-visual__card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-primary);
}

.problem-visual__items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.problem-visual__item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(239, 68, 68, 0.03);
    border-radius: var(--radius-md);
}

.problem-visual__item i {
    font-size: 18px;
    color: #ef4444;
}

.problem-visual__item span {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

@media (max-width: 968px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-visual {
        order: -1;
    }
}

/* Solution Section */
.section--solution {
    background: linear-gradient(180deg, rgba(248, 249, 250, 1) 0%, rgba(245, 228, 253, 0.15) 50%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.section--solution::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(165, 13, 238, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.section--solution .section__header {
    position: relative;
    z-index: 1;
}

.section--solution .section__header h2 {
    font-size: var(--font-size-4xl);
    color: var(--color-text-primary);
}

.solution-content {
    max-width: 1000px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.solution-vision {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: calc(var(--spacing-xl) * 1.5);
    border: 1px solid rgba(165, 13, 238, 0.15);
    box-shadow: 
        0 25px 80px rgba(165, 13, 238, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.solution-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-purple-dark) 50%, #10b981 100%);
}

.solution-vision__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(165, 13, 238, 0.1);
}

.solution-vision__header i {
    font-size: 40px;
    color: var(--color-primary) !important;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.1) 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.solution-vision__header h3 {
    margin: 0;
    font-size: var(--font-size-2xl);
    color: var(--color-text-primary);
    font-weight: 700;
}

.solution-vision__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.solution-vision__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.03) 0%, rgba(138, 11, 199, 0.05) 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(165, 13, 238, 0.08);
    position: relative;
    overflow: hidden;
}

.solution-vision__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-vision__item:hover {
    transform: translateY(-8px);
    border-color: rgba(165, 13, 238, 0.3);
    box-shadow: 0 15px 40px rgba(165, 13, 238, 0.2);
}

.solution-vision__item:hover::before {
    opacity: 1;
}

.solution-vision__item i {
    font-size: 40px;
    color: var(--color-primary) !important;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.solution-vision__item:hover i {
    color: var(--color-primary) !important;
}

.solution-vision__item span {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.solution-vision__item:hover span {
    color: var(--color-text-primary);
}

@media (max-width: 768px) {
    .solution-vision__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-vision__conclusion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(165, 13, 238, 0.1);
    box-shadow: 0 10px 40px rgba(165, 13, 238, 0.08);
}

.solution-vision__conclusion-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple-dark) 100%);
    box-shadow: 0 8px 25px rgba(165, 13, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-vision__conclusion-icon i {
    font-size: 32px;
    color: white;
}

.solution-vision__conclusion p {
    margin: 0;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    font-weight: 500;
}

.solution-vision__conclusion p strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Steps Section */
.section--steps {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
    position: relative;
    overflow: hidden;
}

.section--steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(165, 13, 238, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

/* Linha conectora entre os steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-purple-dark) 33%, 
        #8b5cf6 66%, 
        #10b981 100%);
    border-radius: 2px;
    z-index: 0;
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: calc(var(--spacing-xl) * 1.2) var(--spacing-lg) var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(165, 13, 238, 0.18);
    border-color: rgba(165, 13, 238, 0.25);
}

.step-card__number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary) !important;
    color: white !important;
    font-size: var(--font-size-xl);
    font-weight: 800;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(165, 13, 238, 0.4),
        0 0 0 4px white;
    z-index: 2;
}

.step-card__icon {
    width: 80px;
    height: 80px;
    margin: var(--spacing-lg) auto var(--spacing-md);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.08) 0%, rgba(138, 11, 199, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(165, 13, 238, 0.1);
}

.step-card:hover .step-card__icon {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.15) 0%, rgba(138, 11, 199, 0.15) 100%);
    border-color: rgba(165, 13, 238, 0.2);
    transform: scale(1.05);
}

.step-card__icon i {
    font-size: 40px;
    color: var(--color-primary) !important;
}

.step-card__title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-sm) 0;
}

.step-card__description {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
}

.steps-conclusion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(165, 13, 238, 0.1);
    box-shadow: 0 10px 40px rgba(165, 13, 238, 0.08);
}

.steps-conclusion__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple-dark) 100%);
    box-shadow: 0 8px 25px rgba(165, 13, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.steps-conclusion__icon i {
    font-size: 32px;
    color: white;
}

.steps-conclusion p {
    margin: 0;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    font-weight: 500;
}

.steps-conclusion p strong {
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto var(--spacing-xl);
    }
}

/* Features Section - Using ai-product-card style */
.section--features {
    background: linear-gradient(180deg, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
    padding: 0 var(--spacing-md);
}

/* Feature cards now use ai-product-card styles */
.feature-card.ai-product-card {
    min-height: 280px;
}

/* Override ai-product-card styles for light theme in features section */
[data-theme="light"] .section--features .ai-product-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

[data-theme="light"] .section--features .ai-product-card:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(165, 13, 238, 0.25);
    box-shadow: 0 20px 60px rgba(165, 13, 238, 0.15);
}

[data-theme="light"] .section--features .ai-product-card--featured {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.05) 0%, rgba(138, 11, 199, 0.08) 100%);
    border-color: rgba(165, 13, 238, 0.2);
    box-shadow: 0 10px 40px rgba(165, 13, 238, 0.1);
}

[data-theme="light"] .section--features .ai-product-card--featured:hover {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.08) 0%, rgba(138, 11, 199, 0.12) 100%);
    box-shadow: 0 25px 70px rgba(165, 13, 238, 0.2);
}

/* Adjust badge position for features section */
.section--features .ai-product-card__header .ai-product-card__badge {
    position: absolute;
    top: -12px;
    right: -12px;
}

/* Adjust content text colors for light theme */
[data-theme="light"] .section--features .ai-product-card__content h3 {
    color: var(--color-text-primary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

[data-theme="light"] .section--features .ai-product-card__content p {
    color: var(--color-text-secondary);
}

/* Audience Section */
.section--audience {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 228, 253, 0.15) 50%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.section--audience::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(165, 13, 238, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.section--audience .section__header {
    position: relative;
    z-index: 1;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.audience-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-purple-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(165, 13, 238, 0.15);
    border-color: rgba(165, 13, 238, 0.25);
    background: rgba(255, 255, 255, 0.98);
}

.audience-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 1px solid rgba(165, 13, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(165, 13, 238, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.audience-card:hover .audience-card__icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(165, 13, 238, 0.4);
}

.audience-card__icon i {
    font-size: 40px;
    color: white !important;
    position: relative;
    z-index: 1;
}

.audience-card p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

.audience-card strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Comparison Section */
.section--comparison {
    background: linear-gradient(180deg, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.comparison-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: var(--spacing-xl) auto 0;
    padding: 0 var(--spacing-md);
}

.comparison-card {
    flex: 1;
    max-width: 400px;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.comparison-card--before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-card--after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.comparison-card__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.comparison-card--before .comparison-card__header i {
    font-size: 28px;
    color: #ef4444;
}

.comparison-card--after .comparison-card__header i {
    font-size: 28px;
    color: #10b981;
}

.comparison-card__header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0;
}

.comparison-card--before .comparison-card__header h3 {
    color: #ef4444;
}

.comparison-card--after .comparison-card__header h3 {
    color: #10b981;
}

.comparison-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.comparison-card__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.comparison-card--before .comparison-card__list li i {
    color: #ef4444;
    font-size: 20px;
    margin-top: 2px;
}

.comparison-card--after .comparison-card__list li i {
    color: #10b981;
    font-size: 20px;
    margin-top: 2px;
}

.comparison-card__list li span {
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    line-height: 1.5;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    flex-shrink: 0;
}

.comparison-divider i {
    font-size: 32px;
    color: var(--color-primary);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

/* Benefits Section (service page) */
.section--benefits .benefits-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: var(--spacing-xl) auto var(--spacing-xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: rgba(165, 13, 238, 0.2);
    box-shadow: 0 10px 30px rgba(165, 13, 238, 0.1);
}

.benefit-item__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item__icon i {
    font-size: 32px;
    color: var(--color-primary) !important;
}

.benefit-item__content p {
    margin: 0;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    line-height: 1.6;
}

.benefits-conclusion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(165, 13, 238, 0.1);
    box-shadow: 0 10px 40px rgba(165, 13, 238, 0.08);
}

.benefits-conclusion__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple-dark) 100%);
    box-shadow: 0 8px 25px rgba(165, 13, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefits-conclusion__icon i {
    font-size: 32px;
    color: white;
}

.benefits-conclusion p {
    margin: 0;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    font-weight: 500;
}

.benefits-conclusion p strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Pricing Section Improvements */
.section--pricing {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

/* Seletor de Período */
.pricing-period-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.period-selector-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.period-selector-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(165, 13, 238, 0.05);
    transform: translateY(-2px);
}

.period-selector-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(165, 13, 238, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
    padding: 0 var(--spacing-md);
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(165, 13, 238, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(165, 13, 238, 0.15);
    border-color: rgba(165, 13, 238, 0.2);
}

.pricing-card--highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 228, 253, 0.3) 100%);
    border-color: var(--color-primary);
    border-width: 2px;
    box-shadow: 0 8px 30px rgba(165, 13, 238, 0.2);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-card--highlight::before {
    background: var(--gradient-primary);
    opacity: 1;
}

.pricing-card--highlight:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 0 35px 70px rgba(165, 13, 238, 0.25);
}

.pricing-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: var(--gradient-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(165, 13, 238, 0.3);
    z-index: 2;
}

.pricing-card header {
    text-align: left;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.pricing-card header h3 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.pricing-card--highlight header h3 {
    color: var(--color-text-primary);
}

.pricing-card header p {
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

.pricing-card--highlight header p {
    color: var(--color-text-primary);
}

.pricing-card__credits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700 !important;
    color: var(--color-primary) !important;
}

.pricing-card__credits i {
    font-size: 20px;
    color: var(--color-primary);
}

.pricing-card__price {
    text-align: left;
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card__price .currency {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-secondary);
    vertical-align: top;
    margin-right: 4px;
}

.pricing-card__price .value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-primary);
    line-height: 1;
    display: inline-block;
}

.pricing-card__price .value-integer {
    display: inline-block;
}

.pricing-card__price .value-decimal {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    vertical-align: top;
    margin-top: 0.1em;
    margin-left: -0.15em;
}

.pricing-card--highlight .pricing-card__price .value {
    color: var(--color-text-primary);
}

.pricing-card--highlight .pricing-card__price .value-decimal {
    color: var(--color-text-primary);
}

.pricing-card__price .period {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    font-weight: 400;
    margin-left: 4px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
    flex-grow: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 4px 0 4px 0;
    padding-left: 36px;
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    line-height: 1.5;
    position: relative;
}

.pricing-card__features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 20px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
}


.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
}

/* CTA Final Section */
.section--cta-final {
    background: var(--color-primary) !important;
    padding: calc(var(--spacing-xl) * 2) var(--spacing-md);
}

.cta-final {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-final__content h2 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin: 0 0 var(--spacing-md) 0;
}

.cta-final__content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 var(--spacing-xl) 0;
}

.cta-final__actions {
    margin-bottom: var(--spacing-lg);
}

.cta-final__actions .btn--primary {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 14px var(--spacing-md);
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #c56de8 0%, #a855d6 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(197, 109, 232, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-final__actions .btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.cta-final__actions .btn--primary:hover {
    background: linear-gradient(135deg, #d48ef0 0%, #b96edf 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 109, 232, 0.5);
}

.cta-final__actions .btn--primary:hover::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.cta-final__actions .btn--primary span,
.cta-final__actions .btn--primary i {
    position: relative;
    z-index: 1;
}

.cta-final__actions .btn--primary::after {
    display: none;
}

.cta-final__trust {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-final__trust span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

.cta-final__trust i {
    font-size: 16px;
    color: #10b981;
}

.cta-final__decoration {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.1;
    pointer-events: none;
}

.cta-final__decoration svg {
    width: 100%;
    height: 100%;
    animation: rotateDecoration 20s linear infinite;
}

/* Active mega menu item */
.nav__mega-item--active {
    background: linear-gradient(135deg, rgba(165, 13, 238, 0.1) 0%, rgba(138, 11, 199, 0.1) 100%);
    border-color: rgba(165, 13, 238, 0.3);
}

/* Responsive - Service Pages */
@media (max-width: 1024px) {
    .service-hero__title {
        font-size: var(--font-size-4xl);
    }
    
    .reality-content h2 {
        font-size: var(--font-size-4xl);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card--highlight {
        transform: none;
    }
    
    .pricing-period-selector {
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .period-selector-btn {
        padding: 8px 16px;
        font-size: var(--font-size-sm);
    }
    
    .pricing-card--highlight:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: auto;
        padding: calc(var(--spacing-xl) * 1.5) var(--spacing-md);
    }
    
    .service-hero__title {
        font-size: var(--font-size-3xl);
    }
    
    .reality-content h2 {
        font-size: var(--font-size-3xl);
    }
    
    .service-hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .service-hero__actions .btn {
        width: 100%;
    }
    
    .service-hero__trust {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .service-hero__svg {
        display: none;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-visual {
        order: -1;
    }
    
    .solution-vision__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto var(--spacing-xl);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .comparison-grid {
        flex-direction: column;
    }
    
    .comparison-card {
        max-width: 100%;
    }
    
    .comparison-divider {
        transform: rotate(90deg);
        width: 100%;
        padding: var(--spacing-md) 0;
    }
    
    .cta-final__decoration {
        display: none;
    }
    
    .cta-final__trust {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .service-hero__title {
        font-size: var(--font-size-2xl);
    }
    
    .reality-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .service-hero__badges {
        flex-direction: column;
    }
    
    .solution-vision__grid {
        grid-template-columns: 1fr;
    }
    
    .reality-step {
        flex-direction: column;
        text-align: center;
    }
    
    .reality-conclusion {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-card {
        flex-direction: column;
        text-align: center;
    }
}

