.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    height: calc(100vh - 64px);
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.webp");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero__bg {
    background-image: url("../images/hero-bg-mobile.webp");
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 30, 15, 0.06) 0%, rgba(8, 30, 15, 0.32) 50%, rgba(8, 30, 15, 0.62) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  padding: 50px 24px 80px;
}
.hero__content h1 {
  color: #ffffff;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hero__content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 500;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

.sobre {
  background: #ffffff;
  padding-bottom: 56px;
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
@media (max-width: 900px) {
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.sobre__content h2 {
  margin-bottom: 0;
}
.sobre__content h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, hsl(38, 75%, 55%), hsl(148, 30%, 40%));
  margin-top: 20px;
  margin-bottom: 28px;
}
.sobre__content p {
  margin-bottom: 16px;
  font-weight: 500;
}
.sobre__content p:last-child {
  margin-bottom: 0;
}
.sobre__image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.sobre__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .sobre__image img {
    height: 280px;
  }
}
.sobre__image figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-style: italic;
}

.solucoes {
  background: hsl(40, 20%, 97%);
  padding-top: 56px;
}
.solucoes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .solucoes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .solucoes__grid {
    grid-template-columns: 1fr;
  }
}
.solucoes__card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.solucoes__card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}
.solucoes__badge {
  display: inline-block;
  vertical-align: middle;
  background: rgba(71.4, 132.6, 99.96, 0.12);
  color: hsl(152, 42%, 24%);
  font-family: "DM Sans", "DM Sans Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
.solucoes__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(71.4, 132.6, 99.96, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.solucoes__icon svg {
  width: 26px;
  height: 26px;
  color: hsl(148, 30%, 40%);
}
.solucoes__card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.solucoes__card p {
  font-size: 0.9rem;
  line-height: 1.68;
}

.diferenciais {
  background: linear-gradient(to right, hsl(152, 50%, 12%) 0%, hsl(152, 42%, 24%) 45%, hsl(148, 35%, 34%) 100%);
}
.diferenciais .section-header--light .section-label--light {
  color: hsl(38, 75%, 55%);
}
.diferenciais .section-header--light h2 {
  color: #ffffff;
}
.diferenciais__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
@media (max-width: 900px) {
  .diferenciais__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .diferenciais__list {
    grid-template-columns: 1fr;
  }
}
.diferenciais__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.diferenciais__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diferenciais__icon svg {
  width: 22px;
  height: 22px;
  color: hsl(38, 75%, 55%);
  stroke-width: 2;
}

.sustentabilidade {
  background: #ffffff;
}
.sustentabilidade__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
@media (max-width: 900px) {
  .sustentabilidade__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.sustentabilidade__image {
  border-radius: 10px;
  overflow: hidden;
}
.sustentabilidade__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .sustentabilidade__image img {
    height: 280px;
  }
}
.sustentabilidade__content h2 {
  margin-bottom: 0;
}
.sustentabilidade__content h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: hsl(38, 75%, 55%);
  margin-top: 20px;
  margin-bottom: 24px;
}
.sustentabilidade__content p {
  margin-bottom: 16px;
}
.sustentabilidade__content p:last-child {
  margin-bottom: 0;
}

.video-section {
  background: hsl(40, 20%, 97%);
}
.video-section .section-header {
  max-width: 840px;
}
.video-section .section-header p {
  max-width: 680px;
  margin: 14px auto 48px;
}
.video-section__wrapper {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}
.video-section__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 18px;
}
.video-section__wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .video-section__wrapper img {
    height: 220px;
  }
}
.video-section__wrapper:hover .video-section__play {
  transform: translate(-50%, -50%) scale(1.08);
}
.video-section__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.video-section__play svg {
  width: 26px;
  height: 26px;
  fill: hsl(152, 42%, 24%);
  margin-left: 4px;
}

.numeros {
  background: #ffffff;
  padding-bottom: 64px;
}
.numeros .section-header {
  margin-bottom: 32px;
}
.numeros__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .numeros__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.numeros__item {
  text-align: center;
  padding: 8px 24px;
}
@media (max-width: 768px) {
  .numeros__item {
    padding: 32px 16px;
  }
}
.numeros__value {
  display: block;
  font-family: "Cormorant Garamond", "Cormorant Garamond Fallback", Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: hsl(152, 42%, 24%);
  line-height: 1;
  margin-bottom: 14px;
}
.numeros__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(150, 10%, 38%);
}

.parceiros {
  background: hsl(40, 20%, 97%);
}
.parceiros .section-header {
  margin-bottom: 48px;
}
.parceiros__slider {
  display: flex;
  align-items: center;
  gap: 16px;
}
.parceiros__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid hsl(40, 15%, 88%);
  background: #ffffff;
  color: hsl(150, 20%, 12%);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.parceiros__arrow:hover {
  border-color: hsl(148, 30%, 40%);
  color: hsl(148, 30%, 40%);
}
.parceiros__carousel {
  flex: 1;
  overflow: hidden;
}
.parceiros__carousel .slick-list {
  margin: 0 -10px;
}
.parceiros__carousel .slick-slide {
  margin: 0 10px;
}
.parceiros__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  border: 1px solid hsl(40, 15%, 88%);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.parceiros__logo img {
  max-width: 100%;
  max-height: 200px;
  width: 100%;
  object-fit: contain;
  transition: all 0.2s ease;
}
.parceiros__logo span {
  font-size: 0.8125rem;
  color: hsl(150, 10%, 38%);
  font-weight: 500;
  text-align: center;
}
.parceiros__logo:hover {
  border-color: rgba(71.4, 132.6, 99.96, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.blog {
  background: #ffffff;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}
.blog__card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid hsl(40, 15%, 88%);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background: #ffffff;
}
.blog__card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}
.blog__image {
  height: 220px;
  overflow: hidden;
  background: hsl(40, 20%, 97%);
}
.blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog__card:hover .blog__image img {
  transform: scale(1.04);
}
.blog__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog__content h3 {
  font-size: 1.0625rem;
  line-height: 1.4;
}
.blog__content h3 a {
  color: hsl(150, 20%, 12%);
}
.blog__content h3 a:hover {
  color: hsl(148, 30%, 40%);
}
.blog__content p {
  font-size: 0.875rem;
  color: hsl(150, 10%, 38%);
  line-height: 1.55;
}
.blog__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(148, 30%, 40%);
  margin-top: auto;
}
.blog__link:hover {
  color: hsl(152, 42%, 24%);
}
.blog__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.blog__cta {
  text-align: center;
}

.contato {
  background: hsl(40, 20%, 97%);
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contato__info h2 {
  margin-bottom: 0;
}
.contato__info h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: hsl(38, 75%, 55%);
  margin-top: 20px;
  margin-bottom: 24px;
}
.contato__info > p {
  margin-bottom: 32px;
}
.contato__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contato__details li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.9375rem;
  color: hsl(150, 10%, 38%);
}
.contato__details .detail-icon {
  flex-shrink: 0;
  width: 20px;
  color: hsl(148, 30%, 40%);
  margin-top: 3px;
}
.contato__form {
  background: #ffffff;
  border: 1px solid hsl(40, 15%, 88%);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
@media (max-width: 580px) {
  .contato__form {
    padding: 28px 20px;
  }
}
