:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --accent-color: #34C759;
    --success-color: #34C759;
    --warning-color: #FF9500;
    --danger-color: #FF3B30;
    --dark-bg: #1a2937;
    --dark-card: #1a2937;
    --dark-text: #FFFFFF;
    --light-text: #8E8E93;
    --border-color: #3A3A3C;
    --muted-bg: #1a2937;
    --glass-bg: rgba(26, 41, 55, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-primary: #1a2937;
    --gradient-secondary: #1a2937;
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--dark-bg);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.8rem;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    padding: 3rem 0 2rem;
    margin-top: 80px;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-quote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(0, 122, 255, 0.15);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
    text-align: center;
    padding-left: 1rem;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-cursor {
    color: var(--primary-color);
    font-weight: 700;
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

/* Hero Form */
.hero-form {
    display: flex;
    justify-content: center;
}

.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid #fbbf24;
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(251, 191, 36, 0.2), var(--shadow-xl);
    width: 100%;
    max-width: 540px;
}

.form-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.form-subtitle {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    background: var(--secondary-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

.trust-item i {
    color: var(--success-color);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--dark-card);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* LGPD Rights Section */
.lgpd-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.lgpd-right-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.lgpd-right-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    text-decoration: none;
}

.lgpd-right-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-top: 0.5rem;
}

.lgpd-right-content {
    flex: 1;
}

.lgpd-right-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.3;
}

.lgpd-article {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lgpd-right-content p:not(.lgpd-article) {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.step p {
    color: var(--light-text);
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
    flex-grow: 1;
}

/* Forms */
.form-page, .analysis-page, .results-page, .success-page {
    padding: 8rem 0 4rem;
    margin-top: 80px;
    min-height: 100vh;
}

.form-container, .analysis-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-header, .analysis-header, .results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h1, .analysis-header h1, .results-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.form-header p, .analysis-header p, .results-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.quote-form, .analysis-form {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--dark-bg);
    color: var(--dark-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    width: auto !important;
    min-width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    flex: 1;
    font-weight: 400;
    color: var(--light-text);
    line-height: 1.5;
    word-wrap: break-word;
    white-space: normal;
    display: block;
    width: auto;
}

.lgpd-section {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.lgpd-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.lgpd-text p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.form-disclaimer {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.form-disclaimer p {
    color: var(--dark-text);
    font-size: 0.9rem;
    margin: 0;
}

.form-disclaimer.whatsapp-info {
    background: rgba(37, 211, 102, 0.1);
    border-left: 4px solid #25D366;
}

.form-disclaimer.whatsapp-info p {
    color: var(--dark-text);
}

.form-disclaimer.whatsapp-info i {
    color: #25D366;
}

/* Instructions Card */
.instructions-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
}

.instructions-card h3 {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instructions-card h3 i {
    font-size: 1.3rem;
}

.instructions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instructions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.instructions-list li:last-child {
    margin-bottom: 0;
}

.instructions-list i {
    color: #fbbf24;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.instructions-list li:last-child i {
    color: #10b981;
}

/* Analysis Benefits */
.analysis-benefits {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.analysis-benefits h3 {
    color: white;
    margin-bottom: 1rem;
}

.analysis-benefits ul {
    list-style: none;
}

.analysis-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.analysis-benefits i {
    color: var(--success-color);
}

/* Form Benefits */
.form-benefits {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.form-benefits h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.form-benefits ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--light-text);
    justify-content: flex-start;
}

.form-benefits i {
    color: var(--primary-color);
    width: 20px;
}

.form-submit-container {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.trust-seals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
}

.seal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.seal i {
    font-size: 2rem;
    color: white;
}

.seal span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Results Page */
.results-content {
    max-width: 800px;
    margin: 0 auto;
}

.risk-assessment {
    margin-bottom: 3rem;
}

.risk-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.risk-card.risk-high {
    border-color: var(--danger-color);
    background: rgba(239, 68, 68, 0.1);
}

.risk-card.risk-medium {
    border-color: var(--warning-color);
    background: rgba(245, 158, 11, 0.1);
}

.risk-card.risk-low {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
}

.risk-icon {
    font-size: 3rem;
}

.risk-high .risk-icon {
    color: var(--danger-color);
}

.risk-medium .risk-icon {
    color: var(--warning-color);
}

.risk-low .risk-icon {
    color: var(--success-color);
}

.risk-info {
    flex: 1;
}

.risk-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.risk-high {
    color: var(--danger-color);
}

.risk-medium {
    color: var(--warning-color);
}

.risk-low {
    color: var(--success-color);
}

.risk-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.risk-bar {
    flex: 1;
    height: 10px;
    background: var(--dark-bg);
    border-radius: 5px;
    overflow: hidden;
}

.risk-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.results-summary {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.results-summary h3 {
    color: white;
    margin-bottom: 1rem;
}

.results-summary p {
    color: var(--light-text);
    line-height: 1.6;
}

.findings {
    margin-bottom: 2rem;
}

.findings h3 {
    color: white;
    margin-bottom: 1rem;
}

.findings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.finding-item {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.finding-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.finding-item h4 {
    color: white;
    flex: 1;
}

.finding-risk {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.finding-risk.alto {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
}

.finding-risk.medio {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-color);
}

.finding-risk.baixo {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.finding-item p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.finding-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.finding-link:hover {
    text-decoration: underline;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: var(--dark-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.popup-header h3 {
    color: var(--dark-text);
    margin: 0;
    font-size: 1.25rem;
}

.popup-close {
    background: transparent;
    border: none;
    color: var(--light-text);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: var(--muted-bg);
    color: var(--dark-text);
}

.popup-body {
    padding: 1.5rem;
}

.popup-body p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.popup-actions .btn {
    flex: 1;
}

.btn-secondary {
    background: var(--muted-bg);
    color: var(--dark-text);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--danger-color);
}

/* Analysis Form Updates */
.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--dark-text);
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.875rem;
    background: var(--muted-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group select option {
    background: var(--dark-card);
    color: var(--dark-text);
}

/* Lead Type Badges */
.lead-type {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lead-type-nome_completo {
    background: rgba(52, 199, 89, 0.2);
    color: var(--success-color);
}

.lead-type-nome_empresa {
    background: rgba(0, 122, 255, 0.2);
    color: var(--primary-color);
}

.lead-type-cnpj {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-color);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-novo {
    background: rgba(88, 86, 214, 0.2);
    color: var(--secondary-color);
}

.status-contatado {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-color);
}

.status-convertido {
    background: rgba(52, 199, 89, 0.2);
    color: var(--success-color);
}

/* Lead Table Styles */
.lead-identifier {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lead-contact {
    font-size: 0.9rem;
    color: var(--light-text);
}

.lead-contact i {
    margin-right: 0.25rem;
    color: var(--primary-color);
}

.lead-ip {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.8rem;
    color: var(--light-text);
    cursor: help;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.25rem;
}

.btn-action {
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.btn-action:hover {
    background: var(--muted-bg);
}

.btn-action.edit {
    color: var(--primary-color);
}

.btn-action.contact {
    color: var(--warning-color);
}

.btn-action.convert {
    color: var(--success-color);
}

.btn-action.delete {
    color: var(--danger-color);
}

.btn-action.edit:hover,
.btn-action.contact:hover,
.btn-action.convert:hover,
.btn-action.delete:hover {
    transform: scale(1.1);
}

/* Form identifier info */
.identifier-info {
    background: var(--muted-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    border-left: 3px solid var(--primary-color);
}

.identifier-info i {
    color: var(--primary-color);
}

.identifier-info strong {
    color: var(--dark-text);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.recommendations {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    text-align: center;
}

.recommendations h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.recommendations-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.recommendations-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
    justify-content: center;
    text-align: center;
}

.recommendations-list i {
    color: var(--success-color);
}

/* Botão CTA Final */
.final-cta-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #007AFF;
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 122, 255, 0.4);
    background: #0056CC;
    color: white;
    text-decoration: none;
}

.final-cta-button:active {
    transform: translateY(-1px);
}

.final-cta-button i {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Centralizar botão da página de análise */
.analysis-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.analysis-button-container .btn {
    margin: 0 auto;
}

/* User Management Styles */
.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-type {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.user-type.admin {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.user-type.user {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

.toggle-container {
    margin: 1rem 0;
}

.toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: white;
}

.toggle-text {
    font-size: 1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: .4s;
    border-radius: 34px;
    border: 2px solid var(--border-color);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.toggle-input:focus + .toggle-slider {
    box-shadow: 0 0 1px var(--primary-color);
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-description {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.user-form {
    max-width: 600px;
}

.user-form .form-group {
    margin-bottom: 1.5rem;
}

.form-help {
    color: var(--light-text);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.user-details {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

/* Permissions Section */
.permissions-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.permissions-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.permissions-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.permission-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--muted-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.permission-item:hover {
    background: rgba(0, 122, 255, 0.05);
    border-color: var(--primary-color);
}

.permission-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.permission-icon i {
    color: white;
    font-size: 1.2rem;
}

.permission-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.permission-label {
    cursor: pointer;
    flex: 1;
    margin-right: 1rem;
}

.permission-title {
    display: block;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.permission-desc {
    display: block;
    color: var(--light-text);
    font-size: 0.85rem;
}

.permission-item .toggle-switch {
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.permission-item .toggle-slider {
    border-radius: 28px;
}

.permission-item .toggle-slider:before {
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
}

.permission-item .toggle-input:checked + .toggle-slider:before {
    transform: translateX(22px);
}
}

.user-details h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-item {
    margin-bottom: 0.75rem;
    color: var(--light-text);
}

.detail-item strong {
    color: white;
}

.user-info-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* Access report specific styles */
.admin-table-container {
    margin-top: 2rem;
}

.admin-table td code {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.875rem;
}

.admin-table td small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.admin-table .text-muted {
    color: rgba(255, 255, 255, 0.5);
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.device-badge.device-desktop {
    background: rgba(0, 122, 255, 0.2);
    color: #007AFF;
}

.device-badge.device-mobile {
    background: rgba(52, 199, 89, 0.2);
    color: #34C759;
}

.device-badge.device-tablet {
    background: rgba(255, 149, 0, 0.2);
    color: #FF9500;
}

.device-badge i {
    font-size: 0.875rem;
}

/* Filters section */
.filters-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-form .form-group {
    display: flex;
    flex-direction: column;
}

.filter-form label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.filter-form .form-control {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.875rem;
}

.filter-form .form-control:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 2px rgba(0, 122, 255, 0.2);
}

.filter-form .form-control option {
    background: #1C1C1E;
    color: #fff;
}

/* Admin section */
.admin-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.admin-section h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.access-table {
    overflow-x: auto;
}

.access-table table {
    min-width: 800px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pagination .page-link {
    padding: 0.5rem 1rem;
    background: rgba(0, 122, 255, 0.2);
    color: #007AFF;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: rgba(0, 122, 255, 0.3);
}

.pagination .page-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.action-buttons .btn {
    padding: 0.5rem;
    min-width: auto;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--light-text);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.empty-state h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.empty-state p {
    margin-bottom: 1.5rem;
}

/* Admin Login Styles */
.login-page {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header .logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-header h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.login-header p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.login-form {
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: var(--light-text);
    z-index: 1;
}

.input-group input {
    padding-left: 3rem;
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--darker-bg);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-color);
}

.security-notice {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-notice i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .toggle-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        flex: none;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .login-card {
        padding: 1.5rem;
    }
    
    .login-header .logo {
        font-size: 1.5rem;
    }
    
    .security-notice {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        transform: none;
        text-align: center;
    }
}

.action-cta {
    background: #007AFF;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.cta-card h3 {
    color: white;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.cta-button-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-button-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.cta-button i {
    font-size: 1.2rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.benefit-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-align: center;
}

.benefit-line i {
    font-size: 1rem;
    color: white;
}

/* Success Page */
.success-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.success-message {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.success-message p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.step-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.step-card .step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.step-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--light-text);
}

.contact-info {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-text);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

/* Footer */
.footer {
    background: var(--dark-card);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-logo i {
    font-size: 1.5rem;
}

.footer p {
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-quote {
        margin: 1.5rem 0;
        padding: 1rem 1.5rem;
    }
    
    .hero-quote::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .quote-text {
        font-size: 1rem;
        padding-left: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-seals {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .seal {
        min-width: 200px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .finding-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .finding-title-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .risk-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .quote-form,
    .analysis-form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
    }
}

/* Admin Panel Styles */
.admin-page {
    padding: 8rem 0 4rem;
    margin-top: 80px;
    min-height: 100vh;
}

.admin-page .container {
    max-width: 100%;
    margin: 0;
    padding: 0 1.5rem 0 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-header h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.admin-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: var(--dark-card);
    color: var(--dark-text);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn:hover, .nav-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.logout-btn {
    background: var(--danger-color) !important;
    border-color: var(--danger-color) !important;
    color: white !important;
}

.logout-btn:hover {
    background: #d70015 !important;
    border-color: #d70015 !important;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
}

.admin-content {
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.admin-toolbar {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: space-between;
}

.admin-toolbar h2 {
    color: white;
    font-size: 1.3rem;
    flex: 1;
}

.search-box {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-box input {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    min-width: 250px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.data-table th {
    background: var(--muted-bg);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    color: var(--light-text);
}

.data-table tbody tr:hover {
    background: var(--muted-bg);
}

/* Table Responsiveness */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

/* Coluna ID - compacta */
.data-table th:first-child,
.data-table td:first-child {
    width: 60px;
}

/* Última coluna (Ações) - fixa */
.data-table th:last-child,
.data-table td:last-child {
    width: 120px;
    text-align: center;
}

/* Ocultar coluna IP em telas menores */
.data-table th.hide-on-mobile,
.data-table td.hide-on-mobile {
    display: table-cell;
}

@media (max-width: 1400px) {
    .data-table th.hide-on-mobile,
    .data-table td.hide-on-mobile {
        display: none;
    }
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-pendente {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-color);
}

.status-andamento {
    background: rgba(34, 197, 94, 0.2);
    color: var(--primary-color);
}

.status-concluido {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.status-cancelado {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-color);
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit {
    background: var(--primary-color);
    color: white;
}

.btn-edit:hover {
    background: var(--secondary-color);
}

.btn-delete {
    background: var(--danger-color);
    color: white;
}

.btn-delete:hover {
    background: #dc2626;
}

.btn-view {
    background: var(--accent-color);
    color: white;
}

.btn-view:hover {
    background: var(--primary-color);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: between;
    align-items: center;
}

.modal-header h3 {
    color: white;
    font-size: 1.2rem;
    flex: 1;
}

.modal-close {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.modal-close:hover {
    color: white;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.pagination-btn {
    background: var(--dark-bg);
    color: var(--light-text);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.admin-sidebar {
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    height: fit-content;
}

.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--light-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-nav i {
    width: 16px;
    text-align: center;
}

.finding-image {
    width: 100%;
    max-width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

/* Google Dorks Results Styles */
.finding-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.finding-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
    background: white;
    padding: 4px;
    border: 1px solid var(--border-color);
}

.finding-icon-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--muted-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    border: 1px solid var(--border-color);
}

.finding-title-content {
    flex: 1;
}

.finding-title-content h4 {
    margin: 0 0 0.25rem 0;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.finding-source {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.finding-source:before {
    content: "🔍";
    font-size: 0.7rem;
}

.finding-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.finding-dork-info {
    color: var(--light-text);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.finding-dork-info i {
    color: var(--primary-color);
}

/* Export Dropdown Styles */
.export-buttons {
    display: flex;
    align-items: center;
}

.export-dropdown {
    position: relative;
    display: inline-block;
}

.btn-export {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-export:hover {
    background: #28a745;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(52, 199, 89, 0.3);
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-menu.show .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

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

.dropdown-item:hover {
    background: var(--muted-bg);
    color: white;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--primary-color);
}

.dropdown-item:hover i {
    color: var(--accent-color);
}

/* Dashboard Export Buttons */
.export-buttons-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.export-buttons-group .btn {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.action-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .action-cta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .export-buttons-group {
        flex-direction: column;
    }
    
    .export-buttons-group .btn {
        flex: none;
    }
}

@media (max-width: 1024px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        order: -1;
    }
    
    .sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .sidebar-nav li {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .admin-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbar-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input {
        min-width: 100%;
    }
    
    .export-buttons {
        justify-content: center;
    }
    
    .dropdown-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .dropdown-menu.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .data-table {
        font-size: 0.9rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-card h2 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem 1rem;
    }
    
    .contact-item span {
        font-size: 0.9rem;
    }
}

/* Reset Password Styles */
.reset-password-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.reset-password-warning i {
    font-size: 48px;
    color: #ffc107;
    margin-bottom: 15px;
}

.reset-password-warning h3 {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.reset-password-warning p {
    margin-bottom: 10px;
    color: #ccc;
}

.user-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-item .label {
    font-weight: 600;
    color: #007AFF;
}

.detail-item .value {
    color: #fff;
    font-weight: 500;
}

.btn-warning {
    background: #ffc107;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: #ffca28;
    transform: translateY(-2px);
}

/* Permissions Section Styles */
.permissions-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.permissions-section h3 {
    color: #007AFF;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.permission-group {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px;
}

.permission-group h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.permission-item {
    margin-bottom: 10px;
}

.permission-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ccc;
    font-size: 0.9rem;
}

.permission-label input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #007AFF;
}

.permission-label span {
    user-select: none;
}

.permission-label:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .permissions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .permission-group {
        padding: 12px;
    }
}

/* Export Buttons Vertical Layout */
.export-buttons-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-export {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 200px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-export::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;
}

.btn-export:hover::before {
    left: 100%;
}

.btn-export:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.btn-export i {
    font-size: 1.1rem;
    color: #007AFF;
}

.btn-export span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-export:active {
    transform: translateY(0);
}

/* Specific colors for each export type */
.btn-export:nth-child(1) i {
    color: #28a745; /* Green for CSV */
}

.btn-export:nth-child(2) i {
    color: #007AFF; /* Blue for Excel */
}

.btn-export:nth-child(3) i {
    color: #dc3545; /* Red for PDF */
}

@media (max-width: 768px) {
    .export-buttons-vertical {
        gap: 10px;
    }
    
    .btn-export {
        width: 180px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ============================================
   SEÇÃO DE CONVERSÃO IMPACTANTE - Apple Dark Design
   ============================================ */

/* Seção de Conversão - Azul Navy Sólido */
.conversion-section {
    background: #1a2937;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Header de Conversão */
.conversion-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.conversion-headline {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.warning-icon {
    display: inline-block;
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.conversion-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.conversion-subtitle strong {
    color: #fbbf24;
    font-weight: 700;
}

.highlight-text {
    color: #fbbf24;
    font-weight: 600;
}

/* Título das Descobertas */
.discoveries-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.subtitle-impact {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Grid de Cards com Glassmorphism - 3 colunas x 2 linhas */
.discoveries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

/* Cards com Efeito Glassmorphism */
.discovery-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.discovery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.discovery-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(251, 191, 36, 0.2);
}

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

/* Ícones dos Cards */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.discovery-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.discovery-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Impacto do Card */
.card-impact {
    background: rgba(251, 191, 36, 0.15);
    border-left: 4px solid #fbbf24;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.impact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-impact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.card-impact strong {
    color: #fbbf24;
}

/* Bloco de Reflexão Emocional */
.reflection-block {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reflection-quote {
    position: relative;
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 2.5rem;
    color: #fbbf24;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    line-height: 1.5;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.reflection-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.reflection-message strong {
    color: #fbbf24;
}

/* CTA de Conversão */
.cta-conversion {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.3); }
    50% { box-shadow: 0 0 50px rgba(251, 191, 36, 0.5); }
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-benefits {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

/* Botão CTA Principal */
.btn-cta-conversion {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-conversion::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-conversion:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-conversion:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.6);
}

.cta-scarcity {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.cta-scarcity strong {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .conversion-headline {
        font-size: 2rem;
    }
    
    .conversion-subtitle {
        font-size: 1.1rem;
    }
    
    .discoveries-title {
        font-size: 1.6rem;
    }
    
    .discoveries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quote-text {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .btn-cta-conversion {
        font-size: 1.2rem;
        padding: 1.2rem 2.5rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   BANNER DE CONSENTIMENTO DE COOKIES - LGPD
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid rgba(251, 191, 36, 0.3);
    padding: 1.5rem 0;
    z-index: 10000;
    animation: slideUp 0.5s ease-out;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.cookie-icon {
    font-size: 2.5rem;
    color: #fbbf24;
}

.cookie-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text strong {
    color: white;
    font-size: 1.1rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-refuse {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-cookie-refuse {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-refuse:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-text {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-cookie-accept,
    .btn-cookie-refuse {
        flex: 1;
    }
}


/* Responsividade para tablets - 2 colunas */
@media (max-width: 1024px) and (min-width: 769px) {
    .discoveries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   SEÇÃO DE FAQ (PERGUNTAS FREQUENTES)
   ============================================ */

.faq-section {
    margin: 5rem 0 4rem;
    padding: 0 1rem;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #fbbf24;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.2rem;
    color: #fbbf24;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

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

/* ============================================
   CTA FINAL ATUALIZADO
   ============================================ */

.cta-provocative {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cta-provocative-bold {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

.cta-button-giant {
    text-align: center;
    margin: 2rem 0;
}

.giant-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.btn-cta-conversion {
    font-size: 1.3rem !important;
    padding: 2rem 3rem !important;
    font-weight: 800 !important;
}

/* Responsividade FAQ */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }
    
    .cta-provocative {
        font-size: 1.2rem;
    }
    
    .cta-provocative-bold {
        font-size: 1.4rem;
    }
    
    .btn-cta-conversion {
        font-size: 1.1rem !important;
        padding: 1.5rem 2rem !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}
