﻿/* RESET BÁSICO */
* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; }


:root{
  --font-sans: 'HurmeGS4', Arial, sans-serif;
}

body{
  font-family: var(--font-sans);
  color:#333;
  line-height:1.6;
  background:#fff;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-sans);
  font-weight: 700; /* usa Bold (700) */
}

/* Container padrão */
.container { width:90%; max-width:1200px; margin:0 auto; }

/* Seções genéricas */
section { display:block; }

/* ====== SEÇÃO SOBRE ====== */
.sobre {
  background:#EA5A0B;        /* laranja do botão contato */
  color:#fff;
  padding:80px 0;
  margin:0;
  border-top:1px solid transparent; /* impede colapso de margem com o banner */
}
.sobre h2 {
  font-weight:700;
  font-size:2rem;
  margin:0 0 20px 0;
}
.sobre p {
  font-size:1.1rem;
  margin-bottom:16px;
  text-align:left;
}

/* --- Barra Laranja Fina --- */
.barra-separadora {
  width: 100%;
  height: 6px;
  background-color: #EA5A0B; /* Laranja padrão */
  margin:0;
}

/* --- Seção Endereço e Mapa --- */
.endereco-mapa {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: 'HurmeGeometricSans4', sans-serif;
}

.endereco-mapa h2 {
  font-size: 26px;
  color: #EA5A0B;
  margin-bottom: 10px;
  font-weight: bold;
}

.endereco-mapa p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.mapa iframe {
  max-width: 1100px;
  width: 100%;
  height: 350px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}


/* ====== RODAPÉ ====== */
.site-footer { background:#222; color:#bbb; text-align:center; padding:18px 0; }
.site-footer a { color:#EA5A0B; }

/* Acessibilidade foco */
a:focus, button:focus { outline:2px dashed #EA5A0B; outline-offset:2px; }

/* Responsivo básico */
@media (max-width:768px){
  .sobre { padding:60px 5%; }
  .sobre h2 { font-size:1.6rem; }
  .sobre p { font-size:1rem; }
}
