.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;

  background-image: url(../images/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.hero-video__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 19, 45, 0.14) 43.27%,
    rgba(0, 19, 45, 0.6) 83.65%
  );
}

.hero .container {
  z-index: 2;
}

.hero h1 {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -2.4px;
  margin-bottom: 48px;
}

.hero p {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.08px;
  margin: 0 auto 48px;
  max-width: 850px;
}

.hero-wave {
  position: absolute;
  bottom: -7px;
  pointer-events: none;
  left: 0;
  width: 100%;
  z-index: 2;
}

.hero-wave svg {
  width: 100%;
  height: fit-content;
}

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

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

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

/* Impact Section */
.impact {
  background-color: #3565b1;
  padding: 2.5rem 0 5rem;
}

.impact .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.impact-content p {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
}

/* Accordion Styles */
.impact-accordion {
  background-color: #fff;
  border-radius: 10px 50px;
  overflow: hidden;
  padding: 24px 48px;
}

.impact-item {
  border-bottom: 1px solid #eee;
}

.impact-item:last-child {
  border-bottom: none;
}

.impact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
}

.impact-header h3 {
  color: #a6a6a6;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.9px;
  transition: color 0.3s ease;
}

.impact-item.active .impact-header h3 {
  color: #13233e;
}

.impact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #999;
}

.impact-icon svg {
  width: 20px;
}

.impact-item.active .impact-icon {
  background-color: #3b6db3;
}

.impact-item.active .impact-icon svg {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.impact-item.active .impact-icon svg path {
  fill: #fff;
}

.impact-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.impact-item.active .impact-body {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 24px;
}

.impact-body p {
  color: #757575;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media screen and (min-width: 768px) {
  .impact-content p {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .impact .container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 80px;
  }
  .impact-accordion {
    border-radius: 10px 75px;
  }
}

/* Inovação */
.inovacao {
  padding: 5rem 0 15rem;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.inovacao-wave {
  position: absolute;
  bottom: -7px;
  pointer-events: none;
  left: 0;
  width: 100%;
}

.inovacao-wave svg {
  width: 100%;
  height: fit-content;
}

.inovacao-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.inovacao-image img {
  border-radius: 10px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.inovacao-content p {
  color: #545454;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 32px;
}

.inovacao-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.inovacao-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 0 16px 0 0;
  box-shadow: 0 0 22.1px 0 rgba(0, 0, 0, 0.15);
  border-left: 2px solid #3565b1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inovacao-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.inovacao-feature span {
  color: #121212;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

@media screen and (min-width: 768px) {
  .inovacao-features {
    grid-template-columns: 1fr 1fr;
  }
  .inovacao-content p {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .inovacao-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .inovacao-image img {
    border-radius: 10px 75px;
  }
}

/* SOLUÇÕES */
.solucoes {
  padding: 2.5rem 0 10rem;
  background: #000d1f;
  position: relative;
}

.solucoes .section-header p {
  color: #fff;
}

.solucoes-wave svg {
  width: 100%;
  height: fit-content;
}

.solucoes-wave:nth-of-type(1) svg {
  transform: translateY(6px);
}

.solucoes-wave:nth-of-type(2) svg {
  position: absolute;
  bottom: -1px;
  left: 0;
}

.solucoes-btn {
  display: flex;
  justify-content: center;
}

/* Conteudo Tecnico */
.conteudo-tecnico {
  padding: 5rem 0 10rem;
  background: linear-gradient(270deg, #3565b1 0%, #000d1f 67.79%);
  position: relative;
}

.conteudo-tecnico .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.conteudo-tecnico-content p {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 130%;
}

/* YouTube Container */
.youtube {
  background-color: #000;
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.youtube img {
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  object-fit: cover;
  height: 100%;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.youtube:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.youtube .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.youtube:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube .play-button svg {
  width: 56px;
  height: auto;
  transition: fill 0.3s ease;
}

.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border: 0;
}

.conteudo-tecnico-wave {
  position: absolute;
  bottom: -7px;
  pointer-events: none;
  left: 0;
  width: 100%;
}

.conteudo-tecnico-wave svg {
  width: 100%;
  height: fit-content;
}

@media screen and (min-width: 1024px) {
  .conteudo-tecnico .container {
    grid-template-columns: 1fr 1fr;
  }
}

/* PRODUTOS */
.produtos {
  padding: 2.5rem 0;
  position: relative;
}

.produtos-content {
  z-index: 1;
}

.produtos-content p {
  color: #424242;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 32px;
}

.produtos-wave {
  position: absolute;
  bottom: -7px;
  pointer-events: none;
  left: 0;
  width: 100%;
}

.produtos-wave svg {
  width: 100%;
  height: fit-content;
}

@media screen and (min-width: 768px) {
  .produtos {
    padding: 4rem 0 0;
    background-image: url(../images/produtos-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .produtos-content {
    border-radius: 10px 50px;
  }
  .produtos-content {
    padding: 5rem;
    max-width: 750px;
    background-color: #fff;
    border-radius: 10px 50px;
    box-shadow: 0 0 110.8px 0 rgba(0, 0, 0, 0.1);
    position: relative;
  }
}

@media screen and (min-width: 1024px) {
  .produtos-content {
    border-radius: 10px 75px;
  }
}
