body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  cursor: pointer;
  text-align: center;
  width: 110px;
  background-color: #e22838;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  cursor: pointer;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.5s;
  font-weight: 700;
}

nav ul li a:hover {
  color: #ff0404;
  text-transform: uppercase;
  text-decoration: double;
}

.hero {
  height: 90vh;
  background: url(./img/Pitch\ Deck\ Presentation\ \(4\).png);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(7, 7, 7);
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #ff6b6b;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #ff0116;
  background-color: rgb(255, 255, 255);
  border-right: 4px solid rgb(255, 0, 0);
  border-color: #ff0404;
  color: #ff0404;
  font-weight: 700;
}

.produtos {
  padding: 80px 50px;
  text-align: center;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin: 15px 0 5px;
}

.sobre {
  background-color: #fff5f5;
  padding: 80px 50px;
  text-align: center;
}

footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

footer a {
  color: #ff6b6b;
  text-decoration: none;
}

@media(max-width: 495px) {
  .um{
    display: none;
  }
}

@media(max-width: 395px) {
  .logo{
    margin-right: 10px;
    font-size: 1.4rem;
  }

  nav{
    font-size: 1rem;
    margin-right: 10px;
  }

  .um{
    display: none;
  }

  .hero-text p {
    font-size: 0.8rem;
  }
}