.esc-info-banner {
  width: 100%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(90deg, var(--other-bg-section-2-homepage, #101828) 0%, #39558E 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 16px;
  color: var(--text-default);
}

.esc-icon-circle {
  background-color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CONTAINER E TEXTOS (PROPORÇÕES ORIGINAIS) */
.esc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.esc-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.center {
  text-align: center;
  justify-content: center;
}


.esc-section-divider {
  width: 160px;
  height: 8px;
  background: linear-gradient(to right, #16fd2d, #008311);
  border-radius: 8px;
}

/* FEATURES LAYOUT */
.esc-features-container {
  display: flex;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

.esc-features-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
  height: 100%;
  justify-content: space-between;
}

.esc-features-right {
  flex: 1;
  display: flex;
  max-width: 500px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.esc-feature-card {
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 16px;
  background: var(--surface-secondary, #fff);
}

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

.esc-feature-icon-container {
  padding: 8px;
  background-color: var(--brand-primary-default);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* IMAGENS */
.esc-image-gallery {
  display: flex;
  gap: 32px;
  max-height: 200px;
  width: 100%;
}

.esc-gallery-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.esc-large-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.esc-gallery-image img,
.esc-large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.esc-video-container {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.esc-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.section-prod {
  width: 100%;
  display: flex;
  justify-content: center;
}

.container-prod {
  display: flex;
  flex-direction: column;
  padding: 64px;
  gap: 64px;
  max-width: 1280px;
  width: 100%;
}

.content-title {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.content-title span {
  text-align: center;
}

.content-images {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 32px;
  justify-content: center;
}

.card-image-prod {
  width: 100%;
  height: 300px;
  background-color: var(--surface-secondary);
  border-radius: 16px;
  overflow: hidden;
}

.card-image-prod img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}


/* --- TABLET  --- */
@media (max-width: 1280px) {

  /* Banner informativo */
  .esc-info-banner {
    padding: 24px;
    gap: 16px;
  }

  /* Container principal */
  .esc-container {
    padding: 24px;
    gap: 24px;
  }

  /* Section header */
  .esc-section-title {
    font-size: 32px;
  }

  .esc-section-divider {
    width: 120px;
    height: 6px;
  }

  .esc-section-description {
    font-size: 18px;
    margin-top: 24px;
  }

  /* Features */
  .esc-features-container {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .esc-features-left {
    gap: 24px;
    width: 100%;
  }

  .esc-features-right {
    width: 100%;
    gap: 24px;
    max-width: none;
  }

  .esc-feature-card {
    gap: 8px;
  }

  .esc-section-header {
    gap: 24px;
  }

  .esc-feature-icon-container {
    width: 40px;
    height: 40px;
  }

  .esc-image-gallery {
    gap: 24px;
  }

  .esc-gallery-image:nth-child(1),
  .esc-gallery-image:nth-child(2) {
    height: 180px;
  }

  .esc-large-image {
    height: 220px;
  }

  /* Video */
  .esc-video-container {
    height: 350px;
  }

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

  .content-title {
    gap: 24px;
  }

  .content-images {
    gap: 24px;
  }

  .card-image-prod {
    height: 200px;
  }
}

/* ---  MOBILE --- */
@media (max-width: 768px) {


  .esc-info-banner {
    padding: 16px;
    gap: 8px;
  }

  .esc-info-banner-text {
    font-size: 20px;
    text-align: center;
  }

  .esc-icon-circle {
    width: 28px;
    height: 28px;
  }

  .esc-info-icon {
    width: 16px;
    height: 16px;
  }

  /* Container principal */
  .esc-container {
    padding: 16px;
    gap: 16px;
  }

  /* Section header */
  .esc-section-title {
    font-size: 26px;
  }

  .esc-section-divider {
    width: 100px;
    height: 5px;
  }

  .esc-section-description {
    font-size: 16px;
    margin-top: 16px;
  }

  /* Features */
  .esc-features-container {
    flex-direction: column;
    gap: 16px;
  }

  .esc-features-left,
  .esc-features-right {
    width: 100%;
    gap: 16px;
  }

  .content-images {
    gap: 16px;
  }

  .esc-feature-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
  }

  .esc-feature-icon-container {
    width: 36px;
    height: 36px;
  }

  .esc-feature-title {
    font-size: 16px;
  }

  .esc-feature-description {
    font-size: 14px;
  }

  .esc-image-gallery {
    gap: 16px;
  }

  .esc-gallery-image:nth-child(1),
  .esc-gallery-image:nth-child(2) {
    height: 140px;
  }

  .esc-large-image {
    height: 180px;
  }

  .esc-gallery-image img,
  .esc-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .esc-section-header {
    gap: 16px;
  }

  /* Video */
  .esc-video-container {
    height: 200px;
  }

  .content-title {
    gap: 16px;
  }
}