/**
 * Section - DOOH Features
 * Layout: imagem + 1 feature ao lado | 3 features abaixo
 *
 * @package SeedDigital
 * @since 1.0.0
 */

.dooh-features {
  background: linear-gradient(180deg, #e0f2fe 56.73%, #ffffff 84.05%);
  padding: 80px 0px 72px 0;
  box-sizing: border-box;
  width: 100%;
  overflow: visible; /* permite a imagem subir e vazar um pouco para a seção de cima */
  position: relative;
}

.dooh-features__container {
  max-width: 1651px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Linha 1: Imagem (esquerda) + Feature principal (direita) */
.dooh-features__top {
  display: none !important;
  flex-direction: column;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.dooh-features__elevate-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 769px) {
  .dooh-features__top {
    grid-template-columns: minmax(320px, 48%) 1fr;
    gap: 40px;
    align-items: start;
  }
}

.dooh-features__image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* Desktop: só a imagem desloca (esquerda e sobe); o container permanece no grid */
@media (min-width: 1024px) {
  .dooh-features__image-wrapper {
    overflow: visible;
  }
}

.dooh-features__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (min-width: 769px) {
  .dooh-features__image {
    aspect-ratio: auto;
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .dooh-features__image {
    position: relative;
    z-index: 2;
    margin-top: -180px;
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .dooh-features__image {
    margin-top: 0;
  }
}

/* Feature ao lado da imagem */
.dooh-features__feature--main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dooh-features__feature-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  padding: 40px 10px 0;
}

.dooh-features__feature-subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1b1a1a;
  margin: 0;
}

/* Título + subtítulo concatenados na mesma linha */
.dooh-features__feature-title .dooh-features__feature-subtitle {
  display: inline;
  margin-left: 4px;
}

.dooh-features__feature-description {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #1b1a1a;
}

.dooh-features__feature-description p {
  margin: 0 0 0.75em;
}

.dooh-features__feature-description p:last-child {
  margin-bottom: 0;
  padding-left: 10px;
}

.dooh-features__feature-description ul {
  list-style: disc;
  margin: 0 0 0.75em;
  padding-left: 20px;
}

.dooh-features__feature-description ul:last-child {
  margin-bottom: 0;
}

.dooh-features__feature-description li {
  margin-bottom: 0.35em;
}

/* Linha 2: 3 cards – mesma altura e alinhados */
.dooh-features__bottom {
  display: none !important;
  grid-template-columns: 1fr;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

@media (min-width: 769px) {
  .dooh-features__bottom {
    gap: 32px;
    justify-content: center;
    align-items: stretch;
  }
}

.dooh-features__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 0px;
  border-radius: 12px;
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
}

.dooh-features__card .dooh-features__card-description {
  flex: 1;
  min-height: 0;
}

.dooh-features__card-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
  margin: 0;
}

.dooh-features__card-subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: #1b1a1a;
  margin: 0;
}

.dooh-features__card-title .dooh-features__card-subtitle {
  display: inline;
  margin-left: 4px;
}

.dooh-features__card-description {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #1b1a1a;
}

.dooh-features__card-description p {
  margin: 0 0 0.5em;
}

.dooh-features__card-description p:last-child {
  margin-bottom: 0;
  font-size: 12px;
}

.dooh-features__card-description ul {
  list-style: disc;
  margin: 0 0 0.5em;
  padding-left: 20px;
}

.dooh-features__card-description ul:last-child {
  margin-bottom: 0;
}

.dooh-features__card-description li {
  margin-bottom: 0.25em;
}

.dooh-features__card-description h5 {
  font-size: 14px;
  margin-bottom: 16px;
}

@media (min-width: 978px) {
  .dooh-features__feature-title {
    padding: 40px 10px 0;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .dooh-features {
    padding: 56px 0px 56px 0px;
  }

  .dooh-features__top {
    margin-bottom: 40px;
  }

  .dooh-features__feature-title {
    font-size: 24px;
  }

  .dooh-features__feature-subtitle,
  .dooh-features__feature-description {
    font-size: 14px;
  }

  .dooh-features__card-title {
    font-size: 20px;
  }

  .dooh-features__card {
    padding: 24px 0px;
  }

  .dooh-features__card-description p:empty {
    display: none;
  }
}

@media (max-width: 480px) {
  .dooh-features {
    padding: 48px 0px 48px 0px;
  }

  .dooh-features__feature-title {
    font-size: 22px;
  }

  .dooh-features__card-title {
    font-size: 18px;
  }
}

/* ========== Bloco embaixo: Rastreamento e Jornada Omnichannel (grupo omnichannel_tracking_journey) ========== */
.dooh-features__omni-block {
  margin-top: 72px;
  padding-top: 72px;
  margin-left: auto;
}

.dooh-features__omni-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 16px 0;
}

.dooh-features__omni-subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #1b1a1a;
  margin: 0 0 48px 0;
}

.dooh-features__omni-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 769px) {
  .dooh-features__omni-grid {
    gap: 40px;
    align-items: center;
  }
}

.dooh-features__omni-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

.dooh-features__omni-intro-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

/* Duas colunas de listas (omni_left_items | omni_right_items) como no Figma */
.dooh-features__omni-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 769px) {
  .dooh-features__omni-lists {
    grid-template-columns: 320px 320px;
    gap: 0px;
    align-items: start;
  }
}

.dooh-features__omni-lists-col--left {
  min-width: 0;
}

.dooh-features__omni-lists-col--right {
  min-width: 0;
}

.dooh-features__omni-lists-col--right .dooh-features__omni-right-title {
  margin-bottom: 8px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .dooh-features__omni-lists {
    grid-template-columns: 280px 220px;
  }
}

.dooh-features__omni-list {
  list-style: disc;
  margin: 0;
  padding-left: 22px;
}

.dooh-features__omni-list li {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #1b1a1a;
  margin-bottom: 8px;
}

.dooh-features__omni-list li:last-child {
  margin-bottom: 0;
}

.dooh-features__omni-combinamos {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

.dooh-features__omni-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-around;
}

.dooh-features__omni-chip {
  display: inline-block;
  padding: 10px 18px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #1b1a1a;
  background-color: transparent;
  border-radius: 999px;
  border: 1px solid #475467;
}

.dooh-features__omni-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.dooh-features__omni-right-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

.dooh-features__omni-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.dooh-features__omni-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .dooh-features__omni-block {
    margin-top: 56px;
    padding-top: 56px;
  }
  .dooh-features__omni-title {
    font-size: 28px;
  }
  .dooh-features__omni-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .dooh-features__omni-intro-title {
    font-size: 20px;
  }
  .dooh-features__omni-combinamos,
  .dooh-features__omni-right-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .dooh-features__omni-title {
    font-size: 24px;
  }
  .dooh-features__omni-chip {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Bloco Elevate your DOOH */
.dooh-features__elevate-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
  padding-top: 56px;
}

/* Desktop (1025px+): coluna dos cards com largura fixa para não encavalar */
@media (min-width: 1025px) {
  .dooh-features__elevate-block {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .dooh-features__elevate-block .dooh-features__elevate-cards {
    max-width: 100%;
    min-width: 0;
  }
  .dooh-features__elevate-block .dooh-features__elevate-content {
    min-width: 0;
  }
}

/* 769–1024: tablet – 3 cards maiores, sem encavalar */
@media (min-width: 769px) and (max-width: 1280px) {
  .dooh-features__elevate-cards {
    max-width: 100%;
    width: 100%;
    gap: 16px;
  }

  .dooh-features__elevate-card-image {
    margin-bottom: 12px;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dooh-features__elevate-card-image img {
    max-height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
  }
  .dooh-features__elevate-card-caption {
    font-size: 14px;
  }
}

/* 768 e menor: layout empilhado (cards em coluna, depois conteúdo) */
@media (max-width: 768px) {
  .dooh-features__elevate-cards {
    max-width: none;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .dooh-features__elevate-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.dooh-features__elevate-card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;
}

.dooh-features__elevate-card-image {
  border-radius: 8px;
  margin-bottom: 12px;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .dooh-features__elevate-card {
    padding: 20px 16px;
  }
}

.dooh-features__elevate-card-image img {
  height: auto;
  display: block;
  object-fit: contain;
  width: 100%;
}

.dooh-features__elevate-card-caption {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #0284c7;
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}

.dooh-features__elevate-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .dooh-features__elevate-content {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .dooh-features__elevate-content {
    gap: 14px;
  }
}

.dooh-features__elevate-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.dooh-features__elevate-subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #1b1a1a;
  margin: 0;
}

.dooh-features__elevate-description {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #1b1a1a;
}

.dooh-features__elevate-description ul {
  margin: 0.5em 0 0 1.2em;
  padding: 0;
  list-style: disc;
}

.dooh-features__elevate-description li {
  margin-bottom: 0.35em;
}

.dooh-features__elevate-button {
  display: inline-block;
  padding: 24px 24px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  background-color: #0ba5ec;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  align-self: flex-start;
}

.dooh-features__elevate-button:hover {
  background-color: #0369a1;
}

@media (max-width: 1024px) {
  .dooh-features__elevate-button {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }
}

/* Responsivo – bloco elevate (768 e menor = layout empilhado tipo 375) */
@media (max-width: 768px) {
  .dooh-features__elevate-block {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding-top: 40px;
    gap: 32px;
  }

  .dooh-features__elevate-block .dooh-features__elevate-content {
    order: 2;
  }
  .dooh-features__elevate-title {
    font-size: 24px;
    line-height: 1.25;
  }
  .dooh-features__elevate-subtitle {
    font-size: 15px;
  }
  .dooh-features__elevate-description {
    font-size: 15px;
  }
  .dooh-features__elevate-button {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .dooh-features__elevate-block {
    margin-top: 32px;
    padding-top: 32px;
    gap: 28px;
  }
  .dooh-features__elevate-title {
    font-size: 22px;
  }
  .dooh-features__elevate-subtitle,
  .dooh-features__elevate-description {
    font-size: 14px;
  }
  .dooh-features__elevate-card-caption {
    font-size: 13px;
  }
  .dooh-features__elevate-button {
    padding: 14px 18px;
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .dooh-features__elevate-block .dooh-features__elevate-cards {
    order: -1;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .dooh-features__elevate-block .dooh-features__elevate-cards {
    justify-content: flex-start;
  }
}

@media (min-width: 1280px) {
  .dooh-features__elevate-block .dooh-features__elevate-cards {
    justify-content: flex-start;
  }

  .dooh-features__top {
    top: 0;
    right: 0;
    width: 100%;
    position: relative;
    left: -36px;
    display: flex;
    flex-direction: row;
  }

  .dooh-features {
    padding-top: 0;
  }

  .dooh-features__image {
    margin-top: -40px;
  }

  .dooh-features__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .dooh-features__card .dooh-features__card-description {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .dooh-features__omni-right {
    width: 100%;
    max-width: 818px;
  }

  .dooh-features__omni-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .dooh-features__omni-chips {
    justify-content: flex-start;
  }
}

@media (min-width: 1920px) {
  .dooh-features__top {
    left: -150px;
  }

  .dooh-features__feature--main {
    padding-left: 130px;
  }

  .dooh-features__bottom {
    grid-template-columns: repeat(3, 297px);
    gap: 57px;
  }
}
