/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS - Dark Theme como Padrão */
:root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3d3d3d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --border-color: #404040;
    --shadow: rgba(0, 0, 0, 0.3);
    --accent-primary: #7c8cff;
    --accent-secondary: #8b5cf6;
    --success: #4ade80;
    --warning: #fbbf24;
    --danger: #f87171;
    --info: #22d3ee;
}

/* Light Theme Variables */
[data-theme="light"] {
    --bg-primary: #ffffff !important;
    --bg-secondary: #f8f9fa !important;
    --bg-tertiary: #e9ecef !important;
    --text-primary: #212529 !important;
    --text-secondary: #6c757d !important;
    --text-muted: #adb5bd !important;
    --border-color: #dee2e6 !important;
    --shadow: rgba(0, 0, 0, 0.1) !important;
    --accent-primary: #667eea !important;
    --accent-secondary: #764ba2 !important;
    --success: #28a745 !important;
    --warning: #ffc107 !important;
    --danger: #dc3545 !important;
    --info: #17a2b8 !important;
}

/* Forçar light theme em elementos específicos */
[data-theme="light"] body {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .model-card {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

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

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

/* Dark theme para inputs e selects */
[data-theme="light"] input,
[data-theme="light"] select {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

[data-theme="light"] input::placeholder {
    color: var(--text-muted) !important;
}

[data-theme="light"] input:focus,
[data-theme="light"] select:focus {
    border-color: var(--accent-primary) !important;
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* Dark theme para checkboxes */
[data-theme="light"] input[type="checkbox"] {
    accent-color: var(--accent-primary) !important;
}

/* Dark theme para botões */
[data-theme="light"] .search-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%) !important;
    color: white !important;
}

[data-theme="light"] .apply-filters-btn {
    background: linear-gradient(135deg, var(--success) 0%, #20c997 100%) !important;
    color: white !important;
}

/* Dark theme para todas as seções */
[data-theme="light"] section {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

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

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

[data-theme="light"] .search-container {
    background-color: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
}

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

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

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

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

[data-theme="light"] .footer-section h3,
[data-theme="light"] .footer-section h4 {
    color: var(--warning) !important;
}

[data-theme="light"] .footer-section ul li a {
    color: var(--text-muted) !important;
}

[data-theme="light"] .footer-section ul li a:hover {
    color: var(--warning) !important;
}

[data-theme="light"] .footer-bottom {
    border-top-color: var(--border-color) !important;
    color: var(--text-muted) !important;
}

/* Dark theme para hero-search */
[data-theme="light"] .hero-search {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--text-primary) !important;
}

/* Dark theme para elementos comuns */
[data-theme="light"] .anunciar-form-container,
[data-theme="light"] .sobre-card,
[data-theme="light"] .detail-section,
[data-theme="light"] .stat-card,
[data-theme="light"] .form-container,
[data-theme="light"] .card,
[data-theme="light"] .info-card,
[data-theme="light"] .content-card {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

/* Dark theme para formulários */
[data-theme="light"] .form-group,
[data-theme="light"] .form-section,
[data-theme="light"] .form-container {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

/* Dark theme para seções de conteúdo */
[data-theme="light"] .content-section,
[data-theme="light"] .info-section,
[data-theme="light"] .details-section {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* Dark theme universal - força todos os elementos */
[data-theme="light"] * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

/* Dark theme para qualquer elemento com background branco */
[data-theme="light"] [style*="background: white"],
[data-theme="light"] [style*="background-color: white"],
[data-theme="light"] [style*="background: #fff"],
[data-theme="light"] [style*="background: #ffffff"],
[data-theme="light"] [style*="background: rgba(255, 255, 255"] {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* Dark theme para elementos específicos mencionados */
[data-theme="light"] .hero-search {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .anunciar-form-container {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}

[data-theme="light"] .sobre-card {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}

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

[data-theme="light"] .stat-card {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}

/* Garantir que textos dos inputs fiquem brancos no dark theme */
input, select, textarea {
    color: var(--text-primary) !important;
}

/* Garantir que placeholders fiquem visíveis */
input::placeholder, textarea::placeholder {
    color: var(--text-muted) !important;
    opacity: 1;
}

/* Garantir que textos do hero fiquem sempre brancos */
.hero-content h1,
.hero-content p {
    color: white !important;
}

/* Range Selector Styles */
.range-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.range-selector label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.range-inputs input[type="number"] {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.range-inputs input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(124, 140, 255, 0.1);
}

.range-separator {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
}

.range-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #000;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #fff;
}

.range-display .current-range {
    font-weight: 600;
    color: var(--accent-primary);
    background: rgba(102, 126, 234, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Responsive adjustments for range selectors */
@media (max-width: 768px) {
    .range-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .range-separator {
        display: none;
    }
}

/* Filter Group Separators */
.filter-separator {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 1.5rem 0;
    border: none;
}

.filter-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin: 1rem 0 0.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    grid-column: 1 / -1; /* Faz o título ocupar toda a largura do grid */
    width: 100%;
    display: block;
    text-align: left;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

[data-theme="light"] .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Menu de Navegação */
.navbar {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo .logo-text {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--bg-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section com Busca */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    padding: 2rem 0;
}

.hero-content {
    max-width: 1360px;
    width: 100%;
    padding: 16px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    color: white !important;
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 3rem;
    color: white !important;
}

/* Busca no Hero */
.hero-search {
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    max-width: 1360px;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.hero-search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-search .search-bar {
    display: flex;
    gap: 1rem;
}

.hero-search .search-bar input {
    flex: 1;
    padding: 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.hero-search .search-bar input:focus {
    outline: none;
    border-color: #667eea;
}

.hero-search .search-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.hero-search .search-btn:hover {
    transform: translateY(-2px);
}

.hero-search .filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

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

.hero-search .filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.hero-search .filter-group select,
.hero-search .filter-group input {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.hero-search .filter-group select:focus,
.hero-search .filter-group input:focus {
    outline: none;
    border-color: #667eea;
}

.hero-search .service-filters {
    margin-bottom: 1rem;
}

.hero-search .service-filters h3 {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.hero-search .service-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    padding: 1rem;
}

.hero-search .service-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hero-search .service-checkboxes label:hover {
    background-color: var(--bg-secondary);
}

.hero-search .service-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    cursor: pointer;
}

.hero-search .apply-filters-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-search .apply-filters-btn:hover {
    transform: translateY(-2px);
}

/* Seção de Busca (quando não está no hero) */
.search-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.search-container {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.search-bar {
    display: flex;
    gap: 1rem;
}

.search-bar input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.search-bar input:focus {
    outline: none;
    border-color: #667eea;
}

.search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
}

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

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

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.filter-group select,
.filter-group input {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #667eea;
}

.service-filters {
    margin-bottom: 2rem;
}

.service-filters h3 {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.service-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    padding: 1rem;
}

.service-checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.service-checkboxes label:hover {
    background-color: var(--bg-secondary);
}

.service-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    cursor: pointer;
}

.apply-filters-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.apply-filters-btn:hover {
    transform: translateY(-2px);
}

/* Grid de Modelos */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 2rem;
}

.model-card {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border-color);
    will-change: transform, box-shadow, background-color;
    position: relative;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.model-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    will-change: transform, opacity, filter;
}

.model-card:hover .model-image {
    transform: scale(1.05);
    opacity: 0.9;
    filter: brightness(1.1) contrast(1.05);
}

.model-info {
    padding: 1rem;
}

.model-name {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    transition: color 0.3s ease;
    gap: 0.5rem;
    height: 30px;
    overflow: hidden;
}

.featured-badge {
    background: #000;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.model-details {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    height: 18px;
    overflow: hidden;
}

.model-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    height: 70px;
}

.service-tag {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gender-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.sexuality-tag {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    font-weight: 600;
}

.model-actions {
    display: flex;
    gap: 0.25rem;
}

.action-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn i {
    font-size: 1.5rem;
}

.profile-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.telegram-btn {
    background: #0088cc;
    color: white;
}

.patreon-btn {
    background: #ff424d;
    color: white;
}

.privacy-btn {
    background: #6c5ce7;
    color: white;
}

.kofi-btn {
    background: #ff5e5b;
    color: white;
}

.onlyfans-btn {
    background: #00aff0;
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Acordeões para Filtros */
.filter-accordion {
    margin-bottom: 1rem;
}

.accordion-header {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.accordion-header:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
}

.accordion-header.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 1rem;
}

.accordion-content .filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 0;
}

/* Seções */
.featured-models,
.all-models {
    padding: 4rem 0;
}

.featured-models {
    background: var(--bg-primary);
}

.all-models {
    background: var(--bg-secondary);
}

.featured-models h2,
.all-models h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
}

/* Estilos para página da modelo */
.model-profile {
    padding: 0;
}

.model-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.model-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.model-basic-info {
    background: var(--bg-secondary);
    padding: 0;
    border-radius: 15px;
}

.model-basic-info h1 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

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

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

.info-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.info-value {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.model-services-section {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.model-services-section h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

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

.service-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-gallery {
    margin: 2rem 0;
}

.model-gallery h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.model-content {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.model-content h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.model-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Botão de Geolocalização */
.geolocation-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.geolocation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.geolocation-btn i {
    font-size: 1rem;
}

/* Toast de Notificação */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px var(--shadow);
    border-left: 4px solid var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left-color: #28a745;
}

.toast-error {
    border-left-color: #dc3545;
}

.toast i {
    font-size: 1.2rem;
}

.toast-success i {
    color: #28a745;
}

.toast-error i {
    color: #dc3545;
}

/* Footer */
.footer {
    background: #000;
    color: #fff !important;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--warning);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--warning);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 24px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-search {
        padding: 1.5rem;
    }

    .hero-search-bar {
        flex-direction: column;
    }

    .hero-filters {
        grid-template-columns: 1fr;
    }

    .filters {
        grid-template-columns: 1fr;
    }

    .service-checkboxes {
        grid-template-columns: 1fr;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .model-actions {
        flex-direction: row;
    }
    
    .model-info {
        padding: 0.5rem;
    }

    .model-header {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Loading */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.loading i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   FAQ STYLES
   ======================================== */

.faq-section {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-primary);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-primary);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Active State */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
    }
}
