/* ===== SEÇÃO DE CONTEÚDO ALTERNADO ===== */

.conteudo-section {
  background-color: #09101C;;
  padding: 4rem 0;
}

.conteudo-bloco {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 6rem;
  flex-direction: row;
}

.conteudo-bloco:last-child {
  margin-bottom: 0;
}

.conteudo-invertido {
  flex-direction: row-reverse !important;
}

/* Garantir que a inversão funcione */
.conteudo-bloco.conteudo-invertido {
  flex-direction: row-reverse !important;
}

.conteudo-imagem {
  flex: 1;
  padding: 0 2rem;
}

.conteudo-imagem img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.conteudo-texto {
  flex: 1;
  padding: 0 2rem;
}

.conteudo-titulo {
  font-family: 'Boldonse', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 136.262%;
}

.conteudo-descricao {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.conteudo-descricao:last-child {
  margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .conteudo-bloco {
    flex-direction: column;
    text-align: center;
    margin-bottom: 4rem;
  }

  .conteudo-invertido,
  .conteudo-bloco.conteudo-invertido {
    flex-direction: column !important;
  }

  .conteudo-imagem {
    padding: 0 0 2rem 0;
  }

  .conteudo-texto {
    padding: 0;
  }

  .conteudo-titulo {
    font-size: 2rem;
  }

  .conteudo-descricao {
    font-size: 1rem;
  }

  .conteudo-imagem img {
    height: auto;
  }
}

@media (max-width: 480px) {
  .conteudo-section {
    padding: 2rem 0;
  }

  .conteudo-bloco {
    padding: 0 1rem;
    margin-bottom: 3rem;
  }

  .conteudo-titulo {
    font-size: 1.75rem;
  }

  .conteudo-descricao {
    font-size: 0.875rem;
  }
}
