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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --secondary-color: #00a8e8;
    --accent-color: #ff6b35;
    --accent-dark: #e55a2b;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --font-primary: 'Poppins', sans-serif;
    --max-width: 1200px;
    --spacing: 1rem;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15), 0 4px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

main {
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    margin-bottom: 0;
    padding-bottom: 0;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    margin: 0;
    position: relative;
    flex-wrap: wrap;
    gap: 1rem;
}

.navbar-brand h1 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.navbar-brand .logo-fallback {
    display: none;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-menu li {
    display: flex;
    align-items: center;
}

.navbar-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: inline-block;
    white-space: nowrap;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-auth {
    margin-left: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.btn-login-header {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.btn-login-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.btn-login-header:hover {
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.btn-login-header:hover::after {
    width: 100%;
}

.auth-dropdown {
    position: relative;
}

.auth-toggle {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    white-space: nowrap;
}

.auth-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.auth-toggle:hover {
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.auth-dropdown:hover .auth-toggle::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.auth-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.auth-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    overflow: hidden;
}

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

.auth-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.auth-menu a:last-child {
    border-bottom: none;
}

.auth-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 2rem;
}

/* Language Selector - Bandeiras */
.navbar-lang {
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
}

.lang-flags {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lang-flag {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none;
    opacity: 0.6;
    transition: var(--transition);
    padding: 0.2rem;
    border-radius: 4px;
}

.lang-flag:hover {
    opacity: 1;
    transform: scale(1.15);
    background: rgba(0, 102, 204, 0.1);
}

.lang-flag.active {
    opacity: 1;
    transform: scale(1.2);
    background: rgba(0, 102, 204, 0.15);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Banner Grande com Carrossel */
.hero-carousel {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    margin: 0 !important;
    padding: 0 !important;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 85vh;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 1;
}

/* Botões de navegação do carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Indicadores do carrossel */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
    background: #fff;
    border-color: #fff;
    width: 30px;
    border-radius: 6px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin-top: 1rem;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Seção de Busca abaixo do Banner */
.hero-search-section {
    padding: 3rem 0;
    background: #fff;
}

.hero-search {
    max-width: 700px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0.95;
}

.search-form {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 2px solid var(--border-color);
}

.search-input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    background: transparent;
    outline: none;
    color: var(--text-color);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.category-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 0.4;
}

.category-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-card h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Locais Grid */
.locais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.local-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.local-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

.local-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.local-card:hover::after {
    opacity: 1;
}

.local-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 2;
}

.local-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.local-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.local-card:hover .local-image img {
    transform: scale(1.15);
}

.no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.local-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--accent-color);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    pointer-events: none;
    z-index: 3;
}

.local-rating span {
    font-size: 0.85rem;
    line-height: 1;
    display: inline-block;
}

.local-info {
    padding: 2rem;
}

.local-info h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.local-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.local-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Filters */
.filters {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 0;
    box-shadow: var(--shadow);
}

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

.filter-row-main {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-row-advanced {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.filter-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 180px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition);
    background: #fff;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.filter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.filter-checkbox:hover {
    background: rgba(0, 102, 204, 0.1);
}

.filter-checkbox input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.filter-checkbox span {
    font-size: 0.9rem;
    user-select: none;
}

/* Favoritos e Compartilhamento */
.page-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-favorite {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-favorite:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
}

.btn-favorite.active {
    background: #ffeef0;
    border-color: #ff6b9d;
    color: #ff6b9d;
}

.btn-add-roteiro {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: var(--font-primary);
}

.btn-add-roteiro:hover {
    background: #f0f8ff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-share {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-share:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Animações para notificações */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Acessibilidade */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}

/* Focus visible para melhor acessibilidade */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

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

.btn-secondary {
    background: var(--text-light);
    color: #fff;
}

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

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem 0;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 0.7rem 1.2rem;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    font-weight: 500;
}

.pagination-link:hover,
.pagination-link.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination-ellipsis {
    padding: 0.7rem;
    color: var(--text-light);
}

/* Local Detail */
.local-detail {
    margin: 3rem 0;
}

.local-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
}

.local-meta {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.local-location {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
}

.local-rating-large {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    line-height: 1.5;
    vertical-align: middle;
}

.local-rating-large strong {
    font-size: 1rem;
    color: var(--accent-color);
    line-height: 1;
}

.local-rating-large span:not(.stars) {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1;
}

.local-rating-large .stars {
    font-size: 0.75rem;
    line-height: 1;
    display: inline-block;
}

.local-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    margin-top: 3rem;
}

.local-main {
    min-width: 0;
}

.local-description h2,
.local-videos h2,
.local-drone h2,
.local-location-full h2 {
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.local-reviews {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.local-reviews h2 {
    margin: 0 0 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.local-description h2::after,
.local-videos h2::after,
.local-drone h2::after,
.local-location-full h2::after,
.local-reviews h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.description-text {
    line-height: 1.9;
    color: var(--text-color);
    font-size: 1.05rem;
}

/* Gallery - Carrossel */
.local-gallery {
    margin: 3rem 0;
}

.gallery-carousel {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--dark-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.gallery-indicator.active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

/* Hero Banner Full Width para Cidade */
.cidade-hero-banner {
    width: 100%;
    margin: 0;
    margin-bottom: 3rem;
}

.gallery-full-width {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.gallery-full-width .gallery-slides {
    padding-bottom: 35%; /* Altura reduzida */
}

@media (max-width: 768px) {
    .gallery-full-width .gallery-slides {
        padding-bottom: 45%; /* Altura reduzida em mobile */
    }
}

.gallery-full-width .gallery-slide {
    position: absolute;
}

.gallery-full-width .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-parallax-img {
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    pointer-events: auto;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Videos */
.videos-grid {
    display: grid;
    gap: 2rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.video-item iframe,
.video-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

/* Drone Grid */
.drone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.drone-grid img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.drone-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* Sidebar */
.local-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.info-box h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 700;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border-color);
}

.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-list strong {
    display: inline-block;
    color: var(--dark-color);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.3;
    vertical-align: middle;
}

.info-list span {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.3;
    flex: 1;
    vertical-align: middle;
}

.info-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    line-height: 1.3;
    vertical-align: middle;
}

.info-list a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.facilities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.facilities-list li {
    padding: 0.5rem 0.4rem;
    background: #fff;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.facility-icon {
    font-size: 2rem;
    line-height: 1;
    display: block;
}

.facility-text {
    font-size: 0.75rem;
    line-height: 1.2;
}

.facilities-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Reviews */
.review-form-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.8rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.review-form-container h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.review-form {
    display: grid;
    gap: 1.2rem;
}

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

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

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.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(0, 102, 204, 0.1);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.review-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.review-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-left-color: var(--primary-color);
    transform: translateX(3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.review-header strong {
    font-size: 1rem;
    color: var(--dark-color);
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-stars {
    font-size: 0.9rem;
    line-height: 1;
    display: inline-block;
}

.review-item h4 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--dark-color);
}

.review-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0.5rem 0 0;
}

.no-reviews {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-style: italic;
}

.more-reviews {
    text-align: center;
    padding: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Estabelecimentos */
.estabelecimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.estabelecimento-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.estabelecimento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.estabelecimento-tipo {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.estabelecimento-tipo-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
}

/* Estabelecimento Detail - Mesmos estilos de local */
.estabelecimento-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
}

.estabelecimento-meta {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.estabelecimento-location {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
}

.estabelecimento-rating-large {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    line-height: 1.5;
    vertical-align: middle;
}

.estabelecimento-rating-large strong {
    font-size: 1rem;
    color: var(--accent-color);
    line-height: 1;
}

.estabelecimento-rating-large span:not(.stars) {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1;
}

.estabelecimento-rating-large .stars {
    font-size: 0.75rem;
    line-height: 1;
    display: inline-block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-height: 35px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-title-fallback {
    margin-bottom: 0;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: #fff;
    text-decoration: none;
}

.social-links a.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.social-links a.social-icon svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.social-links a.social-icon:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Breadcrumb */
.breadcrumb {
    margin: 2rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Ads */
.ads-banner {
    margin: 3rem 0;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.ads-top {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    line-height: 0;
    height: auto;
    display: block;
}

.ads-top ins {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ads-hero {
    margin: 0;
    padding: 1rem 0;
    background: #f8f9fa;
    width: 100%;
}

.ads-middle {
    margin: 3rem 0;
}

.ads-bottom {
    margin-bottom: 0;
}

/* Alerts */
.alert {
    padding: 1.2rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
}

.no-results h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Page Header */
.page-header {
    margin: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cidades Grid */
.cidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.cidade-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 100%;
}

.cidade-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.cidade-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.cidade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.cidade-card:hover .cidade-image img {
    transform: scale(1.1);
}

.cidade-info {
    padding: 0.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cidade-card h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.cidade-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Login Page */
.login-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.login-container {
    max-width: 450px;
    width: 100%;
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

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

.login-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

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

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

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.login-form input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: #fff;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-block {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

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

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.login-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.alert-danger {
    background: #fee;
    color: #c33;
    padding: 1rem 1.2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--error-color);
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow);
        gap: 1rem;
        z-index: 999;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-auth {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .navbar-lang {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .lang-flags {
        gap: 0.5rem;
    }
    
    .lang-flag {
        font-size: 1.4rem;
    }
    
    .auth-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        border: 1px solid var(--border-color);
    }
    
    .auth-dropdown:hover .auth-menu {
        transform: none;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .local-content {
        grid-template-columns: 1fr;
    }
    
    .local-sidebar {
        position: static;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .categories-grid,
    .locais-grid,
    .estabelecimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .search-form {
        flex-direction: column;
        border-radius: var(--border-radius);
        padding: 1rem;
    }
    
    .search-input {
        border-radius: var(--border-radius);
    }
    
    .search-btn {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.about-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.about-section {
    margin: 4rem 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
}

.about-intro-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

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

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.about-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-card h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

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

.feature-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-why {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    margin: 4rem 0;
}

.about-why-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-why-content h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.why-check {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.why-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-why {
        padding: 2rem 1rem;
    }
    
    .about-why-content h2 {
        font-size: 2rem;
    }
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.contact-alert {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info-wrapper {
    padding: 2rem;
}

.contact-form-header,
.contact-info-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.contact-form-header h2,
.contact-info-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-header p,
.contact-info-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

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

.contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.contact-info-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    display: block;
}

.contact-info-card h3 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-social {
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.contact-social h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.social-card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    display: block;
}

.social-card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit;
}

/* Cidade Detail */
.cidade-detail {
    margin: 3rem 0;
}

.cidade-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
}

.cidade-meta {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cidade-location {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
}

.cidade-gallery {
    margin: 3rem 0;
}

.cidade-content {
    margin-top: 3rem;
}

.cidade-main {
    min-width: 0;
}

.cidade-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cidade-description {
    min-width: 0;
}

.cidade-info-section {
    min-width: 0;
}

.cidade-description h2,
.cidade-info-section h2,
.cidade-historia-full h2,
.cidade-economia-full h2,
.cidade-mapa-full h2,
.cidade-locais h2,
.cidade-estabelecimentos h2 {
    margin: 0 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.cidade-description h2::after,
.cidade-info-section h2::after,
.cidade-historia-full h2::after,
.cidade-economia-full h2::after,
.cidade-mapa-full h2::after,
.cidade-locais h2::after,
.cidade-estabelecimentos h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.cidade-historia-full,
.cidade-economia-full {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.cidade-mapa-full {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.cidade-locais,
.cidade-estabelecimentos {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.cidade-empty {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.cidade-historia h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.cidade-historia h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.mapa-container {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #f0f0f0;
}

.mapa-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
    min-height: 300px;
}

.mapa-actions {
    margin-top: 1rem;
    text-align: center;
}

.mapa-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Responsividade para cidade-detail */
@media (max-width: 968px) {
    .cidade-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mapa-container iframe {
        height: 300px;
    }
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .social-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-header h2,
    .contact-info-header h2 {
        font-size: 1.6rem;
    }
}

/* Mapa Interativo - Locais Próximos */
.section-map {
    background: #f8f9fa;
    padding: 3rem 0;
}

.map-container-wrapper {
    position: relative;
    margin-top: 2rem;
}

.map-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    align-items: flex-end;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 150px;
}

.control-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.control-select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: #fff;
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
}

.control-select:hover {
    border-color: var(--primary-color);
}

.control-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.map-controls .btn {
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.map-controls .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
}

.map-controls .btn-secondary:hover {
    background: #5a6268;
}

.mapa-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.mapa-proximos {
    width: 100%;
    height: 100%;
    display: none;
}

.mapa-legenda {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1000;
    font-size: 0.8rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legenda-icone {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.legenda-texto {
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .mapa-wrapper {
        height: 400px;
    }
    
    .mapa-legenda {
        bottom: 10px;
        left: 10px;
        padding: 8px 10px;
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .legenda-icone {
        width: 12px;
        height: 12px;
    }
    
    .legenda-texto {
        font-size: 0.75rem;
    }
}

.mapa-loading,
.mapa-erro {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    padding: 2rem;
    position: relative;
}

.mapa-loading p,
.mapa-erro p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.mapa-erro {
    background: #fff3cd;
    border: 2px solid #ffc107;
}

@media (max-width: 768px) {
    .map-controls {
        flex-direction: column;
    }
    
    .control-group {
        min-width: 100%;
    }
    
    .map-controls .btn {
        width: 100%;
    }
    
    .mapa-proximos,
    .mapa-loading,
    .mapa-erro {
        height: 400px;
    }
}

/* Lista de Pontos Turísticos - Cidade */
.pontos-turisticos-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ponto-turistico-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    align-items: flex-start;
}

.ponto-turistico-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.ponto-turistico-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ponto-turistico-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ponto-turistico-thumb .no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--light-color) 0%, #e9ecef 100%);
    color: var(--text-light);
}

.ponto-turistico-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.ponto-turistico-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.4;
    transition: var(--transition);
}

.ponto-turistico-item:hover .ponto-turistico-title {
    color: var(--primary-color);
}

.ponto-turistico-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ponto-turistico-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
}

.ponto-turistico-rating .stars {
    font-size: 0.9rem;
    line-height: 1;
}

.ponto-turistico-rating .rating-value {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.ponto-turistico-rating .rating-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .ponto-turistico-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .ponto-turistico-thumb {
        width: 100%;
        height: 180px;
    }
    
    .ponto-turistico-title {
        font-size: 1.1rem;
    }
    
    .ponto-turistico-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
}
