* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #fff;
  color: #222;
}

/* HEADER */
header {
  background: #03296e;
  padding: 20px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* HERO */
.hero {
  height: 420px;
  background: url('fundogodrop3.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}



.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
  margin: 20px;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero button {
  background: rgb(3, 41, 110);
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  cursor: pointer;
}

/* SECTIONS */
section {
  padding: 60px 0;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-container h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.section-container p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
}

/* PRODUTOS */
.produtos {
  background: #f4f4f4;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.produto {
  background: #fff;
  padding: 15px;
  text-align: center;
}

.produto img {
  width: 100%;
}

.preco {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}


@media screen and (max-width: 500px) {
  .header-content {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

  nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
}
}