* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Classe para travar o scroll quando o menu mobile estiver aberto */
body.no-scroll {
  overflow: hidden;
}

:root {
  /* Cores Principais */
  --primary-color: #e06519;
  --secondary-color: #ffcc00;
  --tertiary-color: #005d96;
  --white: #fff;
  --black: #000;
  --white-smoker: #f8faff;
  --bg-smoker: #f5eee4;

  /* Cores de Texto */
  --text-primary: #334155;
  --text-secondary: #475569;

  /* Cores de UI */
  --border-color: #eee;
  --background-hover: #f8fafc;
  --whatsapp-color: #25d366;

  /* Cores do Footer */
  --footer-bg: #222;
  --footer-border: #444;
  --social-icon-hover-bg: #ddd;


  --orange: #e06519;
  --orange-l: #f47c2f;
  --orange-d: #b84f10;
  --cream: #fff8f2;
  --brown: #3d1f08;
  --text: #4a2c10;
  --muted: #7a5540;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 8px 40px rgba(224, 101, 25, .18);
}

body,
html {
  background-color: var(--bg-smoker) !important;
}

body {
  background: url("assets/img/bg/bg.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}