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

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
}

.topbar {
  display: flex;
  background: #780000;
  color: #fff;
  padding: 15px 40px;
  justify-content: space-between;
  align-items: center;
}
.topbar .menu-toggle {
  display: none;
}
.topbar .navbar p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
.topbar .navbar .nav-menus {
  display: flex;
  gap: 20px;
}
.topbar .navbar .nav-menus a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.topbar .navbar .nav-menus a:hover {
  color: #e0ffe2;
}
.topbar .navbar .nav-menus a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}
.topbar .navbar .nav-menus a:hover::after {
  width: 100%;
}

.mobile-nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  right: 0;
  height: 100vh;
  width: 220px;
  background-color: #780000;
  padding: 30px 20px;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.35);
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav .toggle-fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
}
.mobile-nav .toggle-fechar:hover {
  cursor: pointer;
  color: #e2e2e2;
}
.mobile-nav .nav-menus {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
}
.mobile-nav .nav-menus a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav .nav-menus a:hover {
  color: #d4a84f;
  padding-left: 8px;
}

.mobile-nav.open {
  transform: translateX(0);
}

.footer {
  background-color: #780000;
  color: #eaeaea;
  font-size: 0.95rem;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}
.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}
.footer p {
  line-height: 1.6;
  max-width: 320px;
}
.footer .footer-brand .socials {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}
.footer .footer-brand .socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #d4a84f;
  color: #d4a84f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.footer .footer-brand .socials a:hover {
  background-color: #d4a84f;
  color: #123b37;
}
.footer .footer-direita {
  display: flex;
  gap: 150px;
}
.footer .footer-direita .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-direita .footer-links a {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-direita .footer-links a:hover {
  color: #d4a84f;
}
.footer .footer-bottom {
  text-align: center;
  padding: 15px;
  background-color: #d4a84f;
  color: #123b37;
  font-size: 0.85rem;
}

main section {
  padding: 60px 20px;
}
main h1,
main h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #780000;
}
main h1 {
  font-size: 2.5rem;
}
main h2 {
  font-size: 2rem;
}
main p {
  color: #444;
  line-height: 1.6;
}

/* FEATURES */
.features {
  background-color: #ffffff;
}
.features .features-grid {
  max-width: 1000px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.features .features-grid div {
  background: #fff;
  padding: 25px;
  border: 1px solid #999999;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.features .features-grid div h3 {
  margin-bottom: 10px;
  color: #780000;
}

/* Detalhes */
.highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  gap: 15px;
}
.highlight .wine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.highlight .wine-grid article {
  border: 1px solid #e0e0e0;
  padding: 25px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.highlight .wine-grid article h3 {
  color: #780000;
  margin-bottom: 10px;
}
.highlight .wine-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.highlight .btn-primary {
  display: inline-block;
  padding: 6px 15px;
  background-color: #d4a84f;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.highlight .btn-primary:hover {
  background-color: #c2963f;
}

@media (max-width: 900px) {
  .topbar .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
  }
  .topbar .menu-toggle:hover {
    cursor: pointer;
    color: #e2e2e2;
  }
  .topbar .navbar {
    display: none;
  }
  .footer .footer-container {
    display: flex;
    flex-direction: column;
  }
  .footer .footer-container .footer-direita {
    padding: 0 20px;
    justify-content: space-between;
  }
  .features .features-grid,
  .highlight .wine-grid {
    grid-template-columns: 1fr;
  }
  .features .features-grid {
    max-width: 400px;
  }
  h1 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=estilos.css.map */