.section-slides-index {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

.slider-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.9s ease-in-out;
}

.slider-item {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-group {
  display: flex;
  flex-direction: row;
  width: 100vw;
  justify-content: space-between;
  align-items: center;
}

.slider-control {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.section-slides-index:hover .slider-control {
  opacity: 1;
  visibility: visible;
}

.prev {
  left: 20px;
  transform: translateY(-50%);
}

.next {
  right: 20px;
  transform: translateY(-50%) rotate(180deg);
}

.prev:hover {
  transform: translateY(-50%) scale(1.2);
}

.next:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.2);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.slider-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.slider-dot.active {
  width: 50px;
  border-radius: 16px;
  background: var(--color-neutro-0);
  border: none;
}

.section-showroom h4 {
  color: var(--text-default);
}

.title-form-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  text-align: center;
}

.arrow-form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrow-form-group svg {
  opacity: 0;
  animation: arrowFade 2s infinite;
}

/* atraso entre setas */
.arrow-form-group svg:nth-child(1) {
  animation-delay: 0s;
}

.arrow-form-group svg:nth-child(2) {
  animation-delay: 0.6s;
  margin-top: -24px;
}

@keyframes arrowFade {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  20% {
    opacity: 0;
    transform: translateY(0);
  }

  60% {
    opacity: 1;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    /* ambos visíveis no fim */
    transform: translateY(12px);
  }
}

.section-solucoes {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px;
  width: 100%;
  height: fit-content;
  gap: 32px;
  align-self: stretch;
  background: linear-gradient(
    94deg,
    var(--brand-primary-default, #00ab11) 0.8%,
    var(--brand-primary-heavy-l, #005a09) 100%
  );
  color: var(--text-default);
}

.title-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-showroom {
  display: flex;
  height: 96px;
  padding: 32px 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: var(--color-neutro-100, #333);
}

.section-sem-carga {
  width: 100%;
  background: var(--other-bg-section-2-homepage, #101828);
  clip-path: inset(0); 
}

.container-sem-carga {
  display: flex;
  flex-direction: row;
  min-height: 500px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  
}

.circle-blur {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--brand-primary-lighter);
  opacity: 0.4;
  filter: blur(100px);
  left: 40%;
  z-index: 1;
}

.circle-blur:nth-child(1) {
  left: 0;
  bottom: -900px;
}

.sem-carga-texto {
  flex: 1.2;
  gap: 32px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  color: var(--text-default);
  background: var(--other-bg-section-2-homepage, #101828);
}

.badge-solucoes {
  display: flex;
  flex-direction: row;
  padding: 8px 16px;
  gap: 8px;
  width: fit-content;
  border-radius: 99px;
  background: rgba(0, 171, 17, 0.3);
}

.badge-solucoes p {
  color: var(--color-green-30);
  text-align: center;
}

.icon-badge {
  width: 14px;
  height: auto;
}

.highlight {
  color: var(--text-hover);
}

.highlight-darker {
  color: var(--brand-primary-heavy);
}

.heading-solution {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.progress-bar-fill {
  width: 100px;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    var(--brand-primary-lighter-l, #16fd2d) 0%,
    var(--brand-primary-heavy, #00820d) 100%
  );
}

.stat-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}

.stat-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
  height: fit-content;
  min-width: 250px;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.stat-data {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.stat-value {
  color: #40ff53;
}

.sem-carga-imagem {
  flex: 1;
}

.sem-carga-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-nossas-solucoes {
  display: flex;
  padding: 64px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.container-interno {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 32px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-container h3 {
  color: var(--text-invert);
  text-align: left;
}

.btn-ver-mais:hover {
  background-color: #00820d;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.solucao-card {
  position: relative;
  height: 400px;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.solucao-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.solucao-titulo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  text-align: center;
  z-index: 2;
  width: 240px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.solucao-titulo h4 {
  text-decoration: none;
  color: var(--text-default);
}

.solucao-card:hover .solucao-titulo {
  background: var(--color-neutro-100);
}

.solucao-card:hover img {
  transform: scale(1.1);
}

.banner-catalogo {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--surface-secondary);
  padding: 64px;
  gap: 64px;
  align-self: stretch;
  overflow: hidden;
  min-height: fit-content;
  justify-content: center;
}

.bg-dark-shape {
  width: 650px;
  height: 1100px;
  transform: rotate(-45deg);
  position: absolute;
  left: -280px;
  bottom: -450px;
  background: var(--cinza-principal);
  z-index: 1;
}

.container-flex {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 64px;
  max-width: 1280px;
}

.grid-imagens {
  display: flex;
  gap: 8px;
  width: 685px;
  align-self: stretch;
}

.img-box {
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-1 {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-2 {
  width: 40%;
}

.col-3 {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.h-large {
  height: 100%;
}

.h-small {
  height: 100%;
}

.h-full {
  height: 100%;
}

.h-stack {
  flex: 1 0 0;
}

.tag-charging {
  background: var(--color-green-10);
  color: var(--color-green-100);
  padding: 8px 16px;
  border-radius: 99px;
  width: fit-content;
}

.section-carregamento {
  width: 100%;
  max-width: 1280px;
  padding: 64px;
  gap: 32px;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
}

.section-carregamento span {
  text-align: center;
}

.texto-inicial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.texto-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}

.title-tag {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.barra-titulo {
  width: 160px;
  height: 8px;
  background: var(
    --gradient-green,
    linear-gradient(
      90deg,
      var(--brand-primary-lighter-l, #16fd2d) 0%,
      var(--brand-primary-heavy, #00820d) 100%
    )
  );
  border-radius: 8px;
}

.section-slide-evento {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 44vh;
  height: 100vh;
}

.slide-wrapper {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.9s ease-in-out;
}

.slide-item {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.social-icons a {
  margin-right: 10px;
}

.section-slide-outras-solucoes {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 35vh;
  height: 100vh;
}

.logo-item {
  max-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.section-restauracao {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.faqs-container {
  display: flex;
  padding: 64px;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.faqs-list {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.faqs-item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faqs-item-title-icon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  cursor: pointer;
}

.faqs-resposta {
  align-self: stretch;
  padding-top: 16px;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  display: none;
}

.faqs-item.active .faqs-resposta {
  display: block;
}

.faqs-item.active .faqs-icon {
  transform: rotate(180deg);
}

.faqs-icon {
  transition: transform 0.3s ease;
  min-width: 16px;
}

/* TABLET */

@media (max-width: 1280px) {
  .hero-group {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .logo-restaurante {
    width: calc(100% / 3);
  }

  .logo-item {
    margin: 0;
    max-width: 80px;
  }

  .section-solucoes {
    padding: 24px;
    height: auto;
  }

  .container-sem-carga {
    flex-direction: column;
    padding: 24px;
    height: fit-content;
    min-height: auto;
  }

  .title-container {
    gap: 8px;
  }

  .sem-carga-texto {
    padding: 0;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .sem-carga-imagem {
    display: none;
  }

  .stat-container {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
  }

  .stat-card {
    width: 100%;
    max-width: 250px;
  }

  .circle-blur {
    left: auto;
    right: 0;
  }

  .circle-blur:nth-child(1) {
    bottom: auto;
  }

  .solucoes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section-images-powerbanks {
    flex-direction: column;
  }

  .imagem-container-powerbanks {
    width: 100%;
    height: auto;
  }

  .logo-restaurante {
    width: calc(100% / 3);
  }

  .banner-catalogo {
    padding: 24px;
  }

  .col-1,
  .col-2,
  .col-3 {
    gap: 8px;
    width: 100%;
  }

  .h-large {
    height: 100%;
  }

  .h-small {
    height: 100%;
  }

  .h-full {
    height: 100%;
  }

  .h-stack {
    height: 80px;
  }

  .faqs-container {
    padding: 24px;
    gap: 24px;
  }

  .faqs-list {
    gap: 16px;
  }

  .faqs-item {
    padding: 16px;
    gap: 12px;
  }

  .hero-grupo {
    gap: 24px;
  }

  .hero-texto {
    gap: 8px;
  }

  .section-carregamento {
    padding: 24px;
  }

  .section-nossas-solucoes {
    padding: 24px;
  }

  .container-interno {
    gap: 24px;
  }

  .solucao-card {
    height: 300px;
  }

  .texto-container {
    width: 400px;
    flex: auto;
    gap: 24px;
    align-self: self-end;
  }

  .container-flex {
    gap: 24px;
  }

  .grid-imagens {
    height: 220px;
    display: flex;
    gap: 8px;
    flex: 0111 0 0;
    align-self: stretch !important;
  }

  .title-tag {
    gap: 8px;
  }

  .section-showroom {
    padding: 24px;
    text-align: center;
  }

  .texto-inicial {
    gap: 8px;
  }

  .banner-catalogo .btn-primary.md {
    padding: 8px 16px;
    width: 100%;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .section-showroom {
    padding: 16px;
  }

  .section-nossas-solucoes {
    padding: 16px;
  }

  .container-flex {
    gap: 16px;
    flex-direction: column-reverse;
  }

  .charge-me-gallery .gallery-row,
  .charge-me-gallery .bottom-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .section-carregamento {
    padding: 16px;
    gap: 16px;
  }

  .barra-titulo {
    width: 100px;
    height: 5px;
  }

  .container-sem-carga {
    gap: 16px;
    padding: 16px;
  }

  .hero-group {
    gap: 16px;
  }

  .sem-carga-texto {
    gap: 16px;
  }

  .stat-container {
    gap: 16px;
    flex-direction: column;
  }

  .solucao-card {
    height: 200px;
  }

  .stat-card {
    max-width: 100%;
  }

  .sem-carga-imagem img {
    width: 100%;
    height: auto;
  }

  .solucoes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .imagem-container-powerbanks {
    width: 100%;
    height: auto;
  }

  .banner-catalogo {
    padding: 16px;
  }

  .title-tag {
    align-items: center;
  }

  .h-full {
    height: 200px;
    width: 100%;
  }

  .texto-container {
    width: 100%;
    align-items: center;
  }

  .header-container .btn-primary {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
  }

  .btn-primary-invert {
    width: 100%;
  }

  .col-2 {
    width: 100%;
    height: fit-content;
  }

  .faqs-container {
    padding: 16px;
    gap: 16px;
  }

  .faqs-item {
    padding: 12px;
    gap: 10px;
  }

  .grid-imagens {
    height: fit-content;
    width: 100%;
  }

  .section-solucoes {
    padding: 16px;
    gap: 16px;
  }

  .header-container {
    flex-direction: column;
  }

  .title-text {
    gap: 8px;
  }
}
