* {
  box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    overflow-x: hidden; /* <-- Prevém vazamento lateral */
    font-family: 'Roboto', sans-serif;
  }
  .top-mini-bar {
    background-color: #3b5998;
    color: white;
    font-size: 14px;
    padding: 5px 0;
  }
  
  .top-mini-container {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .top-mini-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  
  .left-info, .right-info {
    display: flex;
    align-items: center;
    gap: 1px;
  }
  
  .top-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .logo img {
    height: 160px;
  }
  .search-bar {
    position: relative;
    max-width: 400px;
    width: 100%;
    margin-left: 50px;
  }
  
  .search-bar input {
    width: 100%;
    padding: 10px 40px 10px 15px; /* espaço para o ícone à direita */
    border-radius: 6px;
    border: 1px solid #ccc;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    font-size: 16px;
    height: 40px;
    box-sizing: border-box;
  }
  
  .search-bar i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%); /* ← centraliza verticalmente */
    color: #888;
    font-size: 16px;
    pointer-events: none; /* ícone clicável opcional */
  }
  .menu-icons {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #333;
  }
  
  .menu-icons i {
    margin-right: 6px;
    color: #00a5b8;
  }
  
  .menu-bar {
    display: flex;
    background: linear-gradient(180deg, #2bb3b3, #00a5b8);
    /* background-color: #2bb3b3; */
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  
  .menu-bar b {
      font-family: 'Font Awesome 6 Free';
      letter-spacing: 2px;
  }
  
  .menu-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
  }
  
  .menu-bar a:hover {
    text-decoration: underline;
  }
  
  .footer {
    background: linear-gradient(180deg, #2bb3b3, #425489);
    /* background-color: #2bb3b3; */
    color: #ffffff;
    padding-top: 0px;
    font-family: inherit;
  }
  
  .footer-container {
      max-width: 920px;
      margin: 0 auto;
      padding: 0px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 305px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 15px;
  }
  
  .footer-contato {
      text-align: right;
  }
  
  .footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer-column ul li a:hover {
    color: #25d366;
  }
  
  .footer-column p {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .social-icons i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .social-icons i:hover {
    color: #425489;
  }
  
  .whatsapp-button {
    background-color: #25d366;
    color: white;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 1px 20px;
    /* background-color: #425489; */
    font-size: 14px;
  }
  html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  /* O site-wrapper vai crescer e empurrar o footer para o final */
  .site-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  /* O conteúdo principal ocupa o espaço restante antes do footer */
  main {
    flex: 1;
  }
  .servicos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    background-color: #f2f2f200;
  }
  
  .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
  }
.card .apartir {
  font-size: 0.9rem;
  margin: 0 0 0.1em;  /* só margem inferior pequena */
  color: #555;
}
.card .preco {
  font-size: 1.25rem;
  margin: 0;          /* sem margem superior */
  font-weight: bold;
  color: #3b5998;
}
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .card-content {
    padding: 20px;
    font-family: Arial, sans-serif;
  }
  
  .card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .preco-titulo {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
  }
  
  .preco {
    color: #0070cc;
    font-size: 24px;
    font-weight: bold;
}
  .preco span {
    font-size: 18px;
  }
  
  .incluso-titulo {
    color: green;
    font-weight: bold;
    margin-top: 15px;
  }
  
  .incluso p {
    list-style: none;
    color: green;
  }
  
  .nao-incluso-titulo {
    color: red;
    font-weight: bold;
    margin-top: 15px;
  }
  
  .nao-incluso p {
    list-style: none;
    color: red;
  }
  
  .extra {
    margin-top: 10px;
    color: goldenrod;
    font-weight: bold;
  }
  
  .botao {
    display: block;
    text-align: center;
    background: #3b5998;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: auto;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
  }
  
  .botao:hover {
    background: #005a9e;
  
  }
/* Esta é a faixa com fundo expandido */
.servicos {
  width: 100%;
  background-color: #f2f2f200; /* ou qualquer outra cor */
  padding: 20px 0;
}

/* Este é o conteúdo centralizado dentro da faixa */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 940px;     /* ou 940px se quiser limitar */
    margin: 0 auto;
    padding: 0
  }
  .card {
    flex: 0 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
.banner-servico {
    width: 100%;
    height: 250px;
    margin-bottom: 0px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.banner-servico img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta e preenche o espaço sem distorcer */
  display: block;
}
.container-central {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* opcional: se usar texto no lugar da imagem */
.banner-servico h2 {
  background-color: #007bff;
  color: white;
  padding: 30px;
  text-align: center;
  margin: 0;
  font-size: 24px;
  border-radius: 12px;
}
.right-info i {
  margin-right: 8px;
  transform: scaleX(-1);
}
 @media (max-width: 768px) {
  /* Centraliza logo, search e mini-bar */
  .top-header,
  .top-mini-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
    .right-info i {
        margin-right: -2px;
        margin-left: 19px;
        transform: scaleX(-1);
    }

   .top-mini-container {
    display: flex;            /* já deve ter isso no desktop */
    flex-direction: column;   /* empilha verticalmente */
    align-items: center;      /* centraliza cada div */
    gap: 10px;                /* espaçamento entre elas */
  }
  
  .search-bar {
    max-width: 90%;
    margin: 10px 0;
  }

  .menu-bar {
    gap: 10px 5%;            /* espaço entre colunas e linhas */
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  .menu-bar a {
    width: 45%;              /* dois por linha com espaçamento */
    font-size: 14px;
    padding: 10px;
    /* background-color: #2dc7c7; */
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  .menu-bar i {
    font-size: 16px;
  }
  .menu-bar::-webkit-scrollbar {
    display: none; /* esconde a barra de rolagem no Chrome */
  }

  /* Cards responsivos */
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 940px;
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
  }
  /* Banner responsivo */
  .banner-servico {
    width: 100%;
    height: auto;
  }

  /* Rodapé */
  .footer-container {
    flex-direction: column;
    gap: 0px;
    text-align: center;
  }
  
  .footer-contato {
      text-align: center;
  }

  .footer-column {
    width: 100%;
  }
  
  .footer-bottom p {
      margin-top: 5px;
      margin-bottom: 5px;
  }

  /* Imagens na galeria */
  .galeria-imagens {
    flex-direction: column;
  }

  .galeria-imagens img {
    height: auto;
  }
}

  /* Agora FORA da anterior, corretamente */
  @media (max-width: 991px) {
    .card {
      flex: 0 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
  }
  
  @media (max-width: 600px) {
    .card {
      flex: 0 1 100%;
      max-width: 100%;
    }
  }