/* ==============================
   ESTILO GERAL - MUSE LIVE BLACK
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;600&display=swap');

:root {
  --preto: #000;
  --branco: #fff;
  --dourado: #c9a44f;
  --cinza: #f5f5f5;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #723368;
  color: var(--preto);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
}

/* CONTAINER */
.container {
  max-width: 900px;
  text-align: center;
  background-color: #e0c4dd;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.container:hover {
  transform: translateY(-5px);
}

/* TÍTULO GERAL */
.titulo-geral h1 {
  font-family: sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #723368;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.titulo-geral h1 span {
  color: var(--dourado);
}

/* SUBTÍTULO */
.sub-titulo p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 35px;
}

.sub-titulo b {
  color: var(--preto);
}

/* VÍDEO */
.video-campanha video,
.video-campanha iframe {
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  margin-bottom: 30px;
}

/* BOTÃO */
.botao-wpp {
  margin: 20px 0;
}

.b-test {
  background: #25D366;
  color: var(--branco);
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.b-test:hover {
  background: #ffffff;
  color: var(--preto);
  transform: scale(1.05);
  color: #25D366;
}

/* SUB-LEGENDA */
.sub-legenda p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* INFO-MAIS */
.info-mais h3 {
  font-family: sans-serif;
  font-size: 1.5rem;
  color: var(--preto);
  margin-bottom: 15px;
}

.info-mais ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.info-mais li {
  font-size: 1rem;
  color: #222;
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.info-mais li span {
  color: #723368;
  font-size: 1.2rem;
  margin-right: 8px;
}

/* ==============================
   ANIMAÇÕES
   ============================== */

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.container > * {
  animation: fadeInUp 0.8s ease forwards;
}

/* ==============================
   RESPONSIVIDADE
   ============================== */

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .titulo-geral h1 {
    font-size: 1.4rem;
  }

  .sub-titulo p {
    font-size: 1rem;
  }

  .b-test {
    width: 100%;
    font-size: 1rem;
    padding: 14px 0;
  }

  .info-mais ul {
    text-align: center;
  }

  .info-mais li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .titulo-geral h1 {
    font-size: 1.2rem;
  }
  .info-mais h3 {
    font-size: 1.2rem;
  }
  .container {
    padding: 25px 15px;
  }
}
