/* Container principal da nova seção */
#secao-tiktok-personalizada {
  width: 100%;
  max-width: 1140px; /* Largura padrão da Loja Integrada */
  margin: 40px auto; /* Espaço em cima e embaixo para respirar */
  padding: 0 20px;
  box-sizing: border-box;
}

/* Estrutura Flexbox para criar as colunas */
.tiktok-container-interno {
  display: flex;
  align-items: center; /* Centraliza verticalmente */
  justify-content: space-between;
  background-color: #f8f8f8; /* Cor de fundo clarinha, mude se quiser */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Coluna 1: Textos */
.tiktok-texto {
  width: 50%;
  padding-right: 30px;
}

.tiktok-texto h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.tiktok-texto p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Coluna 2: Vídeo */
.tiktok-video {
  width: 45%;
  display: flex;
  justify-content: center;
}

/* Comportamento no Celular (Mobile) */
@media (max-width: 768px) {
  .tiktok-container-interno {
    flex-direction: column; /* Empilha: Texto em cima, Vídeo embaixo */
    padding: 20px;
    text-align: center;
  }

  .tiktok-texto {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px; /* Espaço entre o texto e o vídeo */
  }

  .tiktok-texto h2 {
    font-size: 24px;
  }

  .tiktok-video {
    width: 100%;
  }
}