:root {
    /* Light mode colors */
    --bg-primary: #f0f0f0;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f5f6f8;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #6b7280;
    --text-light: #718096;
    --border-color: #e5e7eb;
    --border-light: rgba(0,0,0,0.04);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.06);
    --card-bg: rgba(255,255,255,0.7);
    --highlight-color: #f39e2a;
    --highlight-secondary: #e67e22;
}

.dashboard-body[data-theme="dark"] {
    /* Dark mode colors */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2d2d2d;
    --text-primary: #e2e8f0;
    --text-secondary: #cbd5e0;
    --text-muted: #a0aec0;
    --text-light: #718096;
    --border-color: #2d3748;
    --border-light: rgba(255,255,255,0.04);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.2);
    --card-bg: rgba(26,26,26,0.7);
    --highlight-color: #f39e2a;
    --highlight-secondary: #e67e22;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Force Inter on all form controls */
input, textarea, select, button {
    font-family: 'Inter', sans-serif;
}

/* Fullscreen login layout */
.auth-page {
    min-height: 100vh;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(243, 158, 42, 0.08), transparent 60%),
                radial-gradient(1000px 500px at 110% 10%, rgba(230, 126, 34, 0.08), transparent 60%),
                var(--bg-primary);
}

/* --------- DASHBOARD --------- */
.dashboard-body {
    background: var(--bg-tertiary);
}

.dashboard-layout { display: block; min-height: 100vh; }

.dash-brand { display: flex; align-items: center; gap: 10px; }
.dash-logo { width: 220px; height: 40px; }
.dash-brand-text { font-weight: 700; letter-spacing: 0.3px; }

.dash-main { display: flex; flex-direction: column; }
.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.dash-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 158, 42, 0.05), transparent);
    transition: left 0.6s ease;
}

.dash-topbar:hover::before {
    left: 100%;
}

.dash-title { display: none; }
.dash-actions { display: flex; gap: 10px; }
.dash-action-btn { 
    padding: 10px 14px; 
    position: relative;
    overflow: hidden;
}

/* Barra de progresso de faturamento (ao lado do tema) */
.dash-progress { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
    margin-right: 10px; 
    min-width: 220px;
}
.dash-progress-header { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    color: var(--text-secondary);
    font-weight: 600; 
    font-size: 12px;
}
.dash-progress-icon { color: #e08a1f; }
.dash-progress-amount { color: var(--text-muted); font-weight: 500; }
.dash-progress-track { 
    width: 100%; 
    height: 8px; 
    background: var(--border-color); 
    border-radius: 999px; 
    overflow: hidden; 
}
.dash-progress-fill { 
    height: 100%; 
    background: linear-gradient(90deg, #e08a1f, #e0891f8f); 
    border-radius: 999px; 
    transition: width 0.6s ease; 
}

/* Chip do usuário */
.dash-userchip { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    background: var(--card-bg); 
    border: 1px solid var(--border-light); 
    border-radius: 999px; 
    padding: 6px 10px; 
    box-shadow: 0 4px 12px var(--shadow-light);
}
.dash-userchip .user-info { display: flex; flex-direction: column; line-height: 1.1; }
.dash-userchip .user-name { color: var(--text-primary); font-weight: 700; font-size: 13px; }
.dash-userchip .user-role { color: var(--text-muted); font-size: 11px; }
.dash-userchip .user-avatar { 
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(90deg, #e08a1f, #e0891f8f); 
    color: #fff; 
    font-weight: 700; 
    font-size: 12px; 
}

.dash-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.dash-action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.dash-content { padding: 20px; }
.dash-tabs { 
    background: var(--card-bg); 
    backdrop-filter: blur(12px); 
    z-index: 5; 
    display: flex; 
    gap: 10px; 
    padding: 10px 20px; 
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.dash-tab-btn { 
    position: relative; 
    background: transparent; 
    border: none; 
    padding: 10px 12px; 
    border-radius: 10px; 
    cursor: pointer; 
    color: var(--text-secondary); 
    font-weight: 600; 
    transition: all 0.3s ease;
    overflow: hidden;
}

.dash-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 158, 42, 0.1), transparent);
    transition: left 0.4s ease;
}

.dash-tab-btn:hover::before {
    left: 100%;
}

.dash-tab-btn.active { 
    color: var(--text-primary); 
    transform: translateY(-1px);
}

.dash-tabs { display: flex; gap: 10px; align-items: center; position: relative; }
.dash-tabs-slider { 
    position: absolute; 
    bottom: 0; 
    height: 2px; 
    background: linear-gradient(90deg,#f39e2a,#e67e22); 
    border-radius: 2px; 
    transform: translateX(0); 
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), width 0.35s ease;
    box-shadow: 0 0 10px rgba(243, 158, 42, 0.3);
}

.dash-section { 
    margin-bottom: 28px; 
    opacity: 0; 
    transform: translateY(12px); 
    transition: all 0.35s ease;
    display: none;
}

.dash-section.active { 
    opacity: 1; 
    transform: translateY(0);
    display: block;
}

.dash-section-title { 
    font-size: 20px; 
    color: var(--text-primary); 
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.dash-section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f39e2a, #e67e22);
    transition: width 0.3s ease;
}

.dash-section.active .dash-section-title::after {
    width: 100%;
}

.dash-section-title .gradient-text { 
    background: linear-gradient(135deg, #f39e2a 0%, #e67e22 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
}

.dash-muted { color: var(--text-muted); }

.dash-grid { display: grid; gap: 16px; }
.dash-grid.integracoes { grid-template-columns: repeat(3, 1fr); }
.dash-stats { grid-template-columns: repeat(4, 1fr); margin-bottom: 18px; }

.dash-stat { 
    background: var(--card-bg); 
    backdrop-filter: blur(12px); 
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    padding: 16px; 
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Removida barra de hover nos cards de visão geral */
.dash-stat::before { content: none; }

.dash-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-color);
    border-color: rgba(243, 158, 42, 0.2);
}

.dash-stat-label { 
    color: var(--text-muted); 
    font-size: 12px; 
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-stat-value { 
    font-size: 22px; 
    font-weight: 700; 
    color: var(--text-primary);
    margin-bottom: 4px;
    position: relative;
}

/* Removida barra sob o valor ao passar o mouse */
.dash-stat-value::after { content: none; }

.dash-stat-sub { 
    color: var(--text-muted); 
    font-size: 12px; 
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dash-stat-sub::before {
    content: '↗';
    color: #22c55e;
    font-weight: bold;
}

.dash-stat-sub.negative::before {
    content: '↘';
    color: #ef4444;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f39e2a, #e67e22);
    border-radius: 3px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.dash-quick { grid-template-columns: repeat(3, 1fr); }
.dash-card { 
    background: var(--card-bg); 
    backdrop-filter: blur(12px); 
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    padding: 16px; 
    transition: all 0.3s ease; 
    box-shadow: 0 8px 30px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.dash-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 158, 42, 0.02) 0%, rgba(230, 126, 34, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dash-card:hover::before {
    opacity: 1;
}

.dash-card:hover { 
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 0 15px 40px var(--shadow-color);
    border-color: rgba(243, 158, 42, 0.2);
}

.dash-quick-card { 
    text-decoration: none; 
    color: inherit; 
    display: block;
    position: relative;
}

.quick-icon { 
    font-size: 22px; 
    margin-bottom: 6px;
    transition: transform 0.3s ease;
}

.dash-card:hover .quick-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-title { 
    font-weight: 700; 
    margin-bottom: 4px; 
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.dash-card:hover .quick-title {
    color: var(--highlight-color);
}

.quick-sub { 
    color: var(--text-muted); 
    font-size: 13px;
    transition: color 0.3s ease;
}

.dash-card:hover .quick-sub {
    color: var(--text-secondary);
}

.dash-form { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    background: var(--card-bg); 
    backdrop-filter: blur(12px); 
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    padding: 16px; 
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.dash-form:hover {
    box-shadow: 0 12px 40px var(--shadow-color);
    border-color: rgba(243, 158, 42, 0.1);
}

.dash-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dash-form-group { display: flex; flex-direction: column; gap: 6px; }
.dash-form-group label { 
    font-size: 13px; 
    color: var(--text-secondary); 
    font-weight: 600;
    transition: color 0.3s ease;
}

.dash-form-group:focus-within label {
    color: var(--highlight-color);
}

.dash-form-group input, .dash-form-group select { 
    padding: 12px 10px; 
    border: 1px solid var(--border-color); 
    border-radius: 10px; 
    outline: none; 
    transition: all 0.3s ease; 
    font-size: 14px; 
    background: var(--bg-secondary); 
    color: var(--text-primary);
    position: relative;
}

.dash-form-group input:focus, .dash-form-group select:focus { 
    border-color: var(--highlight-color); 
    box-shadow: 0 0 0 3px rgba(243, 158, 42, 0.15);
    transform: translateY(-1px);
}

.dash-table-wrap { 
    background: var(--card-bg); 
    backdrop-filter: blur(12px); 
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.dash-table-wrap:hover {
    box-shadow: 0 12px 40px var(--shadow-color);
    border-color: rgba(243, 158, 42, 0.1);
}

.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th, .dash-table td { 
    padding: 12px 14px; 
    border-bottom: 1px solid var(--border-color); 
    text-align: left; 
    font-size: 14px; 
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.dash-table tr:hover td {
    background: rgba(243, 158, 42, 0.05);
    transform: scale(1.01);
}

.dash-table th { 
    background: var(--bg-tertiary); 
    color: var(--text-muted); 
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.badge { 
    padding: 6px 10px; 
    border-radius: 999px; 
    font-size: 12px; 
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    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 ease;
}

.badge:hover::before {
    left: 100%;
}

.badge-success { 
    background: rgba(34,197,94,0.15); 
    color: #16a34a;
    box-shadow: 0 2px 8px rgba(34,197,94,0.2);
}

.badge-success:hover {
    background: rgba(34,197,94,0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

.badge-pending { 
    background: rgba(245,158,11,0.15); 
    color: #d97706;
    box-shadow: 0 2px 8px rgba(245,158,11,0.2);
}

.badge-pending:hover {
    background: rgba(245,158,11,0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.badge-failed { 
    background: rgba(239,68,68,0.15); 
    color: #ef4444;
    box-shadow: 0 2px 8px rgba(239,68,68,0.2);
}

.badge-failed:hover {
    background: rgba(239,68,68,0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239,68,68,0.3);
}

/* Tooltip */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-color);
    border: 1px solid var(--border-color);
    z-index: 1000;
}

.tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--bg-secondary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::after,
.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Animações de entrada */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Removidas animações de entrada */
.dash-stat { animation: none; }
.dash-card { animation: none; }

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px var(--shadow-color);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #22c55e;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.warning {
    border-left: 4px solid #f59e0b;
}

/* Loading Spinner */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--highlight-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .dash-topbar { position: sticky; top: 0; z-index: 10; }
    .dash-stats { grid-template-columns: 1fr 1fr; }
    .dash-quick { grid-template-columns: 1fr; }
    .dash-form-row { grid-template-columns: 1fr; }
    .dash-grid.integracoes { grid-template-columns: 1fr; }
    
    .dash-stat:nth-child(3) { animation-delay: 0.1s; }
    .dash-stat:nth-child(4) { animation-delay: 0.2s; }
}

.auth-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* --------- AUTH / LOGIN --------- */
.auth-main {
    padding-top: 80px;
}

.auth-section {
    padding: 80px 0;
    background: #f0f0f0;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 16px;
}

.login-card {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    position: relative;
}

.login-card::before { display: none; }

.auth-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.auth-logo {
    width: 42px;
    height: 42px;
}

.auth-theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    z-index: 10;
}

.auth-theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--shadow-color);
    border-color: var(--highlight-color);
}

/* Toggle PF/PJ */
.account-toggle {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 4px;
    margin: 12px auto 18px auto;
    max-width: 420px;
}

.toggle-option {
    background: transparent;
    border: none;
    padding: 12px 10px;
    border-radius: 10px;
    font-weight: 600;
    color: #4a5568;
    transition: color 0.25s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.toggle-option.active {
    color: #2d3748;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.account-toggle.pj .toggle-slider {
    transform: translateX(100%);
}

/* Signup form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="search"] {
    padding: 14px 4px 12px 4px;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--border-color);
    background: transparent;
    outline: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
}

input::placeholder, textarea::placeholder, .form-group input::placeholder {
    color: #9aa2af;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    border-bottom-color: var(--highlight-color);
    background: transparent;
    box-shadow: none;
}

/* Validation states */
.input-valid {
    border-bottom-color: #22c55e !important; /* verde */
}

.input-invalid {
    border-bottom-color: #ef4444 !important; /* vermelho */
}

.field-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
}

.form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #f39e2a;
}

.link {
    color: #f39e2a;
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    margin-top: 16px;
}

.auth-alt {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 480px) {
    .auth-title {
        font-size: 28px;
    }
    .login-card {
        margin: 0 12px;
        padding: 24px 20px;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"],
    .form-group input[type="tel"],
    .form-group input[type="search"] {
        font-size: 16px; /* evita zoom no foco no iOS */
    }
}

@media (max-width: 768px) {
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"],
    .form-group input[type="tel"],
    .form-group input[type="search"] {
        font-size: 16px; /* mantém consistência e evita zoom em mais dispositivos */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50px;
    position: sticky;
    top: 15px;
    z-index: 100;
    padding: 20px 0;
    margin: 0 350px;
    box-shadow: 0 8px 32px var(--shadow-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.nav-link:hover {
    color: var(--highlight-color);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--highlight-color);
}

.dropdown {
    position: relative;
}

.chevron {
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.7;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--shadow-color);
    border-color: var(--highlight-color);
}

.theme-icon {
    position: absolute;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.theme-icon.sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-icon.moon-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-theme="dark"] .theme-icon.sun-icon {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-icon.moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}



.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.btn-primary {
    background: linear-gradient(135deg, #f39e2a 0%, #e67e22 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 158, 42, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 158, 42, 0.5);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 30px;
}

.icon {
    font-size: 16px;
}

/* Main Content */
.main {
    padding-top: 40px;
}

.hero {
    padding: 80px 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    display: flex;
    justify-content: center;
}

.hero-text {
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #f39e2a 0%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.social-proof .highlight {
    font-size: 24px;
    font-weight: 700;
    color: #f39e2a;
}

.social-proof .text {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39e2a 0%, #e67e22 100%);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(243, 158, 42, 0.3);
}

/* Taxas Section */
.taxas {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(1).animate-in { transition-delay: 0.2s; }
.card:nth-child(2).animate-in { transition-delay: 0.4s; }
.card:nth-child(3).animate-in { transition-delay: 0.6s; }

.card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 158, 42, 0.02) 0%, rgba(230, 126, 34, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-color);
    border-color: rgba(243, 158, 42, 0.2);
}

.card-highlight {
    background: linear-gradient(135deg, #f39e2a 0%, #e67e22 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(243, 158, 42, 0.3);
}

.card-highlight:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 25px 70px rgba(243, 158, 42, 0.4);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.card-highlight .card-title {
    color: white;
}

.card-icon {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.card:not(.card-highlight) .card-icon {
    background: rgba(243, 158, 42, 0.08);
    color: #f39e2a;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(243, 158, 42, 0.15);
}

.card-highlight:hover .card-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(-5deg);
}

.card-subtitle {
    font-size: 16px;
    color: #f39e2a;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: -25px;
    transition: color 0.3s ease;
}

.card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.card-highlight .card-description {
    color: white;
}

.card:hover .card-subtitle {
    color: #e08a1f;
}

.card-visuals {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.visual-item {
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-item svg {
    width: 32px;
    height: 32px;
}

/* Floating Tags - Estilo React */
.floating-tags {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 20px 0;
}

.floating-tag {
    font-size: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-tag:nth-child(1) { animation-delay: 0s; }
.floating-tag:nth-child(2) { animation-delay: 0.5s; }
.floating-tag:nth-child(3) { animation-delay: 1s; }

.floating-tag:hover {
    opacity: 1;
    transform: scale(1.2) translateY(-5px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.visual-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.card:hover .visual-item {
    opacity: 0.9;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    background: #f8f9fa;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.feature-tag:hover {
    background: #f39e2a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 158, 42, 0.3);
}

.card-highlight .feature-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #f39e2a;
    border-color: rgba(255, 255, 255, 0.3);
}

.card-highlight .feature-tag:hover {
    background: white;
    color: #f39e2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-menu .nav-link {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.mobile-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 158, 42, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.mobile-menu .nav-link:hover::before {
    left: 0;
}

.mobile-menu .nav-link:hover {
    color: #f39e2a;
    transform: translateY(-2px);
}

.mobile-menu .auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    padding: 0 20px;
}

.mobile-menu .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 25px;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(243, 158, 42, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(243, 158, 42, 0.2);
    transform: scale(1.1);
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #4a5568;
    transition: all 0.3s ease;
}

.mobile-menu-close::before {
    transform: rotate(45deg);
}

.mobile-menu-close::after {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover::before,
.mobile-menu-close:hover::after {
    background: #f39e2a;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .header {
        margin: 0 100px;
    }
}

@media (max-width: 992px) {
    .header {
        margin: 0 50px;
    }
    
    .nav {
        gap: 25px;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .header {
        margin: 0 20px;
        padding: 15px 0;
    }
    
    .header .container {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
    
    .nav {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .social-proof {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .taxas {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .card {
        padding: 30px 25px;
        opacity: 1;
        transform: none;
    }
    
    .card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .card-features {
        justify-content: center;
    }
    
    .feature-tag {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header {
        margin: 0 10px;
        padding: 12px 0;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .logo-image[src*="logotext"] {
        content: url('../images/logotext.png');
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .main {
        padding-top: 20px;
    }
}

/* Seção Soluções */
.solucoes {
    padding: 80px 0;
    background: var(--bg-primary);
}

.solucoes .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.solucoes .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.2;
}

.solucoes .section-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
}

.solucoes .section-description {
    font-size: 18px;
    color: #718096;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.solucao-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
}

.solucao-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-color);
    border-color: #f39f2a1f;
}

.solucao-icon {
    width: 64px;
    height: 64px;
    background: #f39f2a1f;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.solucao-icon svg {
    width: 32px;
    height: 32px;
    color: #f39e2a;
    stroke-width: 2;
}

.solucao-card:hover .solucao-icon {
    background: #f39f2a6b;
    transform: scale(1.1);
}

.solucao-title {
    font-size: 18px;
    font-weight: 700;
    color: #f39e2a;
    margin: 0 0 16px 0;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solucao-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

/* Responsive para Soluções */
@media (max-width: 1200px) {
    .solucoes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .solucoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solucoes .section-title {
        font-size: 36px;
    }
    
    .solucoes .section-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .solucoes {
        padding: 60px 0;
    }
    
    .solucoes .section-title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .solucoes .section-subtitle {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .solucoes .section-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .solucoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .solucao-card {
        padding: 28px 20px;
    }
    
    .solucao-title {
        min-height: auto;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .solucoes {
        padding: 40px 0;
    }
    
    .solucoes .section-title {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .solucoes .section-subtitle {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .solucoes .section-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .solucao-card {
        padding: 24px 16px;
    }
    
    .solucao-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .solucao-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Seção FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Background com bolinhas e neon */
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #d1d5db 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.faq::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(243, 158, 42, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq .section-subtitle {
    font-size: 18px;
    color: #718096;
    font-weight: 400;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-light);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-light);
    border-color: rgba(243, 158, 42, 0.2);
}

.faq-item.active {
    background: rgba(243, 158, 42, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(243, 158, 42, 0.3);
}

.faq-item.active .faq-question h3 {
    color: #f39e2a;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(243, 158, 42, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(243, 158, 42, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39e2a;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #f39e2a;
    color: white;
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive para FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq .section-title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .faq .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 16px;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 20px 24px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq .section-title {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .faq .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        padding-right: 12px;
    }
    
    .faq-toggle {
        width: 24px;
        height: 24px;
    }
    
    .faq-toggle svg {
        width: 16px;
        height: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* Seção Depoimentos */
.depoimentos {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #d1d5db2c 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 1;
}

.depoimentos::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(243, 158, 42, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.depoimentos .container {
    position: relative;
    z-index: 2;
}

.depoimentos .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.depoimentos .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #f39e2a;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.depoimentos .section-subtitle {
    font-size: 18px;
    color: #e2e8f0;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carrossel */
.carousel-container {
    max-width: 1200px;
    margin: 0 auto 10px;
    position: relative;
}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 24px;
}

/* Duplicar cards para efeito infinito */
.carousel-track::before,
.carousel-track::after {
    content: '';
    display: block;
    width: 100%;
}

.depoimento-card {
    min-width: 380px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(243, 158, 42, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 158, 42, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.depoimento-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(243, 158, 42, 0.4);
    box-shadow: 0 20px 60px rgba(243, 158, 42, 0.2);
}

.depoimento-card:hover::before {
    opacity: 1;
}

.depoimento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-pic {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f39e2a 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(243, 158, 42, 0.3);
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.profile-handle {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 400;
}

.x-icon {
    font-size: 20px;
    color: #94a3b8;
    font-weight: 400;
    opacity: 0.7;
}

.depoimento-content {
    margin-bottom: 20px;
}

.depoimento-content p {
    font-size: 16px;
    color: #e2e8f0;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

.depoimento-footer {
    display: flex;
    justify-content: flex-end;
}

.depoimento-date {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 400;
}

/* Responsive para Depoimentos */
@media (max-width: 1200px) {
    .depoimento-card {
        min-width: 340px;
    }
}

@media (max-width: 768px) {
    .depoimentos {
        padding: 60px 0;
    }
    
    .depoimentos .section-title {
        font-size: 28px;
        padding: 0 20px;
    }
    
    .depoimentos .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .depoimento-card {
        min-width: 300px;
        padding: 20px;
    }
    
    .profile-pic {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .profile-name {
        font-size: 15px;
    }
    
    .profile-handle {
        font-size: 13px;
    }
    
    .depoimento-content p {
        font-size: 15px;
    }
    
    .carousel-controls {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .depoimentos {
        padding: 40px 0;
    }
    
    .depoimentos .section-title {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .depoimentos .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .depoimento-card {
        min-width: 280px;
        padding: 18px;
    }
    
    .profile-pic {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .profile-name {
        font-size: 14px;
    }
    
    .profile-handle {
        font-size: 12px;
    }
    
    .depoimento-content p {
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}
