/* ===== Estilo Geral ===== */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff9fb;
  color: #2b2b2b;
}

/* Cabeçalho */
header {
  background: linear-gradient(135deg, #ffb6c1, #ffe4e9);
  padding: 2.5em 1em;
  text-align: center;
  border-bottom: 3px solid #f48fb1;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 1px;
  color: #a3004f;
}

header p {
  margin-top: 0.5em;
  font-size: 1.1em;
  color: #4a4a4a;
}

/* Tópicos */
section p[style*="font-weight:bold"] {
  font-size: 1.2em;
  text-align: center;
  color: #a3004f;
  margin: 1.5em 0;
}

/* Seção "O que é a nossa marca?" */
section#quem-somos, h2 {
  text-align: center;
}

h2 {
  color: #a3004f;
  font-size: 1.8em;
}

section p {
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
  font-size: 1em;
  color: #444;
}

/* ===== Carrossel ===== */
#carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#carousel img {
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  max-width: 90%;
  transition: transform 0.3s ease;
}

#carousel img:hover {
  transform: scale(1.02);
}

#carousel button {
  background-color: #ff80ab;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2em;
  margin: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#carousel button:hover {
  background-color: #f06292;
}

/* Bolinhas do carrossel */
#dots button {
  color: #a3004f;
  font-size: 20px;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

#dots button:hover {
  opacity: 1;
}

/* ===== Botão do Formulário ===== */
#formLink {
  background: #a3004f;
  color: white;
  font-weight: bold;
  padding: 0.8em 1.4em;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s;
}

#formLink:hover {
  background: #d81b60;
  transform: scale(1.05);
}

/* ===== Rodapé ===== */
footer {
  background: linear-gradient(135deg, #ffe4ec, #ffc2d8);
  padding: 2em 1em;
  text-align: center;
  border-top: 3px solid #f48fb1;
}

footer p {
  font-weight: bold;
  color: #a3004f;
  margin-bottom: 1em;
}

#supportLink {
  background: #a3004f;
  color: white;
  padding: 0.7em 1.3em;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s;
}

#supportLink:hover {
  background: #d81b60;
  transform: scale(1.05);
}

/* ===== Responsividade ===== */
@media (max-width: 600px) {
  header h1 {
    font-size: 2em;
  }

  #carousel img {
    width: 100%;
  }

  #carousel button {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }
}