/* styles.css */

/* ===== BIBLIOTECAS EXTERNAS ===== */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ===== COMPONENTES DE FUNDO ===== */
/* Força fonte a aparecer rápido */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap; /* troca imediata */
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.background-image.active {
    opacity: 1;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(139,92,246,0.15) 30%, rgba(99,102,241,0.15) 70%);
    z-index: -1;
}

/* ===== COMPONENTES DE INTERFACE ===== */
.glass-container {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.glass-dark {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== SIDEBAR FLUTUANTE ===== */
.floating-sidebar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(139, 92, 246, 0.6);
    box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.4);
}

.tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    right: 70px;
}

/* ===== SIDEBAR MOBILE ===== */
.hamburger-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: none;
}

.hamburger-btn .floating-btn {
    width: 56px;
    height: 56px;
    font-size: 20px;
}

#mobileSidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileSidebar.active {
    transform: translateX(0);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== MODAIS ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #333;
}

/* ===== FORMULÁRIOS ===== */
.form-input {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.form-input::placeholder {
    color: #9ca3af;
}

#citySelect {
    background: rgba(30, 30, 30, 0.5) 
        url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 10l-5-5h10z'/></svg>") 
        no-repeat right 1rem center / 12px 12px;
    color: white;
    appearance: none; /* também sugiro trocar "null" por "none" */
    padding-right: 50px !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#citySelect:focus {
    background: rgba(30, 30, 30, 0.7) 
        url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 10l-5-5h10z'/></svg>") 
        no-repeat right 1rem center / 12px 12px;
}

#citySelect option {
    background: #1a1a1a;
    color: white;
    padding: 12px;
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-box {
    width: 100%;
    max-width: 950px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 50px 40px;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.6) rgba(255, 255, 255, 0.1);
    padding-bottom: 80px;
}

.logo {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    margin-bottom: 30px;
}

/* ===== CARTÕES ===== */
.city-card,
.partner-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    margin-bottom: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.city-card:hover,
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(139, 92, 246, 0.3);
}

.city-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 18px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
}

.city-image:hover,
.partner-logo:hover {
    transform: scale(1.05);
    border-color: rgba(139, 92, 246, 0.6);
}

/* ===== BOTÕES DE TOUR ===== */
.tour-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex: 0 0 80px; /* Não encolher, não crescer, base de 80px */
    min-width: 80px;
    min-height: 80px;
}

.tour-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
}

.tour-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-button .tour-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Ícones como imagem */
.tour-button .tour-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Mantém branco */
    display: block;
}

.tour-button span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
    line-height: 1.2;
    color: white;
}

.tour-button > i {
    font-size: 28px !important;
    margin-bottom: 6px;
    color: white;
}
.tour-button .tour-icon {
        width: 24px !important;
        height: 24px !important;
        margin-bottom: 4px !important;
}

.tour-button span {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== INDICADORES DE FUNDO ===== */
.bg-indicators {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-indicator.active {
    background: rgba(139, 92, 246, 0.9);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

/* ===== BOTÕES PRIMÁRIOS ===== */
.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
}

/* ===== MENSAGENS DE SUCESSO ===== */
.success-message {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.3);
}

.success-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

/* ===== ANIMAÇÕES ===== */
.loading {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    border-top-color: #8B5CF6;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== VÍDEOS ===== */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== SCROLLBAR ===== */
.content-box::-webkit-scrollbar {
    width: 8px;
}

.content-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 24px 0;
}

.content-box::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.6);
    border-radius: 10px;
}

.content-box::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.8);
}

/* ===== TIPOGRAFIA ===== */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.875rem;
    color: #8B5CF6;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== INDICADOR DE STATUS DA API ===== */
.api-status {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.api-status.online {
    background: rgba(16, 185, 129, 0.8);
    color: white;
}

.api-status.offline {
    background: rgba(239, 68, 68, 0.8);
    color: white;
}

.api-status.loading {
    background: rgba(139, 92, 246, 0.8);
    color: white;
}

/* ===== RESPONSIVIDADE ===== */
@media (min-width: 769px) {
    .hamburger-btn {
        display: none;
    }
    
    .floating-sidebar {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .floating-sidebar {
        display: none;
    }
    
    .content-box {
        padding: 30px 20px;
        max-height: 90vh;
        padding-bottom: 80px;
    }
    
    .tooltip {
        display: none;
    }
    
    .city-image,
    .partner-logo {
        width: 80px;
        height: 80px;
    }
    
    .tour-button {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        border-radius: 16px !important;
    }
    .tour-button i {
        font-size: 20px !important;
        margin-bottom: 3px !important;
    }
    
    .tour-button span {
        font-size: 8px !important;
    }
    .tour-button[style*="height"] {
    height: 60px !important;
    width: 60px !important;
    min-height: 60px !important;
    min-width: 60px !important;
}
    
    #mobileSidebar {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .content-box {
        padding: 20px 15px;
        padding-bottom: 80px;
    }
    
    .city-card,
    .partner-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-content {
        margin: 0 !important;
    }
   .tour-button {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        flex-basis: 60px !important;
    }
    .partner-card-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 15px !important;
    }
    .city-image,
    .partner-logo,
    .tour-button {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .tour-button .tour-icon {
        width: 24px !important;
        height: 24px !important;
        margin-bottom: 4px !important;
    }
    .tour-button .tour-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1); /* Mantém o ícone branco */
    }
}

/* ===== COMPONENTES DE MODAL ===== */
.modal-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.modal-logo-container img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 16px;
}

.partner-card .card-content,
.city-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.partner-card-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    cursor: pointer;
}
/* ===== CORREÇÕES PARA CONSISTÊNCIA DOS CARDS ===== */

/* ===== CORREÇÕES ESPECÍFICAS DE LAYOUT - ADICIONAR AO SEU CSS ===== */

/* CORREÇÃO 1: Card da cidade centralizado */
.city-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 280px !important;
}

.city-card .partner-card-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    text-align: center !important;
}

.city-card .card-content {
    text-align: center !important;
}

/* CORREÇÃO 2: Botão de tour fixo nos cards dos parceiros */
.partner-card:not(.city-card) .partner-card-inner {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    width: 100% !important;
}

.partner-card:not(.city-card) .partner-logo {
    grid-area: logo !important;
}

.partner-card:not(.city-card) .card-content {
    grid-area: content !important;
    text-align: left !important;
}

.partner-card:not(.city-card) .tour-button {
    grid-area: tour !important;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .partner-card:not(.city-card) .partner-card-inner {
        grid-template-columns: 80px 1fr 60px !important;
    }
    
    .partner-card:not(.city-card) .tour-button {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }
    .city-card .card-title,
    .city-card .card-subtitle,
    .partner-card .card-title,
    .partner-card .card-subtitle {
        text-align: center !important;
    }
.tour-button {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        flex: 0 0 60px !important;
        border-radius: 16px !important;
    }

    .tour-button .tour-icon {
        width: 24px !important;
        height: 24px !important;
        margin-bottom: 4px !important;
    }

    .tour-button .tour-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        filter: brightness(0) invert(1) !important;
    }

    .tour-button > i {
        font-size: 20px !important;
        margin-bottom: 3px !important;
    }

    .tour-button span {
        font-size: 8px !important;
        line-height: 1.1;
    }
}
@media (min-width: 769px) {
    .tour-button[style*="height"] {
        height: 80px !important;
        width: 80px !important;
        min-height: 80px !important;
        min-width: 80px !important;
    }
}

@media (max-width: 480px) {
    .city-card .partner-card-inner,
    .partner-card:not(.city-card) .partner-card-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    .partner-card:not(.city-card) .card-content {
        text-align: center !important;
    }
    .partner-card-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 15px !important;
    }
.tour-button {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
        flex: 0 0 60px !important;
        margin: 0 auto !important;
    }

    .tour-button .tour-icon {
        width: 20px !important;
        height: 20px !important;
        margin-bottom: 3px !important;
    }

    .tour-button > i {
        font-size: 18px !important;
        margin-bottom: 2px !important;
    }

    .tour-button span {
        font-size: 7px !important;
        font-weight: 700;
    }
    
    .city-image,
    .partner-logo,
    .tour-button {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Garantir centralização do botão de tour */
.city-card .tour-button,
.partner-card .tour-button {
    margin: 0 auto !important;
}

/* Ajustes específicos para o card da cidade */
.city-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* ===== AJUSTES PARA O CARD DA CIDADE ===== */

/* Estilos base para o card da cidade - aplicam-se a todas as telas inicialmente */
.city-card .partner-card-inner {
    /* Mantém o padding padrão para mobile */
    padding: 1.5rem; /* Ou o padding original */
    border-radius: 1.5rem; /* rounded-3xl */
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative; /* Importante para o pseudo-elemento */
    overflow: hidden; /* Garante que o background não ultrapasse os cantos arredondados */
    display: flex;
    flex-direction: column;
}

.city-card .city-image {
    display: block;
    width: 100%;
    /* Define uma altura fixa para a imagem */
    height: 200px;
    /* Faz com que a imagem cubra a área definida, mantendo a proporção */
    object-fit: cover;
    /* Alinha a parte superior da imagem com o topo da área definida */
    object-position: top;
    border-radius: 0.75rem; /* rounded-xl */
    margin-bottom: 1rem;
}

/* Conteúdo do card */
.city-card .card-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.city-card .card-title {
    font-size: 1.5rem; /* text-2xl ou ajuste */
    font-weight: 700; /* font-bold */
    color: #1f2937; /* gray-800 ou cor desejada para mobile */
    margin-bottom: 0.5rem;
    text-align: left;
}

.city-card .card-subtitle {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    color: #4b5563; /* gray-600 */
    margin-bottom: 0.5rem;
    text-align: left;
}

.city-card .card-description {
    font-size: 1rem; /* text-base */
    color: #6b7280; /* gray-500 */
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Espaço entre ícone e texto */
    text-align: left;
}

/* Estilo para o botão de Tour */
.city-card .tour-button {
    margin-top: 1rem; /* Espaçamento acima */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem; /* py-3 px-6 */
    background-color: #8b5cf6; /* bg-purple-500 */
    color: white;
    font-weight: 600; /* font-semibold */
    border-radius: 9999px; /* rounded-full */
    text-decoration: none; /* Remove sublinhado de links */
    transition: all 0.3s ease; /* Transição suave */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra padrão */
    border: none;
    cursor: pointer;
}

.city-card .tour-button:hover {
    background-color: #7c3aed; /* bg-purple-600 */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Sombra mais forte no hover */
    transform: translateY(-2px); /* Pequeno levantamento no hover */
}

.city-card .tour-button:active {
    transform: translateY(0); /* Volta à posição original no clique */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.city-card .tour-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.city-card .tour-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}