.turismo .turismo-header {
  text-align: center;
  margin-bottom: 32px;
}
.turismo .turismo-header .main-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #00684C;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.turismo .turismo-header .subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #566573;
}
.turismo .turismo-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #00684C;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.turismo .turismo-section-title i {
  font-size: 18px;
}
.turismo .turismo-grid {
  margin-bottom: 28px;
}
.turismo .turismo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-decoration: none !important;
  transition: all 0.25s ease;
  height: 72px;
}
.turismo .turismo-card i {
  font-size: 28px;
  color: #00684C;
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.turismo .turismo-card b {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #18325B;
  transition: color 0.25s ease;
}
.turismo .turismo-card:hover {
  background: #00684C;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.turismo .turismo-card:hover i, .turismo .turismo-card:hover b {
  color: #fff;
}
.turismo .turismo-categorias .turismo-card {
  height: 60px;
  padding: 12px 14px;
}
.turismo .turismo-categorias .turismo-card i {
  font-size: 24px;
}
.turismo .turismo-categorias .turismo-card b {
  font-size: 14px;
}
.turismo .turismo-descricao {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #566573;
  margin-bottom: 28px;
}
.turismo .turismo-galeria {
  margin-bottom: 28px;
}
.turismo .turismo-galeria .turismo-galeria-item {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-decoration: none !important;
}
.turismo .turismo-galeria .turismo-galeria-item .bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.turismo .turismo-galeria .turismo-galeria-item:hover .bg-image {
  transform: scale(1.08);
}
.turismo .turismo-galeria .turismo-galeria-item:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
}
.turismo .turismo-galeria .turismo-galeria-item:hover:after {
  background: rgba(0, 104, 76, 0.25);
}
.turismo .local-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-decoration: none !important;
  transition: all 0.25s ease;
}
.turismo .local-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.turismo .local-card:hover .local-image img {
  transform: scale(1.08);
}
.turismo .local-card .local-image {
  height: 180px;
  overflow: hidden;
  background: #f1f1f1;
}
.turismo .local-card .local-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.turismo .local-card .local-image .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #95a5a6;
}
.turismo .local-card .local-image .no-image i {
  font-size: 42px;
}
.turismo .local-card .local-body {
  padding: 16px;
}
.turismo .local-card .local-body .local-name {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #18325B;
  margin-bottom: 6px;
}
.turismo .local-card .local-body .local-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.turismo .local-card .local-body .local-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.turismo .local-card .local-body .local-contacts .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.turismo .local-card .local-body .local-contacts .contact-btn.phone {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}
.turismo .local-card .local-body .local-contacts .contact-btn.phone:hover {
  background: #3498db;
  color: #fff;
}
.turismo .local-card .local-body .local-contacts .contact-btn.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}
.turismo .local-card .local-body .local-contacts .contact-btn.whatsapp:hover {
  background: #25d366;
  color: #fff;
}
.turismo .local-detail .local-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e9ed;
}
.turismo .local-detail .local-detail-header .local-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #18325B;
  margin: 0;
}
.turismo .local-detail .local-detail-header .local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.turismo .local-detail .local-detail-header .local-tags .local-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  background: rgba(0, 104, 76, 0.08);
  color: #00684C;
  transition: all 0.2s ease;
}
.turismo .local-detail .local-detail-header .local-tags .local-tag:hover {
  background: #00684C;
  color: #fff;
}
.turismo .local-detail .local-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 960px) {
  .turismo .local-detail .local-info-grid {
    grid-template-columns: 1fr;
  }
}
.turismo .local-detail .local-info-box {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e4e9ed;
}
.turismo .local-detail .local-info-box .info-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #00684C;
  margin-bottom: 8px;
}
.turismo .local-detail .local-info-box .info-text {
  font-size: 14px;
  color: #566573;
  line-height: 1.5;
}
.turismo .local-detail .local-info-box .local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.turismo .local-detail .local-info-box .local-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.phone {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.phone:hover {
  background: #3498db;
  color: #fff;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.whatsapp:hover {
  background: #25d366;
  color: #fff;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.site {
  background: rgba(142, 68, 173, 0.1);
  color: #8e44ad;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.site:hover {
  background: #8e44ad;
  color: #fff;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.instagram {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.instagram:hover {
  background: #e1306c;
  color: #fff;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.facebook {
  background: rgba(59, 89, 152, 0.1);
  color: #3b5998;
}
.turismo .local-detail .local-info-box .local-actions .action-btn.facebook:hover {
  background: #3b5998;
  color: #fff;
}
.turismo .local-detail .local-descricao {
  font-size: 15px;
  line-height: 1.7;
  color: #566573;
  margin-bottom: 24px;
}
.turismo .local-detail .local-fotos {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e4e9ed;
}
.turismo .local-detail .local-fotos .fotos-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00684C;
  margin-bottom: 16px;
}
