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

html,
body {
  height: 100%;
  margin: 0 !important;
  font-family: "Lato", sans-serif;
}

h1 {
  font-family: "Alice", serif;
  font-weight: 300;
  line-height: 1.4;
  font-size: 3rem;
  text-align: center;
}

.features-title,
.section-images-title,
.container-global h1,
.depoimentos-container h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

#wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  font-family: "Lato", sans-serif;
}

.hero-content {
  text-align: center;
  padding: 5rem 2rem 5rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.features {
  padding: 5rem 2rem;
  background-color: #fff;
  font-family: "Lato", sans-serif;
  text-align: center;
}

.features-title {
  font-size: 2.4rem;
  margin-bottom: 4rem;
  line-height: 1.4;
  font-family: "Alice", sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.feature-item h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #333;
  line-height: 1.7;
}

.features-button {
  margin-top: 4rem;
}

.features-button .button {
  background-color: #2e333a;
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.features-button .button:hover {
  background-color: #444a52;
}

.section-images {
  background-color: #f8f8f8;
  padding: 5rem 2rem;
  text-align: center;
  font-family: "Lato", sans-serif;
}

.section-images-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 1.4;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.image-wrapper {
  width: 100%;
  max-width: 600px;
  height: 40rem;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

.section-global {
  background-color: #2e3640;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  font-family: "Lato", sans-serif;
}

.container-global h2 {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.btn-global {
  display: inline-block;
  background-color: #fff;
  color: #2e3640;
  padding: 0.8rem 2.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.btn-global:hover {
  background-color: #2e3640;
  color: #fff;
  border: 1px solid #fff;
}

.section-depoimentos {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  font-family: "Lato", sans-serif;
}

.depoimentos-container h2 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.cards-depoimentos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-depoimento {
  max-width: 300px;
  padding: 1rem;
  border-radius: 8px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-depoimento img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.card-depoimento .quote {
  font-size: 2rem;
  color: #8e8cf8;
  margin-bottom: 0.5rem;
}

.card-depoimento .texto {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}

.card-depoimento .autor {
  font-weight: 600;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .container-global h2 {
    font-size: 1.6rem;
  }

  .btn-global {
    padding: 0.7rem 2rem;
    font-size: 0.95rem;
  }

  .cards-depoimentos {
    flex-direction: column;
    align-items: center;
  }

  .depoimentos-container h2 {
    font-size: 1.8rem;
  }

  .features-title,
  .section-images-title,
  .container-global h1,
  .depoimentos-container h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content p {
    font-size: 1.4rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-title {
    font-size: 3rem;
  }

  .section-images-title {
    font-size: 3.5rem;
  }

  .image-row {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .hero {
    text-align: center;
  }

  .hero-image img {
    max-height: 700px;
  }
}
