/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
/* Só o que muda no scroll */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.575);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  backdrop-filter: blur(8px);
}
.navbar .logo {
  display: flex;
  gap: 5px;
  width: 50px;
  height: 50px;
}
.navbar .logo img{
  border-radius: 15px;
  width: 40px;
  scale: 0.8;
}
.navbar .logo p {
align-content: center;
color: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 900;
}

.nav-links ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links ul li a:hover {
  color: #e85d04;
}

.icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icons i {
  font-size: 18px;
  cursor: pointer;
  color: #444;
  padding: 10px;
}
.icons i:hover {
  background-color: rgb(239, 240, 248);
  padding: 10px;
  border-radius: 10px;
}
#pontos {
  display: none;
}
.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  height: 550px;
  background: url("imgs/hero-banner.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
  
}

.hero-content h1 {
  font-size: 60px;
  font-weight: bold;
}

.hero-content span {
  color: #e85d04;
}

.hero-content p {
  margin: 15px 0;
  font-size: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.hero-buttons {
  margin-top: 35px;
}

.btn {
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary {
  background: #e85d04;
  color: white;
}

.btn-primary:hover {
  
  background: #c04600;
}

.btn-secondary {
  
  background: white;
  color: #e85d04;
}

.btn-secondary:hover {
  color: black;
  background: #f3f3f3;
}

/* Info box */

.info-box {
  background: white;
  width: 700px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 30px auto auto auto;
  max-width: 1000px;
}
.info-box h3 {
    padding-bottom: 15px;
    color: black;
}
.info-box p {
    font-weight: 100;

}
/* Produtos */
.container {
  padding: 20px 50px;
}

.produtos h2 {
  margin-bottom: 20px;
  color: black;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 900;
  font-size: 22px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  
  background: white;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 10px;
}
.card h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.price {
  font-weight: bold;
  color: #e63946;
  margin: 10px 0;
}

.btn-whatsapp {
  display: inline-block;
  padding: 8px 15px;
  background: #25D366;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 10px;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

/* Footer */
.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
  color: #444;
}

/* Responsivo */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 8px;
  }

  .nav-links ul {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .container {
    padding: 20px;
  }

  .cards {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  #pontos {
    display: block;
  }
  .info-box {
    margin: 20px auto auto auto;
    width: 95%;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 35px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-content p {
    font-size: 18px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
    .hero-buttons {
    display: flex;
    flex-direction: column;
    margin-left: 25px;
    margin-right: 25px;
  }
  .btn-primary {
    margin-bottom: 20px;
  }
}
