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: 40px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 26px;
}

.search-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.search-box input,
.search-box select {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  flex: 1;
  min-width: 200px;
}

.search-box button {
  padding: 12px 20px;
  background-color: #ff5a5f;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  width: calc(50% - 10px);
  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;
  }

  .search-box {
    flex-direction: column;
    gap: 12px;
  }

  .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;
  }
}
.termos-page h2 {
  font-size: 28px;
  margin-top: 20px;
  text-align: center;
}

.termos-conteudo {
  padding: 30px 0;
  line-height: 1.7;
  color: #444;
}

.termos-conteudo h3 {
  margin-top: 25px;
  color: #1D3557;
}

.termos-conteudo ul {
  list-style: disc;
  margin-left: 20px;
  color: #555;
}
.contato-page {
  padding-top: 40px;
  padding-bottom: 60px;
}

.contato-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contato-info {
  flex: 1;
}

.contato-info h2 {
  font-size: 28px;
  color: #1D3557;
  margin-bottom: 10px;
}

.contato-info p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.contato-info a {
  color: #ff5a5f;
  text-decoration: none;
}

.contato-dados p {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

.contato-form {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-contato input,
.form-contato textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background-color: #f9f9f9;
  color: #333;
}

.form-contato label {
  font-weight: 600;
  color: #333;
}

.form-contato .btn {
  margin-top: 10px;
  padding: 12px 20px;
  background-color: #ff5a5f;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.form-contato .btn:hover {
  background-color: #e14c4f;
}

/* Responsivo */
@media (min-width: 768px) {
  .contato-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .contato-info {
    max-width: 40%;
  }

  .contato-form {
    max-width: 60%;
  }
}
/* === Reset e fonte base === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f6f8;
  color: #333;
}

/* === Página Anunciar === */
.anunciar-page {
  padding: 60px 20px;
  text-align: center;
}

.anunciar-page h2 {
  font-size: 28px;
  color: #1D3557;
  margin-bottom: 40px;
}

/* === Grid de Cards === */
.planos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* === Card individual === */
.plano-card {
  background-color: #ffffff;
  border: 2px solid #FF6B6B;
  border-radius: 12px;
  padding: 30px 24px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.plano-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.plano-card h3 {
  color: #FF6B6B;
  font-size: 20px;
  margin-bottom: 12px;
}

.plano-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* === Responsivo === */
@media (max-width: 768px) {
  .planos-grid {
    flex-direction: column;
    align-items: center;
  }

  .plano-card {
    text-align: center;
  }
}
