:root {
  --vinho: #5d0134;
  --dourado: #c5a24c;
  --cinza: #555;
  --bg: #f8f6f4;
  --branco: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--cinza);
  line-height: 1.8;
  background: var(--branco);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--vinho);
  font-weight: 600;
}

/* HEADER */
.hero {
  background: var(--vinho);
  padding: 90px 20px 100px;
  text-align: center;
}

.logo-central {
  width: 170px;
  margin-bottom: 30px;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
}

.subtitle {
  color: #eee;
  margin-top: 14px;
  letter-spacing: 2px;
  font-size: 1rem;
}

/* CONTAINER */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
}

.light {
  background: var(--bg);
}

/* SOBRE */
.sobre-center {
  text-align: center;
  max-width: 760px;
}

/* SEÇÕES */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-desc {
  font-size: 0.95rem;
  margin-top: 12px;
}

/* IMAGENS */
.section-image {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  margin-bottom: 35px;
  border-radius: 6px;
}

/* GRID PROCEDIMENTOS */
.procedimento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.procedimento-item {
  background: var(--branco);
  padding: 18px 20px;
  border-left: 3px solid var(--dourado);
}

.procedimento-item h4 {
  margin-bottom: 8px;
}

.procedimento-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CONTATO */
.contato {
  text-align: center;
}

.contato a {
  color: var(--vinho);
  text-decoration: none;
  font-weight: 500;
}

.contato a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: var(--vinho);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--vinho);
  color: #fff;
  padding: 14px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .logo-central {
    width: 130px;
  }

  .container {
    padding: 60px 20px;
  }

  .section-image {
    max-height: 260px;
  }
}
