body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f6f8;
  color: #333;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 20px;
}

.topbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 40px;
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.hero {
  background-color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 26px;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  width: calc(33.33% - 14px); /* Agora cabem 4 por linha com gap */
  display: flex;
  flex-direction: column;
}


.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-body h4 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.price {
  color: #ff5a5f;
  font-weight: 600;
  font-size: 16px;
}

.card-body span {
  font-size: 14px;
  color: #555;
}

.card-body small {
  color: #888;
  font-size: 13px;
}

.btn {
  margin-top: 10px;
  padding: 10px 14px;
  border: none;
  background-color: #ff5a5f;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  align-self: start;
  font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
    align-self: center;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav.hidden {
    display: none;
  }

  .nav a {
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .hero h2 {
    font-size: 22px;
    text-align: center;
  }

  

  .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex !important;
    gap: 20px;
  }

  .nav.hidden {
    display: flex !important;
  }
}
.footer {
  background-color: #fff;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  color: #666;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.footer-column h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff5a5f;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  max-width: 300px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-icons a:hover img {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid #e1e1e1;
  margin-top: 30px;
  padding: 20px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.footer-bottom small {
  color: #aaa;
  font-size: 12px;
}

/* Responsivo */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }

  .footer-column {
    text-align: left;
  }

  .footer-bottom {
    text-align: left;
  }
}
.carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 24px;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}
.carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.carousel-image.fade-out {
  opacity: 0;
}
/* Esconde o menu por padrão no mobile */
#mobileMenu {
  display: none;
  flex-direction: column;
  gap: 10px;
}

/* Exibe o menu quando classe 'show' for adicionada */
#mobileMenu.show {
  display: flex;
  background-color: white;
  position: absolute;
  top: 60px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Estilo do botão */
.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #1D3557;
}

/* Responsividade */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  #mobileMenu {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 20px;
    background: none;
    box-shadow: none;
    padding: 0;
  }
}
.topbar {
  background-color: #fff;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 99;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #1D3557;
  display: block;
}

/* Oculta menu por padrão no mobile */
#mobileMenu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: white;
  position: absolute;
  top: 60px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Exibe quando toggle está ativo */
#mobileMenu.show {
  display: flex;
}

/* Menu visível horizontalmente no desktop */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  #mobileMenu {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 20px;
    background: none;
    box-shadow: none;
    padding: 0;
  }
}
/* Header */
.topbar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Container flexível */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Botão menu (☰) */
.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #1D3557;
  display: block;
}

/* Navegação oculta no mobile */
.nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  position: absolute;
  top: 64px;
  right: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Quando ativado */
.nav.show {
  display: flex;
}

/* Menu visível no desktop */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex !important;
    flex-direction: row;
    gap: 24px;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
  }
}
.nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  position: absolute;
  top: 64px;
  right: 16px;
  left: 16px; /* garante que o menu fique contido horizontalmente */
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 99;
}

.hero h2 {
  font-size: 24px;
  color: #1D3557;
  margin-bottom: 8px;
}

.hero-subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
}

.carousel-detalhes {
  position: relative;
  max-width: 100%;
  height: 300px;
  margin-bottom: 20px;
}

.carousel-wrapper {
  position: relative;
  height: 100%;
}

.carousel-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-wrapper button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
}

#prev { left: 10px; }
#next { right: 10px; }

.info-detalhes p {
  margin: 4px 0;
}
.carousel-image {
  transition: opacity 0.3s ease-in-out;
}

.carousel-image.fade-out {
  opacity: 0;
}
.detalhes-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Carrossel de imagens */
.detalhes-carrossel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.detalhes-carrossel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detalhes-carrossel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 28px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.detalhes-carrossel #prev { left: 20px; }
.detalhes-carrossel #next { right: 20px; }

/* Informações */
.detalhes-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detalhes-info h2 {
  font-size: 24px;
  color: #1D3557;
}

.detalhes-valores {
  font-size: 20px;
  color: #2a2a2a;
}

.detalhes-valores .valor-original {
  text-decoration: line-through;
  color: #888;
  margin-right: 12px;
}

.detalhes-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #444;
}

.detalhes-metas span {
  background: #f1f1f1;
  padding: 6px 12px;
  border-radius: 6px;
}

.detalhes-desc {
  margin-top: 10px;
  line-height: 1.6;
  color: #444;
  font-size: 15px;
}
.thumb-desktop-only {
  display: block;
  text-align: center;
  margin: 2rem 0;
}

.thumb-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Ocultar no mobile */
@media (max-width: 768px) {
  .thumb-desktop-only {
    display: none;
  }
}


.small-select {
  flex: none;
  width: 70px;
}

button[type="submit"] {
  padding: 6px 14px;
  background-color: #FF6B6B;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  height: 34px;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #e55a5a;
}

/* Responsivo */
@media (max-width: 768px) {
  .filters-scroll {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group,
  .small-select,
  button[type="submit"] {
    width: 100%;
  }
}
.filters-container {
  padding: 1.5rem 1rem;
  background-color: #f9fafb;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
}

.filters-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1D3557;
  margin-bottom: 4px;
}

.filter-group input,
.filter-group select {
  box-sizing: border-box;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #e35a5a;
  border-radius: 6px;
  font-size: 0.95rem;
  background-color: white;
  color: #2d3748;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

/* Corrige diferença de altura entre input e select */
.filter-group input {
  line-height: 48px;
}

/* Restaurar aparência do select */
.filter-group select {
  appearance: auto; /* restaura a seta */
}

/* UF (estado) menor */
.small-select {
  flex: none;
  width: 60px;
}

/* Botão */
button[type="submit"] {
  height: 48px;
  padding: 0 24px;
  background-color: #FF6B6B;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #e35a5a;
}

/* Responsivo */
@media (max-width: 768px) {
  .filters-scroll {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .filter-group,
  .small-select,
  button[type="submit"] {
    width: 100%;
  }

  .small-select {
    max-width: 100px;
  }
}
/* Botão "Filtrar" visível apenas no mobile */
.filter-toggle-wrapper {
  display: none;
  text-align: center;
  margin: 1rem auto 0;
}

.btn-toggle-filter {
  background-color: #FF6B6B;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Esconder filtros no mobile */
@media (max-width: 768px) {
  .filters-container {
    display: none;
  }

  .filters-container.show {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .filter-toggle-wrapper {
    display: block;
  }
}

/* Animação suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Wrapper só aparece no mobile */
.filter-toggle-wrapper {
  display: none;
  margin-top: 1rem;
  padding: 0 1rem;
}

.btn-toggle-filter {
  width: 100%;
  background-color: transparent;
  color: #FF6B6B;
  border: 2px solid #FF6B6B;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-toggle-filter:hover {
  background-color: #fff5f5;
}

/* Ícone opcional (substituível por SVG futuramente) */
.filter-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Mobile-only */
@media (max-width: 768px) {
  .filter-toggle-wrapper {
    display: block;
  }

  .filters-container {
    display: none;
  }

  .filters-container.show {
    display: block;
    animation: fadeIn 0.3s ease;
  }
}
.top-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-voltar, .btn-copiar {
  background: none;
  border: 1px solid #1D3557;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}
.mensagem-copiado {
  color: green;
  font-size: 0.8rem;
  display: none;
}
.botoes-contato {
  display: flex;
  gap: 1rem;
  margin: 2rem 1rem;
  flex-wrap: wrap;
}
.btn-whatsapp, .btn-solicitar {
  background-color: #FF6B6B;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal.ativo {
  display: flex;
}
.modal-conteudo {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.fechar {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal input, .modal textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.btn-enviar {
  background-color: #1D3557;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}
@media (max-width: 600px) {
  .top-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .botoes-contato {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal.ativo {
  display: flex;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal.ativo {
  display: flex;
}
.modal-conteudo {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
  animation: fadeIn 0.3s ease;
}

.modal.ativo {
  display: flex;
}

.modal-conteudo {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
}

.modal-conteudo h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #1D3557;
  font-weight: 600;
}

.modal input,
.modal textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
}

.modal input:focus,
.modal textarea:focus {
  border-color: #FF6B6B;
  outline: none;
}

.btn-enviar {
  background-color: #FF6B6B;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
}

.btn-enviar:hover {
  background-color: #e95e5e;
}

.fechar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.fechar:hover {
  color: #FF6B6B;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .modal-conteudo {
    padding: 1.5rem;
  }

  .modal-conteudo h2 {
    font-size: 1.3rem;
  }

  .btn-enviar {
    font-size: 0.95rem;
  }
}
.modal input,
.modal textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.modal input:last-of-type,
.modal textarea {
  margin-bottom: 1.5rem;
}
.botoes-contato {
  display: flex;
  gap: 1rem;
  margin: 2rem 1rem;
  flex-wrap: wrap;
}

.btn-contato {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #FF6B6B;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-contato:hover {
  background-color: #e95e5e;
}

.btn-contato svg {
  flex-shrink: 0;
}
.top-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1rem 0;
  flex-wrap: wrap;
}

.btn-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid #1D3557;
  color: #1D3557;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-icon-text:hover {
  background-color: #f1f5f9;
}

.btn-icon-text svg {
  flex-shrink: 0;
}

.mensagem-copiado {
  color: green;
  font-size: 0.8rem;
  display: none;
}

@media (max-width: 600px) {
  .top-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-icon-text {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .top-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .btn-icon-text {
    width: auto;
    justify-content: center;
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
  }
}
.top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem;
  justify-content: flex-start;
}

.btn-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid #1D3557;
  color: #1D3557;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-icon-text:hover {
  background-color: #f1f5f9;
}

.btn-icon-text svg {
  flex-shrink: 0;
}

/* RESPONSIVO: lado a lado no mobile */
@media (max-width: 600px) {
  .top-actions {
    flex-direction: row;
    justify-content: space-between;
  }

  .btn-icon-text {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
    text-align: center;
  }
}
.mensagem-sucesso {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background-color: #e6f4ea;
  border-left: 4px solid #2e7d32;
  color: #2e7d32;
  font-size: 0.95rem;
  border-radius: 6px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.tag-negocio {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #FF6B6B;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.carousel {
  position: relative;
}
.newsletter {
  background-color: #1D3557;
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid #FF6B6B;
}

.newsletter h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #e5e5e5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.newsletter-form button {
  background-color: #FF6B6B;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #e55a5a;
}

/* Responsivo para tablets e desktop */
@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input[type="email"] {
    flex: 1;
  }

  .newsletter-form button {
    width: auto;
  }
}
.como-funciona {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.como-funciona h3 {
  font-size: 24px;
  color: #1D3557;
  margin-bottom: 40px;
}

.passos {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.passo {
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.passo .icone {
  font-size: 36px;
  margin-bottom: 15px;
  color: #FF6B6B;
}

.passo h4 {
  font-size: 18px;
  color: #1D3557;
  margin-bottom: 10px;
}

.passo p {
  font-size: 14px;
  color: #555;
}

/* Desktop: layout em linha */
@media (min-width: 768px) {
  .passos {
    flex-direction: row;
    justify-content: space-between;
  }

  .passo {
    width: 30%;
  }
}
.beneficios {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.beneficios h3 {
  font-size: 24px;
  color: #1D3557;
  margin-bottom: 40px;
}

.beneficios-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.beneficio {
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.beneficio .icone {
  font-size: 32px;
  color: #FF6B6B;
  margin-bottom: 15px;
}

.beneficio h4 {
  font-size: 16px;
  color: #1D3557;
  margin-bottom: 10px;
}

.beneficio p {
  font-size: 14px;
  color: #555;
}

/* Desktop */
@media (min-width: 768px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .beneficios-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.buscas-populares {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.buscas-populares h3 {
  font-size: 24px;
  color: #1D3557;
  margin-bottom: 30px;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f9f9f9;
  color: #1D3557;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip:hover {
  background-color: #FF6B6B;
  color: white;
}

.chip:hover svg {
  stroke: white;
}
.toggle-mais-filtros {
  background: none;
  color: #FF6B6B;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
}

.mais-filtros {
  margin-top: 20px;
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mais-filtros {
    grid-template-columns: repeat(2, 1fr);
  }
}
.limpar-filtros {
  background: none;
  border: none;
  color: #888;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 10px;
  transition: color 0.2s ease;
}

.limpar-filtros:hover {
  color: #FF6B6B;
}
.filter-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 10px 0 20px;
  flex-wrap: wrap;
}

.action-button {
  background: none;
  border: none;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px 8px;
  transition: color 0.2s ease;
}

.action-button:hover {
  color: #FF6B6B;
}
.filter-actions-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-actions-row button {
  background: none;
  border: none;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
  padding: 5px 8px;
}

.filter-actions-row button:hover {
  color: #FF6B6B;
}
.filter-actions-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.filter-actions-row button {
  background: none;
  border: none;
  font-size: 14px;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.filter-actions-row button:hover {
  color: #FF6B6B;
}

.btn-filtrar {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  color: #FF6B6B;
  border: 2px solid #FF6B6B;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-filtrar:hover {
  background-color: #FF6B6B;
  color: #fff;
}
