/* === VARIÁVEIS DE COR === */
:root {
  --cor-grafite:     #1F2933;
  --cor-chumbo:      #334155;
  --cor-areia:       #F2EEE7;
  --cor-branco:      #FAFAF8;
  --cor-cobre:       #C97832;
  --cor-verde:       #365B4A;
  --cor-texto:       #1F2933;
  --cor-texto-leve:  #5A6A7A;
  --cor-borda:       #DDD8D0;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--cor-texto);
  background: var(--cor-branco);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === PLACEHOLDER DE IMAGEM === */
.img-placeholder {
  background: #E8E4DC;
  border: 2px dashed #B0A89A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #8A7E72;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 1rem;
}

/* === TIPOGRAFIA === */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.7; color: var(--cor-texto-leve); }

/* === BOTÕES === */
.btn-primario {
  display: inline-block;
  background: var(--cor-cobre);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primario:hover { background: #A8621E; }
.btn-secundario {
  display: inline-block;
  border: 2px solid var(--cor-cobre);
  color: var(--cor-cobre);
  padding: 0.85rem 1.9rem;
  border-radius: 4px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secundario:hover { background: var(--cor-cobre); color: #fff; }

/* === CONTAINER === */
.container { width: 90%; max-width: 1140px; margin: 0 auto; }

/* === SEÇÕES === */
.secao { padding: 5rem 0; }
.secao-escura { background: var(--cor-grafite); color: var(--cor-branco); }
.secao-escura p { color: rgba(255,255,255,0.75); }
.secao-areia { background: var(--cor-areia); }
.titulo-secao { text-align: center; margin-bottom: 3rem; }
.titulo-secao h2 { color: inherit; }
.titulo-secao p { max-width: 640px; margin: 0.75rem auto 0; }

/* === BOTÃO WHATSAPP FLUTUANTE === */
.whatsapp-flutuante {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-flutuante svg { display: block; }
.whatsapp-flutuante:hover { transform: scale(1.1); }
