/*
Theme Name: Prime Turismo BA
Theme URI: https://primeturismoba.com
Author: Prime Turismo BA
Author URI: https://primeturismoba.com
Description: Tema moderno, responsivo e editável para agência de turismo Prime Turismo BA. Design profissional com cores azul e branco.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: primeturismo-ba
Tags: turismo, agencia-de-viagens, responsivo, azul, branco, editavel
*/

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

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-blue: #1e40af;
    --white: #ffffff;
    --orange: #f97316;
    --orange-hover: #ea580c;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f3f4f6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Header Superior - Removido */
.top-header {
    display: none !important;
}

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

.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header-left span,
.top-header-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-header-left span:hover,
.top-header-right a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 18px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-icons-small {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 20px;
}

.contact-icon-small {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
}

.contact-icon-small:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.social-icons-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon-header {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
}

.social-icon-header:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
}

.footer-contact-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.social-icon-footer {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
    margin-right: 10px;
}

.social-icon-footer:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.destino-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.destino-filter-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

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

.destino-filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.destino-filter-btn:hover {
    background-color: var(--orange-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.destino-filter-btn.active {
    background-color: var(--orange-hover);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    animation: buttonPulse 2s ease-in-out infinite;
}

.destino-filter-btn span {
    position: relative;
    z-index: 1;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(249, 115, 22, 0.6);
    }
}

/* Navegação Principal */
.main-header {
    background-color: var(--secondary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.3s;
}

.logo-container:hover {
    opacity: 0.9;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image-container {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
}

.logo-image-container .logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(59, 130, 246, 0.8),
        0 0 20px rgba(59, 130, 246, 0.6),
        0 0 30px rgba(59, 130, 246, 0.4),
        0 2px 4px rgba(30, 58, 138, 0.8),
        0 4px 8px rgba(30, 58, 138, 0.6),
        0 6px 12px rgba(30, 58, 138, 0.4);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.7)) drop-shadow(0 2px 6px rgba(30, 58, 138, 0.8));
}

.logo-text::before {
    content: '✈';
    display: inline-block;
    margin-right: 8px;
    animation: airplane-landing 3s ease-in-out infinite;
    font-size: 20px;
    vertical-align: middle;
}

@keyframes airplane-landing {
    0% {
        transform: translateY(-8px) translateX(-5px) rotate(-15deg);
        opacity: 0.8;
    }
    30% {
        transform: translateY(-4px) translateX(-2px) rotate(-8deg);
        opacity: 0.9;
    }
    60% {
        transform: translateY(-1px) translateX(0) rotate(0deg);
        opacity: 1;
    }
    80% {
        transform: translateY(0) translateX(1px) rotate(2deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-menu a:hover {
    opacity: 0.8;
}

.search-icon {
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: fadeIn 1s ease-in;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: fadeIn 1s ease-in;
}

.hero-background-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.hero-gif[src=""],
.hero-gif:not([src]) {
    display: none;
}

.hero-gif[src=""] ~ .hero-background-fallback,
.hero-gif:not([src]) ~ .hero-background-fallback {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6) 0%, rgba(59, 130, 246, 0.5) 100%);
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    display: inline-block;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.hero-title .char.space {
    width: 0.3em;
}

/* Animação do avião */
.hero-airplane {
    display: inline-block;
    opacity: 0;
    transform: translateX(-50px);
    margin-left: 15px;
    vertical-align: middle;
}

.hero-airplane svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.5));
}

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

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

@keyframes airplaneFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.btn-whatsapp {
    background-color: #25D366 !important;
    color: white !important;
}

.btn-whatsapp:hover {
    background-color: #20BA5A !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Seção de Destinos */
.destinations-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    position: relative;
    overflow: visible;
    min-height: 600px;
}


/* Overlay de fundo removido - não é mais necessário */


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

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Sobre */
.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 50px 0;
}

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

.about-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Google Rating Box */
.google-rating-box {
    display: inline-block;
    margin: 20px auto 0;
}

.google-rating-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.12);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.google-rating-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.25);
    border-color: rgba(30, 58, 138, 0.2);
}

.google-rating-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-logo {
    flex-shrink: 0;
}

.google-rating-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.google-rating-stars {
    font-size: 24px;
    line-height: 1;
}

.stars-filled {
    color: #fbbf24;
}

.stars-empty {
    color: #e5e7eb;
}

.google-rating-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.rating-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-blue);
}

.reviews-count {
    font-size: 14px;
    color: var(--text-gray);
}

.google-rating-label {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.about-value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.1);
}

.value-icon {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.about-value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.value-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    align-items: start;
}

.destination-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, opacity 0.5s ease;
    display: none;
    flex-direction: column;
    height: auto;
    min-height: 500px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.destination-card .card-content {
    overflow: visible;
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.destination-card .card-image-wrapper {
    overflow: hidden;
}

.destination-card.show {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: cardFadeIn 0.6s ease-out forwards;
}

.destination-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

.card-image-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
    height: 250px;
    min-height: 250px;
}

.card-image-wrapper .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px;
    z-index: 2;
}

.card-title-overlay-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hover Overlay - Descrição do passeio */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.98) 0%, rgba(30, 58, 138, 0.95) 50%, rgba(30, 58, 138, 0.92) 100%);
    padding: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

/* Container interno que faz o scroll */
.card-hover-overlay-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 20px 30px 25px;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Forçar scrollbar sempre visível */
    scrollbar-gutter: stable;
}

/* Scrollbar minimalista para o hover overlay - SEMPRE VISÍVEL */
.card-hover-overlay-inner::-webkit-scrollbar {
    width: 12px;
    -webkit-appearance: none;
    display: block !important;
}

.card-hover-overlay-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin: 10px 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-hover-overlay-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    transition: background 0.3s ease;
    border: 2px solid rgba(30, 58, 138, 0.4);
    min-height: 40px;
}

.card-hover-overlay-inner::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Para Firefox - scrollbar sempre visível */
.card-hover-overlay-inner {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.6) rgba(255, 255, 255, 0.15);
    overflow-y: scroll !important;
}

/* Hover overlay aparece quando mouse está sobre a imagem OU sobre qualquer parte do card (incluindo botão) */
.card-image-wrapper:hover .card-hover-overlay,
.activity-image-wrapper:hover .card-hover-overlay,
.destination-card:hover .card-hover-overlay,
.activity-card:hover .card-hover-overlay,
.destination-card:hover .card-image-wrapper .card-hover-overlay,
.activity-card:hover .activity-image-wrapper .card-hover-overlay,
.card-hover-overlay.hover-active {
    opacity: 1;
    pointer-events: auto;
}

.card-image-wrapper:hover .card-title-overlay,
.activity-image-wrapper:hover .card-title-overlay,
.destination-card:hover .card-title-overlay,
.activity-card:hover .card-title-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-hover-description {
    color: white;
    font-size: 15px;
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    /* Garantir que o conteúdo tenha altura suficiente para ativar scroll */
    min-height: calc(100% + 1px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 25px 25px 20px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    min-height: 0;
    overflow: visible;
    max-height: none;
}

/* Garantir que descrições longas não cortem os botões */
.card-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-shrink: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: calc(1.6em * 3);
}

.card-hover-description {
    max-height: 200px;
    overflow-y: auto;
}

.card-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.card-info-item .info-icon {
    flex-shrink: 0;
    color: var(--primary-blue);
    width: 16px;
    height: 16px;
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 18px;
}

.rating-value {
    font-weight: 600;
    color: var(--text-dark);
}

.card-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.card-price-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: normal;
}

.card-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    min-height: 60px;
}

.btn-card {
    width: 100%;
    padding: 10px 16px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.btn-card:hover {
    background-color: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Cards de Cidades */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    transition: grid-template-columns 0.4s ease;
}

@media (max-width: 1200px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.city-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

.city-card:hover:not(.expanded) {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.city-card.expanded {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    grid-column: 1 / -1; /* Ocupa todas as colunas quando expandido */
}

.city-card:not(.expanded) {
    width: auto;
    max-width: none;
}

.city-card-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

/* Indicador de clique */
.city-click-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    z-index: 4;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.city-card-image:hover .city-click-indicator {
    opacity: 1;
    transform: translateY(0);
}

.city-click-indicator svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.city-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover .city-main-image {
    transform: scale(1.1);
}

.city-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.7) 50%, transparent 100%);
    padding: 30px;
    color: white;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.city-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.98) 0%, rgba(30, 58, 138, 0.85) 50%, transparent 100%);
    padding: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.city-name-overlay .city-name {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.city-info-overlay {
    z-index: 3;
}

.city-info-overlay .city-name {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.city-info-overlay .city-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* Quando hover em qualquer lugar da imagem da cidade, esconder nome e mostrar informações */
.city-card-image:hover .city-name-overlay {
    opacity: 0;
    pointer-events: none;
}

.city-card-image:hover .city-info-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Filtros removidos - não são mais necessários */

.city-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
    background-color: var(--bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    width: 100%;
}

.city-card.expanded .city-destinations-grid {
    max-height: 600px;
    padding: 30px 30px 50px 30px;
    opacity: 1;
    padding-bottom: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

/* Scrollbar minimalista para o grid de cards */
.city-destinations-grid::-webkit-scrollbar {
    width: 10px;
}

.city-destinations-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 10px 5px;
}

.city-destinations-grid::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 138, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.city-destinations-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 58, 138, 0.5);
}

.city-destinations-grid {
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 58, 138, 0.3) rgba(0, 0, 0, 0.05);
}

/* Cards de destino dentro do grid expandido */
.city-destinations-grid .destination-card {
    display: flex !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Seção Principais Atividades */
.main-activities-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 50px;
    max-height: 800px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

/* Scrollbar minimalista para o grid de atividades */
.activities-grid::-webkit-scrollbar {
    width: 10px;
}

.activities-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 10px 5px;
}

.activities-grid::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 138, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.activities-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 58, 138, 0.5);
}

.activities-grid {
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 58, 138, 0.3) rgba(0, 0, 0, 0.05);
}

.activity-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 500px;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}

.activity-card .card-content {
    overflow: visible;
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-card .activity-image-wrapper,
.activity-card .card-image-wrapper {
    overflow: hidden;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2);
}

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

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

.card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px;
    z-index: 2;
}

.activity-title-overlay {
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.activity-content {
    padding: 25px 25px 20px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: var(--white);
    position: relative;
}

.activity-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.activity-info-item .info-icon {
    flex-shrink: 0;
    color: var(--primary-blue);
    width: 16px;
    height: 16px;
}

.activity-city {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.activity-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.activity-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.rating-stars {
    color: #FFA500;
    font-size: 14px;
}

.rating-value {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.activity-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.activity-price {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.price-value {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-left: 5px;
}

.btn-activity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    border: none;
    cursor: pointer;
}

.btn-activity:hover {
    background-color: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Responsividade para cards de cidade */
@media (max-width: 1200px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 380px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-airplane svg {
        width: 38px;
        height: 38px;
        margin-left: 10px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .destination-card,
    .activity-card {
        overflow: visible;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .card-content,
    .activity-content {
        padding: 20px 15px 15px 15px;
        overflow: visible;
    }
    
    .card-buttons {
        position: relative;
        z-index: 10;
        margin-top: auto;
        padding-top: 10px;
    }
    
    .city-card-image {
        height: 300px;
    }
    
    .city-name {
        font-size: 24px;
    }
    
    .city-destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .city-click-indicator {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .city-click-indicator svg {
        width: 14px;
        height: 14px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

.city-card.expanded .city-filters {
    display: flex;
}

/* Footer */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.footer-section:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 24px; /* Alinhar com altura dos títulos */
}

.footer-logo-image {
    max-width: 150px;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-top: 10px;
    font-size: 13px;
}

.footer-title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}


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

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    font-size: 14px;
}

.footer-menu a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-item > div {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.7);
    stroke-width: 2;
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: var(--white);
}

.footer-cta {
    margin-top: 10px;
}

.footer-cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
    text-align: center;
    letter-spacing: 0.3px;
}

.footer-cta-btn:hover {
    background-color: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(249, 115, 22, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 20px;
    font-size: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    .top-header-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-header-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .contact-icons-small {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .social-icons-header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary-blue);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .main-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-image-container {
        width: 55px;
        height: 55px;
    }

    .logo-image-placeholder {
        width: 55px;
        height: 55px;
    }

    .logo-wrapper img {
        height: 55px;
    }

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

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-value-card {
        padding: 30px 20px;
    }

    .main-footer {
        padding: 30px 15px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }

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

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

    .footer-logo-image {
        max-width: 120px;
        margin: 0 auto;
        border-radius: 10px;
    }

    .footer-description {
        font-size: 12px;
        text-align: center;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

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

    .footer-contact-item {
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .footer-contact-item > div {
        text-align: center;
        width: 100%;
    }

    .footer-icon {
        margin: 0 auto;
        display: block;
    }
    
    .footer-contact-item strong {
        text-align: center;
        display: block;
    }
    
    .footer-contact-item p {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 12px;
    }

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

    .footer-bottom {
        font-size: 11px;
        padding-top: 12px;
        margin-top: 15px;
    }

    .google-rating-link {
        padding: 20px 25px;
    }

    .google-rating-content {
        flex-direction: column;
        gap: 15px;
    }

    .rating-number {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 350px;
    }

    .hero-title {
        font-size: 22px;
    }
    
    .hero-airplane svg {
        width: 28px;
        height: 28px;
        margin-left: 8px;
    }
    
    .hero-title .char {
        animation-duration: 0.4s;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .card-buttons {
        gap: 5px;
        min-height: 34px;
        padding: 0;
        margin-top: 8px;
    }
    
    .card-buttons .btn-card,
    .card-buttons .btn-activity {
        padding: 7px 8px;
        font-size: 10px;
        min-height: 34px;
        max-height: 34px;
        line-height: 1.1;
    }
    
    .destination-card,
    .activity-card {
        padding-bottom: 12px;
    }
    
    .card-content,
    .activity-content {
        padding: 18px 12px 12px 12px;
    }
    
    .card-image-wrapper,
    .activity-image-wrapper {
        height: 200px;
        min-height: 200px;
    }
    
    .city-destinations-grid {
        padding: 20px 15px 40px 15px;
    }
    
    .activities-grid {
        padding-bottom: 30px;
    }
}

/* ============================================
   BOTÕES DE CARDS - Lado a lado
   ============================================ */
.card-buttons {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 0;
    min-height: 42px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.card-buttons .btn-card,
.card-buttons .btn-activity {
    flex: 1;
    margin-top: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    line-height: 1.2;
}

.card-buttons .btn-reserve {
    background-color: var(--orange);
    color: var(--white);
    border: none;
}

.card-buttons .btn-reserve:hover {
    background-color: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.card-buttons .btn-details {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
}

.card-buttons .btn-details:hover {
    background-color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* ============================================
   MODAL DE DETALHES DO PASSEIO
   ============================================ */
.tour-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

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

.tour-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.tour-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    max-height: 90vh;
    overflow-y: auto;
}

.tour-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s;
}

.tour-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.tour-modal-header {
    position: relative;
    width: 100%;
}

.tour-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    padding: 30px 30px 20px;
    text-align: center;
}

.tour-modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.tour-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-modal-tabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    padding: 0 30px;
    gap: 0;
}

.tour-tab {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    bottom: -2px;
}

.tour-tab:hover {
    color: #f97316;
}

.tour-tab.active {
    color: #f97316;
    border-bottom-color: #f97316;
}

.tour-modal-body {
    padding: 30px;
}

.tour-tab-content {
    display: none;
}

.tour-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.tour-content-section {
    color: #334155;
    line-height: 1.8;
}

.tour-content-section h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.tour-content-section h4 {
    font-size: 18px;
    color: #1e293b;
    margin: 20px 0 10px;
    font-weight: 600;
}

.tour-content-section p {
    margin-bottom: 15px;
    color: #475569;
}

.tour-content-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.tour-content-section ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #475569;
}

.tour-content-section ul li:last-child {
    border-bottom: none;
}

.tour-info-block {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.tour-info-block:last-child {
    border-bottom: none;
}

.tour-info-block h4 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 10px;
}

.tour-info-block p {
    color: #475569;
    line-height: 1.7;
}

.tour-info-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.tour-info-section:last-child {
    border-bottom: none;
}

.tour-info-section h4 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.tour-info-section p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.tour-price-item {
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.tour-price-item strong {
    color: #1e293b;
    font-weight: 600;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .tour-modal.active {
        padding: 10px;
    }
    
    .tour-modal-content {
        margin: 20px auto;
        max-height: 95vh;
        border-radius: 8px;
    }
    
    .tour-modal-title {
        font-size: 22px;
        padding: 20px 20px 15px;
    }
    
    .tour-modal-image {
        height: 200px;
    }
    
    .tour-modal-tabs {
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tour-tab {
        padding: 12px 15px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .tour-modal-body {
        padding: 20px;
    }
    
    .tour-content-section h3 {
        font-size: 20px;
    }
    
    .tour-content-section h4 {
        font-size: 16px;
    }
    
    .card-buttons {
        flex-direction: row;
        gap: 6px;
        min-height: 36px;
        padding: 0;
        margin-top: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .card-buttons .btn-card,
    .card-buttons .btn-activity {
        flex: 1;
        min-width: 0;
        padding: 8px 10px;
        font-size: 11px;
        min-height: 36px;
        max-height: 36px;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .destination-card,
    .activity-card {
        padding-bottom: 15px;
        overflow: visible;
    }
    
    .card-content,
    .activity-content {
        padding: 20px 15px 15px 15px;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
}

/* ============================================
   SEÇÃO DE REVIEWS DO GOOGLE
   ============================================ */
.google-reviews-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 50px;
}

.reviews-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 10px 0 30px;
    width: 100%;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 58, 138, 0.3) rgba(0, 0, 0, 0.05);
}

.reviews-carousel::-webkit-scrollbar {
    height: 8px;
    display: block;
}

.reviews-carousel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 138, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.reviews-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 58, 138, 0.5);
}

.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
    max-width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: auto;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar-letter {
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
}

.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.verified-badge {
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

.review-date {
    color: var(--text-gray);
}

.review-source {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-gray);
}

.review-source svg {
    width: 14px;
    height: 14px;
}

.review-rating {
    margin-bottom: 12px;
}

.review-stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-text-wrapper {
    position: relative;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6em * 4);
    transition: max-height 0.3s ease;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: none;
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 5px;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.read-more-btn:hover {
    color: var(--dark-blue);
}

.read-more-btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 3px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        padding: 0 40px;
    }
    
    .reviews-carousel {
        gap: 20px;
    }
    
    .review-card {
        min-width: calc(100% - 20px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .google-reviews-section {
        padding: 60px 15px;
    }
    
    .reviews-carousel-wrapper {
        padding: 0 30px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .tour-modal-title {
        font-size: 20px;
        padding: 15px 15px 10px;
    }
    
    .tour-modal-image {
        height: 180px;
    }
    
    .tour-tab {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .tour-modal-body {
        padding: 15px;
    }
}
