
:root {
  --dark: #111;
  --stone: #2a2a2a;
  --light: #f5f5f5;
  --gold: #c7a44a;
  --green: #25d366;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--light);
  color: #333;
}

.hero {
  min-height: 70vh;
  background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
              url('../img/fundo.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  color: #fff;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 34px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

section {
  max-width: 1100px;
  margin: auto;
  padding: 70px 20px;
}

h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2rem;
}

.about p {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

figure {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

figure img {
  width: 100%;
  display: block;
}

figcaption {
  padding: 16px;
  text-align: center;
  font-size: .95rem;
}

.process {
  background: #eee;
}

.steps {
  list-style: none;
  max-width: 600px;
  margin: auto;
  padding: 0;
}

.steps li {
  padding: 14px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid #ccc;
}

.contact {
  background: linear-gradient(180deg, #111, #1b1b1b);
  color: #fff;
  text-align: center;
}

.contact p {
  margin-bottom: 30px;
}

footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 22px;
  font-size: .85rem;
}
