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;
  }
}
.sobre-page h2 {
  font-size: 28px;
  margin-top: 20px;
  text-align: center;
}

.sobre-conteudo {
  padding: 30px 0;
  line-height: 1.7;
  color: #444;
}

.sobre-conteudo h3,
.sobre-conteudo h4 {
  margin-top: 20px;
  color: #1D3557;
}

.sobre-conteudo ul {
  list-style: disc;
  margin-left: 20px;
  color: #555;
}

.sobre-conteudo blockquote {
  background: #f1f3f6;
  padding: 15px 20px;
  border-left: 4px solid #ff5a5f;
  font-style: italic;
  margin: 20px 0;
}
