.filter-container {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #333;
  margin-top: 20px;
  margin-left: 10px; 
}

.dropdown-toggle {
  background: none;
  border: 1px solid #333;
  color: #007bff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px; 
  margin-left: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  min-width: 200px;
  padding: 5px 0;
  z-index: 1;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 10px 20px;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}/* ============================================
   ESTILOS GLOBAIS E BASE
   ============================================ */
:root {
  --primary-color: #FF6B00;
  --primary-hover: #E05D00;
  --secondary-color: #483d8b;
  --text-color: #333;
  --text-light: #777;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

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

/* Layout responsivo do container */
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

/* Sistema de grid responsivo */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
  margin-bottom: 30px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }

/* ============================================
   SEÇÃO HERO (DESTAQUE)
   ============================================ */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/event-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

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

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.search-input-group {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  padding: 5px;
  box-shadow: var(--shadow);
}

.search-icon {
  color: var(--text-light);
  margin-left: 15px;
  font-size: 1.2rem;
}

.search-input {
  border: none;
  padding: 12px 15px;
  font-size: 1rem;
  flex: 1;
  background: transparent;
  width: 100%;
}

.search-input:focus {
  outline: none;
}

.search-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.search-button:hover {
  background: var(--primary-hover);
}

.popular-tags {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.popular-tags span {
  margin-right: 10px;
  font-weight: 500;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  margin: 5px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tag:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   SEÇÃO DE RECURSOS
   ============================================ */
.features-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

/* ============================================
   SEÇÃO DE SERVIÇOS
   ============================================ */
.services-section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-container span {
  margin-right: 10px;
  font-weight: 500;
  color: var(--text-light);
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.dropdown-toggle {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 0.95rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.dropdown-toggle:hover {
  border-color: var(--primary-color);
}

.dropdown-toggle i {
  margin-left: 8px;
  font-size: 0.8rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow);
  border-radius: 5px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 0;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 20px;
  color: var(--text-color);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: var(--primary-color);
}

.dropdown-divider {
  height: 1px;
  margin: 5px 0;
  background-color: #e9ecef;
}

.filter-check {
  visibility: hidden;
  margin-right: 8px;
  color: var(--primary-color);
}

/* Cards de Serviços */
.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}

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

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

.badge-location {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.badge-location i {
  margin-right: 5px;
}

.badge-location.online {
  background: rgba(0, 123, 255, 0.8);
}

.service-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-meta {
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.service-price, .service-duration {
  display: flex;
  align-items: center;
  margin-right: 15px;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.service-price i, .service-duration i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Estilo específico para o preço com R$: */
.service-price span::before {
  content: "R$: ";
}

.service-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.service-footer {
  margin-top: auto;
}

.btn-book {
  background: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
  padding: 10px;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
  text-align: center;
}

.btn-book:hover {
  background: var(--primary-hover);
}

/* Mensagem quando não há resultados */
.no-results, .no-results-in-filter {
  text-align: center;
  padding: 50px 0;
  width: 100%;
}

.no-results-img {
  max-width: 200px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.no-results h3, .no-results-in-filter h3 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.no-results p, .no-results-in-filter p {
  margin-bottom: 20px;
}

/* Paginação */
.pagination-container {
  margin-top: 50px;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.page-item {
  margin: 0 5px;
}

.page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.page-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  color: var(--primary-color);
  transition: var(--transition);
}

.page-link:hover {
  color: var(--primary-hover);
  background-color: #e9ecef;
}

.pagination-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.current-page {
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   SEÇÃO DE DEPOIMENTOS
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

.testimonial-content {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.rating {
  color: #FFC107;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text:before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   SEÇÃO CTA (CHAMADA PARA AÇÃO)
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffa938 100%);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#registerBtn{
  background-color: rgb(240, 44, 44);
  margin-right: 2px;
  width: 100%;
  max-width: 250px;
}

/* ============================================
   RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS
   ============================================ */
@media (max-width: 767.98px) {
  /* Ajustes gerais */
  html {
    font-size: 14px;
  }
  
  /* Hero section */
  .hero-section {
    padding: 70px 0;
    background-attachment: scroll;
  }
  
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .search-input-group {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  
  .search-input {
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 50px;
    text-align: center;
  }
  
  .search-button {
    width: 100%;
  }
  
  .popular-tags {
    flex-direction: column;
  }
  
  /* Seção de serviços */
  .filter-container {
    flex-direction: column;
    align-items: center;
  }
  
  .dropdown-menu {
    left: 0;
    transform: none;
    right: 0;
    width: 100%;
  }
  
  .service-image-container {
    height: 300px;
  }
  
  /* Depoimentos */
  .testimonial-card {
    margin-bottom: 30px;
  }
  
  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-outline {
    margin: 10px 0;
    width: 100%;
    max-width: 250px;
  }

  .features-section .col-md-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .testimonials-section .col-md-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px;
  }

  .feature-card, .testimonial-card {
    margin-bottom: 30px;
  }  

  .search-icon{
    display: none;
  }
}

@media (max-width: 575.98px) {
  /* Ajustes para telas muito pequenas */
  .hero-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/event-background-mobile.jpg');
  }
  
  .hero-section h1 {
    font-size: 1.6rem;
  }
  
  .section-header h2, .section-title {
    font-size: 1.5rem;
  }
  
  .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .service-meta {
    flex-direction: column;
  }
  
  .service-price, .service-duration {
    margin-right: 0;
  }

  .feature-card:last-child, .testimonial-card:last-child {
    margin-bottom: 0;
  }  
  
  .popular-tags {
    flex-direction: row;
  }

  .features-section {
    padding: 30px 0;
  }
}