/**
 * Section - O que é o IICV SEED
 * Título, subtítulo opcional, imagem opcional e description (WYSIWYG)
 *
 * @package SeedDigital
 * @since 1.0.0
 */

.what-is-iicv-seed {
  background-color: #ffffff;
  padding: 80px 0px;
  box-sizing: border-box;
  width: 100%;
}

/* Imagem à esquerda: inverte padding (imagem gruda na esquerda) */
.what-is-iicv-seed--image-left {
  padding-left: 0;
  padding-right: 32px;
}

.what-is-iicv-seed__container {
  max-width: 1384px;
  margin: 0 auto;
}

.what-is-iicv-seed--with-image .what-is-iicv-seed__container {
  max-width: 100%;
  padding-right: 0;
}

.what-is-iicv-seed--image-left.what-is-iicv-seed--with-image
  .what-is-iicv-seed__container {
  padding-left: 0;
  padding-right: 80px;
}

.what-is-iicv-seed__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.what-is-iicv-seed--with-image .what-is-iicv-seed__grid {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Imagem à esquerda: ordem reversa (imagem | texto) */
.what-is-iicv-seed--image-left .what-is-iicv-seed__grid {
  grid-template-columns: 1fr 1fr;
}

.what-is-iicv-seed--image-left .what-is-iicv-seed__image-wrapper {
  order: -1;
}

.what-is-iicv-seed--image-left .what-is-iicv-seed__content {
  order: 0;
  padding: 50px 0 0 0px;
}

.what-is-iicv-seed--image-left .what-is-iicv-seed__image {
  max-width: 900px;
  margin-left: 0;
}

.what-is-iicv-seed__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 668px;
  margin-left: auto;
  padding: 50px 0;
}

@media (min-width: 768px) {
  .what-is-iicv-seed__content {
    margin: 0 auto;
    margin-left: 0;
    margin-right: auto;
  }
}

/* Título */
.what-is-iicv-seed__title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1a1a;
  margin: 0;
}

/* Subtítulo */
.what-is-iicv-seed__subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #0086c9;
  margin: 0;
}

/* Description (WYSIWYG) */
.what-is-iicv-seed__description {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1b1a1a;
}

.what-is-iicv-seed__description p {
  margin: 0 0 1em;
}

.what-is-iicv-seed__description p:last-child {
  margin-bottom: 0;
}

.what-is-iicv-seed__description ul {
  list-style: disc;
  margin: 0 0 1em;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.what-is-iicv-seed__description ul:last-child {
  margin-bottom: 0;
}

.what-is-iicv-seed__description li {
  padding-left: 4px;
}

/* Imagem – gruda no fim do container (sem padding à direita) */
.what-is-iicv-seed__image-wrapper {
  position: relative;
  width: 100%;
  margin-right: 0;
}

.what-is-iicv-seed__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .what-is-iicv-seed--with-image .what-is-iicv-seed__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .what-is-iicv-seed--with-image .what-is-iicv-seed__image-wrapper {
    order: -1;
    height: 100%;
  }

  .why-is-iicv-seed--with-image .why-is-iicv-seed__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .what-is-iicv-seed {
    padding: 60px 24px;
  }

  .what-is-iicv-seed--with-image {
    padding-right: 24px;
  }

  .what-is-iicv-seed--with-image .what-is-iicv-seed__container {
    padding-right: 0;
  }

  .what-is-iicv-seed--image-left.what-is-iicv-seed--with-image
    .what-is-iicv-seed__container {
    padding-right: 0;
  }

  .what-is-iicv-seed--image-left .what-is-iicv-seed__content {
    padding: 0;
  }

  .what-is-iicv-seed--image-left .what-is-iicv-seed__image {
    border-radius: 12px;
  }

  .what-is-iicv-seed--with-image .what-is-iicv-seed__image-wrapper {
    height: 100%;
  }

  .what-is-iicv-seed__image {
    border-radius: 12px;
    height: 100%;
    object-fit: contain;
  }

  .what-is-iicv-seed__title {
    font-size: 32px;
  }

  .what-is-iicv-seed__description {
    font-size: 17px;
  }

  .what-is-iicv-seed__description ul {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .what-is-iicv-seed {
    padding: 48px 20px;
  }

  .what-is-iicv-seed__content {
    gap: 20px;
    padding: 0;
    align-items: center;
  }

  .what-is-iicv-seed__title {
    font-size: 28px;
  }

  .what-is-iicv-seed__subtitle {
    font-size: 16px;
  }

  .what-is-iicv-seed__description {
    font-size: 16px;
  }

  .what-is-iicv-seed__description ul {
    padding-left: 20px;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .what-is-iicv-seed {
    padding: 40px 16px;
  }

  .what-is-iicv-seed__title {
    font-size: 24px;
  }

  .what-is-iicv-seed__description {
    font-size: 15px;
  }

  .what-is-iicv-seed__description ul {
    padding-left: 18px;
    gap: 14px;
  }
}

/* Layout desktop – a partir de 1024px (conteúdo centralizado, duas colunas ~50/50) */
@media (min-width: 1024px) {
  .what-is-iicv-seed {
    padding: 80px 0px;
  }

  .what-is-iicv-seed--with-image .what-is-iicv-seed__container {
    margin: 0 auto;
    padding-right: 0;
  }

  .what-is-iicv-seed--with-image .what-is-iicv-seed__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .what-is-iicv-seed__content {
    max-width: 668px;
    padding: 50px 0;
  }

  .what-is-iicv-seed__title {
    font-size: 36px;
  }

  .what-is-iicv-seed__description {
    font-size: 14px;
    line-height: 20px;
  }

  .what-is-iicv-seed__description ul {
    gap: 20px;
  }

  .what-is-iicv-seed__image {
    border-radius: 0;
    object-fit: cover;
  }
}

/* @media (min-width: 1920px) {
  .what-is-iicv-seed__content {
    padding-left: 117px;
  }
} */
