/* Importar fontes Google */
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Poppins&family=Roboto&display=swap');

/* RESET básico para margem e padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fundo branco, fonte e cor padrão */
body {
  background-color: #FFFFFF;
  font-family: 'Open Sans', 'Roboto', sans-serif;
  color: #000000;
  line-height: 1.6;
  padding: 20px;
}

/* Títulos com fonte elegante e cor dourada */
h1, h2, h3, h4, h5, h6 {
  color: #D4AF37; /* dourado */
  font-family: 'Montserrat', 'Lato', 'Poppins', sans-serif;
  margin-bottom: 15px;
}

/* Textos principais */
p, span, a, li {
  color: #000000; /* preto para leitura */
  font-family: 'Open Sans', 'Roboto', sans-serif;
  font-size: 16px;
}

/* Links destacados em rosa */
a {
  color: #FFC0CB; /* rosa claro */
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #D4AF37; /* dourado no hover */
}

/* Botões com rosa claro e texto preto */
button, .btn, .button {
  background-color: #FFC0CB;
  color: #000000;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
button:hover, .btn:hover, .button:hover {
  background-color: #D4AF37;
  color: #FFFFFF;
}

/* Espaço entre seções */
section {
  margin-bottom: 40px;
}

/* Layout clean com bastante espaço em branco */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Imagens com borda suave e sombra leve */
img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Botão fixo WhatsApp no canto inferior direito */
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* verde WhatsApp */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.whatsapp-fixo:hover {
  background-color: #128C36;
}
.whatsapp-fixo svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Rodapé com redes sociais */
footer {
  background-color: #f8f5f2;
  padding: 20px 0;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #666666;
  margin-top: 40px;
}

footer .redes-sociais a {
  margin: 0 10px;
  color: #FFC0CB;
  font-size: 24px;
  transition: color 0.3s ease;
}
footer .redes-sociais a:hover {
  color: #D4AF37;
}
.whatsapp-fixo svg {
  width: 24px;
  height: 24px;
  fill: white;
  display: block;
  margin: auto;
}
