/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #f8f8f8, #e0e0e0);
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER */
header {
  background: #59a1ba;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  width: 120px;
  height: auto;
}

.header-texto h1 {
  font-size: 2.8em;
  font-weight: 800;
}

.header-texto p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* SECTION BASE */
section {
  margin: 40px auto;
  padding: 30px;
  max-width: 1200px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #59a1ba;
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #6fbb58;
  border-radius: 2px;
}

.texto-central {
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 1.1em;
}

/* SERVIÇOS */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
}

.servicos-grid li {
  text-align: center;
  background: #f9fbff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicos-grid li:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.servico-imagem {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 15px auto;
}

/* BENEFÍCIOS */
.porque-escolher .beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.beneficio {
  background: #e0f2ff;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.beneficio:hover {
  transform: scale(1.05);
}

/* CONTATO */
.contato p,
.contato a {
  font-size: 1.1em;
  margin: 10px 0;
  text-align: center;
  display: block;
}

.botao-whatsapp {
  display: inline-block;
  background-color: #70ba59;
  color: white;
  padding: 14px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 10px auto;
  transition: background 0.3s ease, transform 0.2s ease;
}

.botao-whatsapp:hover {
  background-color: #5ca94a;
  transform: scale(1.03);
}

/* FOOTER */
footer {
  background: #59a1ba;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.95em;
}

/* BOTÃO FLUTUANTE */
.botao-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #70ba59;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: background 0.3s, transform 0.2s;
}

.botao-flutuante:hover {
  background-color: #5ca94a;
  transform: scale(1.05);
}

/* RESPONSIVO: MOBILE */
@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 180px; /* Aumenta o tamanho da logo */
  }

  .header-texto h1 {
    font-size: 2.3em; /* Mais destaque no nome da empresa */
  }

  .header-texto p {
    font-size: 1.1em;
  }

  /* Grid de serviços em 1 coluna */
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servico-imagem {
    width: 180px;
    height: 180px;
    margin-bottom: 10px;
  }

  .servicos-grid li {
    padding: 25px;
  }

  .botao-whatsapp {
    width: 100%;
    font-size: 1.1em;
  }

  section {
    margin: 20px 15px;
    padding: 20px;
  }

  /* Ajusta os benefícios */
  .porque-escolher .beneficios {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .beneficio {
    width: 90%;
    padding: 15px 20px;
    font-size: 1em;
  }
}


/* RESPONSIVO: TABLET */
@media (min-width: 601px) and (max-width: 1024px) {
  .logo {
    width: 100px;
  }

  .header-texto h1 {
    font-size: 2.4em;
  }

  .servico-imagem {
    width: 110px;
    height: 110px;
  }

  .botao-whatsapp {
    width: 80%;
  }
}
/* ===== PÁGINAS INTERNAS (POLÍTICA, TERMOS, CONTATO) ===== */

body {
  background: linear-gradient(to bottom, #f8f8f8, #e6e6e6);
}

/* Container central para páginas internas */
.pagina-interna {
  max-width: 800px;
  margin: 60px auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Títulos */
.pagina-interna h1 {
  color: #59a1ba;
  font-size: 2.2em;
  margin-bottom: 25px;
  text-align: center;
}

.pagina-interna h2 {
  color: #70ba59;
  font-size: 1.4em;
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: left;
}

/* Textos */
.pagina-interna p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* Links */
.pagina-interna a {
  color: #59a1ba;
  font-weight: 600;
  text-decoration: none;
}

.pagina-interna a:hover {
  text-decoration: underline;
}

/* Botão voltar à Home */
.botao-voltar {
  display: inline-block;
  margin-top: 30px;
  background: #59a1ba;
  color: white;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, background 0.3s;
}

.botao-voltar:hover {
  background: #4b8fa6;
  transform: scale(1.05);
}

/* Ajustes mobile */
@media (max-width: 600px) {
  .pagina-interna {
    margin: 30px 15px;
    padding: 25px;
  }

  .pagina-interna h1 {
    font-size: 1.8em;
  }
}

