/* Homepage specific styles */
body {
    overflow-x: hidden;
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    padding: 0 !important;
}

.homepage-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    line-height: 1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    line-height: 1;
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.header .logo .logo-img {
    height: 85px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.05);
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

/* Menu Hamburger para Mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #667eea;
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-links .btn-primary {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border: none;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.nav-links .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.hero {
    text-align: center;
    padding: 60px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ==================== TECH BANNER ULTRA-MODERNO ==================== */

.tech-banner {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 50px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 20px 40px rgba(79, 70, 229, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.3) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    animation: techParticlesFloat 20s linear infinite;
    opacity: 0.6;
}

@keyframes techParticlesFloat {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(5px); }
    100% { transform: translateX(0) translateY(0); }
}

.tech-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

/* Tech Stats */
.tech-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 140px;
    flex: 1;
    max-width: 200px;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 
        0 20px 40px rgba(79, 70, 229, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(79, 70, 229, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: statGlow 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes statGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

/* Code Animation */
.code-animation {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    font-family: 'Courier New', monospace;
    margin-top: 10px;
}

.code-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.code-prompt {
    color: #4f46e5;
    font-weight: bold;
}

.code-text {
    color: #06b6d4;
    font-weight: 500;
    min-width: 200px;
    text-align: left;
}

.code-cursor {
    color: #ffffff;
    animation: codeCursorBlink 1s infinite;
}

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

/* Responsividade do Tech Banner */
@media (max-width: 1024px) {
    .tech-banner {
        padding: 35px 25px;
        margin-bottom: 40px;
    }
    
    .tech-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 130px;
        max-width: 180px;
    }
    
    .stat-number {
        font-size: 2.6rem;
    }
    
    .code-line {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .tech-banner {
        padding: 30px 20px;
        margin-bottom: 35px;
    }
    
    .tech-stats {
        gap: 20px;
        justify-content: space-around;
    }
    
    .stat-item {
        padding: 20px 15px;
        min-width: 110px;
        max-width: 150px;
        flex: none;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .code-animation {
        padding: 12px 15px;
    }
    
    .code-line {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .code-text {
        min-width: 150px;
        word-break: break-all;
    }
    
    .hero {
        padding: 40px 15px 80px;
    }
}

@media (max-width: 480px) {
    .tech-banner {
        padding: 25px 15px;
        margin-bottom: 30px;
        border-radius: 15px;
    }
    
    .tech-stats {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .stat-item {
        padding: 18px 15px;
        min-width: auto;
        max-width: none;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
    }
    
    .code-animation {
        padding: 10px 12px;
    }
    
    .code-line {
        font-size: 11px;
        gap: 5px;
    }
    
    .code-text {
        min-width: 100px;
        font-size: 10px;
    }
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 24px;
    color: #a0a0a0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

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

.features h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #667eea;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* API Info Section - Ultra Modern Dark Theme */
.api-info {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.api-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.api-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.api-header {
    text-align: center;
    margin-bottom: 60px;
}

.api-header h3 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.api-icon {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 15px;
}

.api-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.api-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Terminal Interativo */
.terminal-container {
    background: #1e1e1e;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.terminal-header {
    background: #2d2d2d;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.terminal-title {
    color: #c9d1d9;
    font-size: 14px;
    font-weight: 500;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    min-height: 300px;
    position: relative;
}

.terminal-line {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.prompt {
    color: #7c3aed;
    margin-right: 8px;
    font-weight: bold;
}

.command {
    color: #10b981;
    flex: 1;
}

.terminal-line.output {
    margin-top: 15px;
    display: block;
}

.json-response {
    color: #c9d1d9;
}

.json-key {
    color: #79c0ff;
}

.json-string {
    color: #a5d6ff;
}

.json-bool {
    color: #f97583;
}

.terminal-cursor {
    color: #7c3aed;
    animation: blink 1s infinite;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

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

/* Code Examples */
.code-examples {
    background: #0d1117;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-tabs {
    background: #161b22;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-tab {
    background: none;
    border: none;
    padding: 15px 20px;
    color: #8b949e;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.code-tab:hover {
    color: #f0f6fc;
    background: rgba(255, 255, 255, 0.05);
}

.code-tab.active {
    color: #58a6ff;
    background: rgba(88, 166, 255, 0.1);
}

.code-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #58a6ff;
}

.code-content {
    position: relative;
}

.code-block {
    display: none;
}

.code-block.active {
    display: block;
}

.code-header {
    background: #21262d;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-lang {
    color: #f0f6fc;
    font-size: 14px;
    font-weight: 500;
}

.copy-btn {
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    color: #58a6ff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    background: rgba(88, 166, 255, 0.2);
    transform: translateY(-1px);
}

.code-block pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
    background: #0d1117;
}

.code-block code {
    color: #c9d1d9;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Syntax Highlighting */
.syntax-command { color: #79c0ff; }
.syntax-flag { color: #f97583; }
.syntax-string { color: #a5d6ff; }
.syntax-keyword { color: #ff7b72; }
.syntax-variable { color: #ffa657; }
.syntax-function { color: #d2a8ff; }
.syntax-property { color: #79c0ff; }
.syntax-module { color: #7ee787; }
.syntax-constant { color: #79c0ff; }
.syntax-boolean { color: #f97583; }
.syntax-php { color: #7ee787; }

/* API Features */
.api-features {
    margin-bottom: 60px;
}

.api-features h4 {
    text-align: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
}

.features-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-feature:hover::before {
    left: 100%;
}

.tech-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.tech-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-content h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.tech-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Playground da API */
.api-test-advanced {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.test-header {
    text-align: center;
    margin-bottom: 40px;
}

.test-header h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.test-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.test-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.test-input-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group label {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.input-wrapper {
    display: flex;
    gap: 15px;
}

.input-wrapper input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

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

.test-btn {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.test-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.test-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 14px;
}

.example-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.example-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.test-output {
    background: #0d1117;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.output-header {
    background: #161b22;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.output-title {
    color: #f0f6fc;
    font-weight: 500;
}

.output-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6e7681;
}

.status-dot.success {
    background: #238636;
    animation: pulse 2s infinite;
}

.status-dot.error {
    background: #da3633;
}

.status-dot.loading {
    background: #f85149;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    color: #8b949e;
    font-size: 14px;
}

.test-result-advanced {
    padding: 20px;
    min-height: 200px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #c9d1d9;
    white-space: pre-wrap;
    overflow-x: auto;
}

.placeholder-text {
    color: #6e7681;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .header .logo {
        padding: 0;
        margin: 0;
    }
    
    .header .logo .logo-img {
        height: 80px;
        max-width: 200px;
        margin: 0;
        padding: 0;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .api-grid {
        grid-template-columns: 1fr;
    }
    
    .test-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .header .logo {
        padding: 0;
        margin: 0;
    }
    
    .header .logo .logo-img {
        height: 75px;
        max-width: 180px;
        margin: 0;
        padding: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .nav-links {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 85px);
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 15px 20px;
        border-radius: 12px;
        text-align: center;
        font-size: 16px;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .nav-links .btn-primary {
        background: linear-gradient(45deg, #4f46e5, #7c3aed);
        border: none;
        box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
        margin-top: 10px;
    }
    
    /* Overlay para fechar menu */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .hero h2 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
    }
    
    .api-info {
        padding: 60px 20px;
    }
    
    .features-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .input-wrapper {
        flex-direction: column;
    }
    
    .test-btn {
        justify-content: center;
    }
    
    .api-header h3 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0;
    }
    
    .header-content {
        padding: 0 10px;
    }
    
    .header .logo {
        padding: 0;
        margin: 0;
    }
    
    .header .logo .logo-img {
        height: 70px;
        max-width: 160px;
        margin: 0;
        padding: 0;
    }
    
    .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
        width: 100%;
        right: -100%;
        padding: 20px 15px;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-buttons .btn {
        font-size: 15px;
        padding: 12px 20px;
    }
}

/* Como obter token */
.token-info {
    margin-bottom: 60px;
}

.token-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.token-header {
    text-align: center;
    margin-bottom: 40px;
}

.token-header h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.token-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.token-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.token-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.token-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.step-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.step-content a:hover {
    color: #58a6ff;
    text-decoration: underline;
}

/* ==================== SEÇÃO DE TESTEMUNHOS ==================== */

.testimonials-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #151521 50%, #1a1a2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-header h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.testimonial-content p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: #4f46e5;
    position: absolute;
    left: -15px;
    top: -5px;
    font-family: serif;
}

.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: #4f46e5;
    position: absolute;
    right: -10px;
    bottom: -15px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.author-info h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.testimonial-date {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-date::before {
    content: '🕒';
    font-size: 0.8rem;
}

/* Animação de entrada escalonada */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: testimonialFadeIn 0.6s ease forwards;
}

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

@keyframes testimonialFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade para testemunhos */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .testimonials-header h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-header {
        margin-bottom: 60px;
    }
    
    .testimonials-header h3 {
        font-size: 2rem;
    }
    
    .testimonials-header p {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
}

/* ==================== CTA SECTION ULTRA-MODERNA ==================== */

.cta-section-modern {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0;
    margin-top: 0;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Background Effects */
.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: ctaFloat 20s ease-in-out infinite;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4f46e5, transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #06b6d4, transparent);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
}

.cta-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -14s;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* CTA Content */
.cta-content {
    text-align: center;
    position: relative;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: ctaPulse 3s ease-in-out infinite;
}

.cta-badge-icon {
    font-size: 16px;
    animation: ctaRocket 2s ease-in-out infinite;
}

.cta-badge-text {
    color: #4f46e5;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); }
}

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

.cta-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    line-height: 1.1;
}

.cta-highlight {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.cta-title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #8b5cf6);
    border-radius: 2px;
    animation: ctaUnderlineGlow 2s ease-in-out infinite;
}

@keyframes ctaUnderlineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(79, 70, 229, 0.5); }
    50% { box-shadow: 0 0 20px rgba(79, 70, 229, 0.8), 0 0 30px rgba(6, 182, 212, 0.3); }
}

.cta-description {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    color: #4f46e5;
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    position: relative;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    overflow: hidden;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.4);
}

.cta-btn-primary .btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    position: relative;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.cta-btn-secondary .btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==================== FOOTER ULTRA-MODERNO ==================== */

.footer-modern {
    position: relative;
    background: #0a0a0f;
    overflow: hidden;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Footer Background */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(79, 70, 229, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #8b5cf6, #4f46e5);
    background-size: 200% 100%;
    animation: footerGradientMove 3s linear infinite;
}

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

/* Footer Content */
.footer-content {
    padding: 60px 20px 30px;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.footer-brand {
    flex: none;
    min-width: auto;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-icon {
    font-size: 2rem;
    animation: footerIconPulse 2s ease-in-out infinite;
}

@keyframes footerIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-tagline {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.95rem;
}

.copyright-separator {
    color: #4f46e5;
    font-weight: bold;
}

.footer-status {
    display: flex;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-dot.status-online {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.status-text {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsividade CTA e Footer */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== FOOTER LEGAL & MODAIS ==================== */

/* Footer Legal Links */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 998;
}

.legal-link {
    color: #4f46e5;
    text-decoration: underline;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    z-index: 999;
    pointer-events: auto;
}

.legal-link:hover {
    color: #7c3aed;
    text-decoration: none;
    transform: translateY(-1px);
}

.legal-separator {
    color: #666;
    font-size: 12px;
}

/* Legal Modals */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    overflow-y: auto;
}

.legal-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #ffffff;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.modal-body {
    padding: 30px;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.terms-content {
    color: #e0e0e0;
    line-height: 1.7;
}

.terms-content h3 {
    color: #4f46e5;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.terms-content h4 {
    color: #7c3aed;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.terms-content p {
    margin-bottom: 15px;
}

.terms-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 8px;
}

.terms-content strong {
    color: #ffffff;
}

/* LGPD Specific Styles */
.lgpd-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.lgpd-warning h3 {
    color: #ffc107 !important;
    margin-top: 0 !important;
    margin-bottom: 10px;
}

.data-nature {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4caf50;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.data-nature p {
    margin-bottom: 8px;
}

.user-obligations {
    background: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #f44336;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.user-obligations h4 {
    color: #f44336 !important;
    margin-top: 0 !important;
}

.prohibitions {
    background: rgba(156, 39, 176, 0.1);
    border-left: 4px solid #9c27b0;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.prohibitions h4 {
    color: #9c27b0 !important;
    margin-top: 0 !important;
}

.governance {
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196f3;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.governance h4 {
    color: #2196f3 !important;
    margin-top: 0 !important;
}

.penalties {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #ff9800;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.penalties h4 {
    color: #ff9800 !important;
    margin-top: 0 !important;
}

.legal-disclaimer {
    background: rgba(244, 67, 54, 0.15);
    border: 2px solid rgba(244, 67, 54, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.legal-disclaimer p {
    margin-bottom: 10px;
}

/* Modal Scrollbar */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .footer-legal {
        order: -1;
        margin-bottom: 10px;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .terms-content h3 {
        font-size: 18px;
    }
}

/* ==================== SEÇÃO COMPARAÇÃO ==================== */

.comparison-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.comparison-col {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.comparison-us {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 2px solid rgba(79, 70, 229, 0.3);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.2);
}

.comparison-others {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-item {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    min-height: 70px;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-header-col .comparison-item {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.comparison-header-us {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
}

.comparison-header-others {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

.comparison-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.feature-title {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1rem;
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-icon {
    font-size: 1.5rem;
}

.company-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.company-badge-others .company-name {
    color: #ffffff;
}

.feature-check,
.feature-fail {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.check-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fail-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.check-text {
    color: #22c55e;
    font-weight: 500;
    line-height: 1.4;
}

.fail-text {
    color: #ef4444;
    font-weight: 500;
    line-height: 1.4;
}

.comparison-footer {
    text-align: center;
}

.comparison-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    color: #fbbf24;
    font-size: 1.1rem;
    margin: 0;
    display: inline-block;
}

/* ==================== SEÇÃO FAQ ==================== */

.faq-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
    padding: 100px 0;
    position: relative;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-header h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.faq-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(79, 70, 229, 0.3);
}

.faq-icon {
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.faq-question:hover {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4f46e5;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.faq-answer strong {
    color: #ffffff;
    font-weight: 600;
}

.faq-answer a {
    color: #4f46e5;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #7c3aed;
}

/* Responsividade */
@media (max-width: 1024px) {
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-us {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .comparison-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .comparison-header h3,
    .faq-header h3 {
        font-size: 2.2rem;
    }
    
    .comparison-item,
    .faq-question {
        padding: 15px 20px;
        min-height: 60px;
    }
    
    .faq-category {
        padding: 25px 20px;
    }
    
    .check-text,
    .fail-text {
        font-size: 0.9rem;
    }
} 