:root {
    --primary-color: #ff7700;
    --primary-hover: #e56b00;
    --secondary-color: #ff9933;
    --secondary-hover: #e58a2e;
    --accent-color: #ff7700;
    --dark-bg: #0a0a0a;
    --dark-bg-alt: #121212;
    --dark-bg-light: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-muted: #6c757d;
    --grid-line: rgba(255, 255, 255, 0.05);
    --error-color: #ff3333;
    --success-color: #00cc66;
    --warning-color: #ffcc00;
    --info-color: #cc8100;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --font-size-display: 2.3rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 24px 24px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 9, 24, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.main-nav {
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 3px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin: 0 2px;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

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

.nav-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    position: relative;
    stroke-width: 2.5;
    vertical-align: -3px;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    padding: 8px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 12px 28px;
    border-radius: var(--border-radius);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    font-size: var(--font-size-md);
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
    letter-spacing: 0.2px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 119, 0, 0.3);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: var(--font-size-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 12px 28px;
    font-size: var(--font-size-lg);
}

.btn-full {
    width: 100%;
    padding: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 1;
}

/* Pseudo-elementos removidos para usar o fundo padrão da página */

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.7; }
    100% { transform: scale(1); opacity: 0.5; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.matrix-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-container {
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out;
    opacity: 1 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: var(--font-size-display);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    margin-top: var(--spacing-xs);
}

.tag-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 119, 0, 0.3);
    width: auto;
    max-width: none;
    white-space: nowrap;
}

.tag-icon {
    margin-right: 6px;
    stroke: var(--primary-color);
    width: 14px;
    height: 14px;
}

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

.hero .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(255, 119, 0, 0.3);
    padding-bottom: 5px;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    opacity: 0.9;
    animation: shimmer 2s infinite;
    border-radius: 1.5px;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% center; opacity: 0.7; }
    50% { opacity: 1; }
    100% { background-position: 200% center; opacity: 0.7; }
}

.hero .subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: var(--spacing-lg);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: var(--font-size-xxl);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-text {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-form {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-container {
    background-color: rgba(18, 18, 18, 0.95);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 119, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: shimmer 3s infinite;
    background-size: 200% auto;
}

/* Estilos para formulários */
.form-group {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-size: var(--font-size-md);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group .form-text {
    display: block;
    margin-top: 4px;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    transition: var(--transition);
}

/* Estilos para validação de formulário */
input.valid, select.valid {
    border: 2px solid var(--success-color) !important;
    background-color: rgba(0, 204, 102, 0.05) !important;
}

input.invalid, select.invalid {
    border: 2px solid var(--error-color) !important;
    background-color: rgba(255, 51, 51, 0.05) !important;
}

input:focus, select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.2) !important;
    outline: none !important;
    background-color: rgba(255, 255, 255, 0.07);
}

input:focus + .form-text,
select:focus + .form-text {
    color: var(--primary-color);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-disclaimer {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-secure {
    margin-right: 6px;
    color: var(--success-color);
}

/* Estilo para fonte de codificação */
input, select, textarea, button[type="submit"], h1, h2, .code-terminal code {
    font-family: 'Fira Code', monospace;
}

/* Estilos para o terminal de código */
.code-terminal {
    background-color: #1e1e1e;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    overflow: hidden;
    max-width: 250px;
    margin-left: 0;
    margin-right: auto;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
    position: relative;
    transform: scale(0.9);
    transform-origin: top left;
}

.code-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(30, 30, 30, 0.7) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(30, 30, 30, 0.7) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

.terminal-body {
    position: relative;
    z-index: 1;
}

.terminal-header {
    background-color: #323232;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #444;
}

.terminal-button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}

.terminal-button:nth-child(1) {
    background-color: #ff5f56;
}

.terminal-button:nth-child(2) {
    background-color: #ffbd2e;
}

.terminal-button:nth-child(3) {
    background-color: #27c93f;
}

.terminal-title {
    color: #ddd;
    font-size: 12px;
    margin-left: 8px;
}

.terminal-body {
    padding: 8px;
    color: #f8f8f8;
}

.terminal-body pre {
    margin: 0;
    white-space: pre-wrap;
}

.terminal-body code {
    font-size: 9px;
    line-height: 1.2;
}

/* Cores de sintaxe para o código */
.typing-code {
    display: inline-block;
    position: relative;
}

.cursor {
    color: var(--primary-color);
    animation: blink 1s infinite;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 119, 0, 0.6);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Cores de sintaxe */
.terminal-body .comment, 
.terminal-body code .comment, 
.typing-code .comment { 
    color: #6a9955 !important; 
}

/* Classes para animações GSAP */
.gsap-reveal {
    visibility: hidden;
}

.advantage-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 119, 0, 0.1);
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 119, 0, 0.2);
}

.timeline-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 119, 0, 0.1);
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.timeline-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.15);
}

.timeline-item:hover::after {
    opacity: 1;
}
.terminal-body .keyword, 
.terminal-body code .keyword { color: #569cd6; }
.terminal-body .string, 
.terminal-body code .string { color: #ce9178; }
.terminal-body .number, 
.terminal-body code .number { color: #b5cea8; }
.terminal-body .function, 
.terminal-body code .function { color: #dcdcaa; }
.terminal-body .operator, 
.terminal-body code .operator { color: #d4d4d4; }
.terminal-body .property, 
.terminal-body code .property { color: #9cdcfe; }

/* Efeito Matrix */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-container > p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.btn-primary.form-button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0055cc;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 15px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.background-lottie {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    transform: scale(1.2);
    filter: blur(3px);
}

/* Fundo limpo sem gradiente */

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    max-width: 800px;
    background: linear-gradient(135deg, var(--text-light) 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-header h2 .highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 119, 0, 0.3);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Vantagens Section */
.lottie-container {
    display: flex;
    justify-content: center;
    margin: 0;
    position: relative;
    margin-bottom: -100px;
    z-index: 1;
}

.lottie-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Estilos para a seção de processo */
.processo-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

/* Automation Flow Layout */
.automation-flow {
    max-width: 800px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.automation-card {
    width: 100%;
    max-width: 600px;
    background-color: rgba(30, 30, 35, 0.8);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trigger-card .card-icon {
    background-color: rgba(77, 77, 255, 0.15);
    color: #6e6eff;
}

.action-card .card-icon {
    background-color: rgba(0, 230, 118, 0.15);
    color: #00e676;
}

.success-card .card-icon {
    background-color: rgba(0, 230, 118, 0.25);
    color: #00e676;
}

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

.card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.7;
    font-weight: 500;
}

.trigger-card .card-label {
    color: #6e6eff;
}

.action-card .card-label {
    color: #00e676;
}

.automation-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.automation-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Conectores */
.connector {
    height: 40px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.connector-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 230, 118, 0.5), rgba(0, 102, 255, 0.5));
}

.connector-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 230, 118, 0.8);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

.processo-container {
    gap: 30px;
    margin: 40px 0;
}

.processo-visual {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 100px;
}

.processo-lottie {
    margin: 0;
}

.processo-lottie::before {
    background: radial-gradient(circle, rgba(0, 204, 255, 0.15) 0%, transparent 70%);
    width: 400px;
    height: 400px;
}

.processo-destaque {
    text-align: center;
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(0, 30, 60, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.processo-destaque h3 {
    color: var(--color-accent);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.processo-destaque p {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    margin-top: -50px;
}

.advantage-card {
    background-color: var(--dark-bg-alt);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon svg {
    color: var(--primary-color);
}

.advantage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.advantages-cta {
    text-align: center;
}

.advantages-cta .btn-primary {
    max-width: 250px;
    margin: 0 auto;
}

/* Background Alternate */
.bg-alt {
    background-color: var(--dark-bg-alt);
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    flex: 1;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 2px;
    background-color: var(--color-accent);
    opacity: 0.5;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.timeline-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--color-accent);
    transform: translateX(5px);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: #1a1a1a;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-right: 25px;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 1/1;
}

.timeline-number::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0, 204, 255, 0.3);
    animation: pulse 2s infinite;
    aspect-ratio: 1/1;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.timeline-item:hover .timeline-number {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
    border-color: #fff;
}

.timeline-content {
    padding-left: 30px;
    padding-top: 5px;
}

.timeline-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 700px;
    opacity: 1 !important; /* Garantindo que o título nunca fique transparente */
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Stats */
.process-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 230, 118, 0.1) 100%);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-source {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: block;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--dark-bg-alt);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 20px;
}

.testimonials-cta .btn-primary {
    max-width: 300px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.content-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    z-index: -1;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--text-gray);
}

#faq-search {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: var(--font-size-md);
    transition: var(--transition);
}

#faq-search:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
    outline: none;
}

#faq-search::placeholder {
    color: var(--text-gray);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.faq-category {
    padding: 8px 16px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: var(--transition);
}

.faq-category:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.faq-category.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: var(--font-size-md);
    font-weight: 600;
    padding-right: 20px;
}

.faq-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 102, 255, 0.1);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-toggle:hover {
    background-color: rgba(0, 102, 255, 0.2);
}

.faq-toggle .icon-minus {
    display: none;
}

.faq-item.active .icon-plus {
    display: none;
}

.faq-item.active .icon-minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.answer-content {
    padding: 0 20px 20px;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.faq-tag {
    padding: 4px 10px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: var(--font-size-xs);
}

.faq-highlight {
    background-color: rgba(0, 230, 118, 0.1);
    border-left: 3px solid var(--secondary-color);
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    display: flex;
    align-items: flex-start;
}

.highlight-icon {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-highlight p {
    margin: 0;
}

.faq-comparison {
    display: flex;
    gap: 20px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    text-align: center;
}

.comparison-title {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-gray);
    margin-bottom: 8px;
}

.comparison-value {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
}

.salary-chart {
    margin: 20px 0;
}

.salary-bar {
    position: relative;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    padding: 10px;
}

.salary-level {
    position: absolute;
    height: 30px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
    transition: var(--transition);
}

.salary-level.junior {
    background-color: rgba(0, 102, 255, 0.2);
    bottom: 70px;
}

.salary-level.mid {
    background-color: rgba(0, 102, 255, 0.4);
    bottom: 40px;
}

.salary-level.senior {
    background-color: rgba(0, 102, 255, 0.6);
    bottom: 10px;
}

.salary-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-weight: 500;
}

.salary-amount {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 700;
}

/* Animação para os itens do FAQ */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

.faq-item {
    background-color: var(--dark-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    background-color: rgba(255, 119, 0, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-toggle .icon-plus {
    display: block;
}

.faq-toggle .icon-minus {
    display: none;
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 119, 0, 0.4);
}

.faq-item.active .faq-toggle .icon-plus {
    display: none;
}

.faq-item.active .faq-toggle .icon-minus {
    display: block;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-left: 2px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px 25px 25px;
    max-height: 1000px;
    border-left: 2px solid var(--primary-color);
    background-color: rgba(255, 119, 0, 0.03);
    border-radius: 0 0 8px 8px;
}

.answer-content {
    padding-top: 5px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon svg {
    color: var(--primary-color);
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
}

.social-icon svg {
    color: var(--text-light);
}

.contact-form-container {
    background-color: var(--dark-bg-alt);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg-alt);
    padding: 70px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo p {
    color: var(--text-gray);
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column li {
    margin-bottom: 10px;
}

.footer-links-column a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

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

/* Media Queries */
@media (max-width: 992px) {
    .processo-container {
        flex-direction: column;
    }
    
    .automation-flow {
        max-width: 100%;
    }
    
    .automation-card {
        max-width: 100%;
    }
    
    .processo-visual {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        width: 100%;
        flex: none;
    }
    
    .processo-lottie dotlottie-wc {
        width: 300px !important;
        height: 300px !important;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero .subtitle {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 12, 32, 0.98);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .nav-item {
        width: 100%;
        justify-content: center;
    }
    
    .header-buttons {
        display: none;
    }
    
    .header-buttons.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 20px 20px;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(0, 12, 32, 0.98);
        z-index: 999;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .automation-card {
        flex-direction: column;
        padding: 16px;
    }
    
    .card-icon {
        margin-bottom: 10px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        margin-bottom: 40px;
        position: relative;
        z-index: 3;
        margin-top: -50px;
    }
    
    .contact-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .process-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
    }
}
