/*li {
  list-style-type: none;
}*/

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

body {
  font-family: sans-serif;
  line-height: 1.6;
  color: #222;
  scroll-behavior: smooth;
  background-color: #fdfdfd;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

header.hero {
  background: linear-gradient(to right, #006266, #1e272e);
  color: white;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

nav .logo {
  height: 50px;
}

nav .menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  transition: max-height 0.4s ease;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero-content {
  margin-top: 20px;
  padding: 0 20px;
  min-height: 400px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

main {
  padding: 40px 0;
}

main > section {
  margin-bottom: 60px;
  transition: all 0.8s ease-out;
}

.highlight {
  background-color: #f0f0f5;
  padding: 30px;
  border-radius: 10px;
}

section img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 10px;
}

.marcas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.marcas div {
  flex: 1;
  min-width: 200px;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cta {
  text-align: center;
  background: #006266;
  color: white;
  padding: 50px 20px;
  border-radius: 10px;
}

.cta button {
  padding: 12px 25px;
  margin-top: 15px;
  background-color: #00b894;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.cta button:hover {
  background-color: #019875;
}

footer {
  background: #1e272e;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: #1e272e;
    margin-top: 10px;
  }

  nav ul.show {
    max-height: 500px;
  }

  nav .menu-toggle {
    display: block;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.grid-2 img, .grid-3 img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}









p,span,li,h1,h2,h3,h4,h5,h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}



.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
