* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #f7f9fb;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}


/* ===== HEADER ===== */

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  max-height: 55px;
  width: auto;
}

.contato span {
  margin-left: 20px;
  color: #36a8b4;
  font-weight: 600;
  font-size: 14px;
}


/* ===== MENU ===== */

.menu {
  background: linear-gradient(135deg, #2d9ba6, #36a8b4);
  text-align: center;
  padding: 14px 0;
  position: sticky;
  top: 79px;
  z-index: 99;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.menu a {
  color: white;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 6px 0;
  transition: opacity 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
}

.menu a:hover,
.menu a.ativo {
  opacity: 1;
  border-bottom: 2px solid #fff;
}


/* ===== BANNER ===== */

.banner {
  max-height: 480px;
  overflow: hidden;
  position: relative;
}

.banner img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}


/* ===== CHAMADA ===== */

.chamada {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 50px 60px;
  background: #fff;
  flex-wrap: wrap;
}

.chamada h2 {
  font-size: 28px;
  color: #444;
  line-height: 1.3;
  margin: 0;
}

.btn {
  background: linear-gradient(135deg, #2d9ba6, #36a8b4);
  color: white;
  border: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(54,168,180,0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(54,168,180,0.5);
}


/* ===== IMAGEM DESTAQUE ===== */

.imagem-destaque {
  text-align: center;
  padding: 50px 60px;
  background: #f0f4f7;
}

.imagem-destaque img {
  width: 60%;
  max-width: 700px;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.imagem-destaque p {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 600;
  color: #555;
}


/* ===== SERVIÇOS ===== */

.servicos {
  text-align: center;
  padding: 50px 40px;
  background: #fff;
}

.servicos h3 {
  font-size: 22px;
  color: #36a8b4;
  letter-spacing: 1px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card {
  width: 200px;
  height: 120px;
  border: 2px solid #e8d0d5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #555;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-color: #36a8b4;
  color: #36a8b4;
}


/* ===== INSTAGRAM ===== */

.instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 60px;
  background: #f7f9fb;
  text-align: center;
  gap: 30px;
}

.instagram h4 {
  color: #e1306c;
  margin: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.instagram h4 img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.instagram-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 950px;
}

.instagram-titles {
  flex: 1;
  text-align: left;
  border: 3px solid #8b5fbf;
  padding: 25px 20px;
  border-radius: 8px;
}

.instagram-titles h2 {
  font-size: 28px;
  color: #333;
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
}

.instagram-titles h2:first-child {
  margin-bottom: 8px;
}

.instagram-content p {
  flex: 1;
  color: #666;
  font-size: 16px;
  text-align: left;
  margin: 0;
  line-height: 1.6;
}


/* ===== PRODUTOS ===== */

.produtos {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 40px;
  flex-wrap: wrap;
}

.produto {
  width: 280px;
  height: 130px;
  background: linear-gradient(135deg, #d6eaf8, #a8d5a2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #555;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.produto:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* ===== COMBUSTÍVEL PAGE ===== */

.comb-hero {
  background: linear-gradient(135deg, #1b7a2d, #2ea043);
  color: #fff;
  text-align: center;
  padding: 80px 40px;
}

.comb-hero-content h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.comb-hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.comb-secao {
  padding: 60px 60px;
  background: #fff;
}

.comb-secao--escuro {
  background: #1a2a2f;
}

.comb-titulo {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: #2ea043;
}

.comb-titulo--claro {
  color: #fff;
  text-decoration-color: #4cc764;
}

.comb-subtitulo {
  text-align: center;
  color: #b0bec5;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Benefícios */
.comb-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.comb-beneficio-card {
  background: #f7faf7;
  border: 1.5px solid #d4edda;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.comb-beneficio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.comb-beneficio-icone {
  font-size: 32px;
  color: #2ea043;
  margin-bottom: 14px;
}

.comb-beneficio-card h3 {
  font-size: 16px;
  color: #2ea043;
  margin-bottom: 8px;
  font-weight: 700;
}

.comb-beneficio-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Features Gestão Online */
.comb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.comb-feature {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s;
}

.comb-feature:hover {
  transform: translateY(-4px);
}

.comb-feature i {
  font-size: 36px;
  color: #4cc764;
  display: block;
  margin-bottom: 16px;
}

.comb-feature h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.comb-feature p {
  font-size: 14px;
  color: #b0bec5;
  line-height: 1.6;
  margin: 0;
}

/* Controle */
.comb-controle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.comb-controle-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  transition: transform 0.2s, box-shadow 0.2s;
}

.comb-controle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.comb-controle-icone {
  font-size: 36px;
  color: #1b7a2d;
  margin-bottom: 14px;
}

.comb-controle-card h3 {
  font-size: 16px;
  color: #1b7a2d;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 8px;
}

.comb-controle-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}


/* ===== FOOTER WAVE ===== */

:root {
  --footer-bg:          #1a2a2f;
  --footer-text:        #b0bec5;
  --footer-heading:     #ffffff;
  --footer-link-hover:  #36a8b4;
  --footer-border:      rgba(255,255,255,0.1);
}

.footer-divider {
  line-height: 0;
  background-color: #ffffff;
}

.footer-divider svg {
  display: block;
  width: 100%;
  height: 80px;
  fill: var(--footer-bg);
}

.footer-wave {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 2rem 0 3rem;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: -1px;
}

.footer-wave__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-wave__main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-wave__heading {
  color: var(--footer-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.footer-wave__about p {
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.footer-wave__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-wave__links li:not(:last-child) {
  margin-bottom: 0.65rem;
}

.footer-wave__links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-wave__links a:hover {
  color: var(--footer-link-hover);
  opacity: 1;
}

.footer-wave__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--footer-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-wave__copyright {
  font-size: 0.875em;
  color: var(--footer-text);
  margin: 0;
}

.footer-wave__social {
  display: flex;
  gap: 14px;
}

.footer-wave__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--footer-text);
  font-size: 16px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.footer-wave__social a:hover {
  background: var(--footer-link-hover);
  color: #fff;
  transform: translateY(-2px);
  opacity: 1;
}

.footer-wave__credits {
  font-size: 0.8em;
  color: var(--footer-text);
  opacity: 0.6;
  margin: 0;
}

@media (min-width: 600px) {
  .footer-wave__main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-wave__main-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
  .footer-wave__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ===== REPARO ===== */

.reparo-titulo {
  text-align: center;
  padding: 40px 20px 10px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.reparo-titulo h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  letter-spacing: 1px;
}

.reparo-grid-secao {
  background: url('assets/img/bancada.webp') center/cover no-repeat fixed;
  padding: 20px 60px 50px;
  position: relative;
}

.reparo-grid-secao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.reparo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.reparo-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  cursor: pointer;
}

.reparo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.reparo-card:hover img {
  transform: scale(1.04);
}

.reparo-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-align: center;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.3px;
}


/* ===== HERO INTERNO ===== */

.hero-interno {
  background: linear-gradient(135deg, #2d9ba6, #1d7a83);
  color: #fff;
  text-align: center;
  padding: 60px 40px;
}

.hero-interno h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-interno p {
  font-size: 17px;
  opacity: 0.9;
}


/* ===== SEÇÃO GENÉRICA ===== */

.pagina-secao {
  padding: 60px 80px;
  background: #fff;
}

.pagina-secao.bg-claro {
  background: #f7f9fb;
}

.secao-titulo {
  text-align: center;
  font-size: 26px;
  color: #333;
  margin-bottom: 40px;
}


/* ===== GRID SERVIÇOS (reparo.php) ===== */

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

.card-servico {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card-servico:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #36a8b4;
}

.card-servico-icone {
  font-size: 36px;
  margin-bottom: 14px;
}

.card-servico h3 {
  font-size: 18px;
  color: #36a8b4;
  margin-bottom: 10px;
}

.card-servico p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}


/* ===== CTA SECTION ===== */

.cta-section {
  background: linear-gradient(135deg, #2d9ba6, #1d7a83);
  color: #fff;
  text-align: center;
  padding: 60px 40px;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.cta-section .btn {
  background: #fff;
  color: #2d9ba6;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta-section .btn:hover {
  background: #f0f0f0;
}


/* ===== EM BREVE (produtos.php) ===== */

.em-breve-container {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.em-breve-card {
  text-align: center;
  max-width: 440px;
  background: #f7f9fb;
  border-radius: 20px;
  padding: 50px 40px;
  border: 1.5px dashed #36a8b4;
}

.em-breve-card span {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.em-breve-card h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.em-breve-card p {
  color: #666;
  margin-bottom: 24px;
  font-size: 15px;
}


/* ===== GRID PRODUTOS ===== */

.grid-produtos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.card-produto {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-produto:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-produto img {
  width: 283px;
  height: 446px;
  object-fit: cover;
  margin: 0 auto;
}

.card-produto-body {
  padding: 20px;
  text-align: center;
}

.card-produto-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #333;
}

.card-produto-body p {
  color: #666;
  font-size: 14px;
  margin-bottom: 14px;
}

.preco {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #36a8b4;
  margin-bottom: 14px;
}


/* ===== EMPRESA ===== */

.hero-empresa {
  position: relative;
  width: 100%;
  background: #1a2a2f;
  line-height: 0;
  display: flex;
  justify-content: center;
}

.hero-empresa-img {
  width: auto;
  max-width: 900px;
  height: auto;
  display: block;
  filter: brightness(0.78);
}

.hero-empresa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,40,40,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-empresa-conteudo {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-empresa-label {
  display: inline-block;
  background: #36a8b4;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-empresa-conteudo h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-empresa-conteudo p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 500px;
}

/* Stats Bar */
.empresa-stats-bar {
  display: flex;
  justify-content: center;
  background: #1a2a2f;
  padding: 0;
}

.empresa-stat {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.empresa-stat:last-child {
  border-right: none;
}

.empresa-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #36a8b4;
  line-height: 1;
  margin-bottom: 6px;
}

.empresa-stat span {
  font-size: 13px;
  color: #b0bec5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quem Somos grid */
.empresa-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.secao-badge {
  display: inline-block;
  background: #e6f7f8;
  color: #2d9ba6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.empresa-texto h2 {
  font-size: 30px;
  color: #1a2a2f;
  margin-bottom: 16px;
  font-weight: 800;
}

.empresa-texto p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.empresa-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 0;
}

.empresa-mv-card {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 24px;
  border-top: 3px solid #36a8b4;
}

.empresa-mv-card i {
  font-size: 26px;
  color: #36a8b4;
  display: block;
  margin-bottom: 10px;
}

.empresa-mv-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a2f;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.empresa-mv-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.empresa-valores-col h2 {
  font-size: 30px;
  color: #1a2a2f;
  margin-bottom: 16px;
  font-weight: 800;
}

.empresa-valores-col {
  padding-top: 8px;
}

.empresa-texto h3 {
  font-size: 16px;
  color: #36a8b4;
  margin-bottom: 12px;
}

.valores-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.valor-item {
  background: #f7f9fb;
  border-left: 4px solid #36a8b4;
  border-radius: 8px;
  padding: 16px 20px;
}

.valor-item .valor-tag {
  display: inline-block;
  margin-bottom: 6px;
}

.valor-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.valores-descricao {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.valores-check-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.valores-check-lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.valores-check-lista li i {
  color: #36a8b4;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.valores-check-lista li strong {
  color: #333;
}

.valor-tag {
  background: #e6f7f8;
  color: #2d9ba6;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card-diferencial {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card-diferencial h3 {
  font-size: 16px;
  color: #36a8b4;
  margin: 12px 0 8px;
}

.card-diferencial p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


/* ===== CONTATO ===== */

.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.contato-info h2,
.contato-form-wrap h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.info-icone {
  font-size: 22px;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  color: #333;
  font-size: 14px;
  margin-bottom: 2px;
}

.contato-form .form-group {
  margin-bottom: 18px;
}

.contato-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: #333;
  transition: border-color 0.2s;
  font-family: inherit;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: #36a8b4;
}

.btn-full {
  width: 100%;
  margin-top: 4px;
}

.form-msg {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-msg--ok   { color: #2d9ba6; }
.form-msg--erro { color: #e05252; }


/* ===== RESPONSIVO ===== */

@media (max-width: 768px) {

  .topo {
    flex-direction: column;
    padding: 12px 20px;
    gap: 8px;
  }

  .contato span {
    margin-left: 10px;
    font-size: 13px;
  }

  .menu {
    position: static;
    padding: 10px;
  }

  .menu a {
    margin: 0 8px;
    font-size: 12px;
  }

  .banner, .banner img {
    max-height: 260px;
  }

  .chamada {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .chamada h2 {
    font-size: 24px;
  }

  .imagem-destaque {
    padding: 30px 20px;
  }

  .imagem-destaque img {
    width: 90%;
    max-height: 260px;
  }

  .servicos {
    padding: 30px 20px;
  }

  .instagram {
    padding: 30px 20px;
  }

  .instagram-content {
    flex-direction: column;
    gap: 20px;
  }

  .instagram-titles {
    padding: 20px 15px;
  }

  .instagram-titles h2 {
    font-size: 22px;
  }

  .instagram-content p {
    text-align: center;
  }

  .produtos {
    padding: 20px;
  }

  .produto {
    width: 100%;
    max-width: 300px;
  }

  .footer-wave__container {
    padding: 0 20px;
  }

  /* reparo */
  .reparo-grid-secao {
    padding: 16px 16px 40px;
  }

  .reparo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* inner pages */
  .hero-interno {
    padding: 40px 20px;
  }

  .hero-interno h1 {
    font-size: 26px;
  }

  .pagina-secao {
    padding: 30px 20px;
  }

  .hero-empresa-img {
    width: 100%;
    max-width: 100%;
  }

  .hero-empresa-conteudo {
    padding: 0 20px;
    text-align: center;
  }

  .hero-empresa-conteudo h1 {
    font-size: 26px;
  }

  .hero-empresa-conteudo p {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-empresa-label {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .empresa-stats-bar {
    flex-wrap: wrap;
  }

  .empresa-stat {
    flex: 1 1 45%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 10px;
  }

  .empresa-stat strong {
    font-size: 22px;
  }

  .empresa-quem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .empresa-mv {
    grid-template-columns: 1fr;
  }

  .contato-layout {
    grid-template-columns: 1fr;
  }
}