/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: Arial, sans-serif; line-height: 1.6; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #fff;
  position: relative;
}

.logo img { width: 230px; }

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.call-btn {
  background-color: #ff4500;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Imagens responsivas */
.desktop-img { display: block; width: 100%; }
.mobile-img { display: none; width: 100%; }

/* Menu hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #3529e9;
  margin: 4px 0;
}

/* Responsividade */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
  }

  nav.active { display: flex; }

  .menu-toggle { display: flex; }

  .desktop-img { display: none; }
  .mobile-img { display: block; }

  /* Oculta o botão Ligar em telas pequenas */
  .call-btn { display: none; }
}
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    flex-wrap: wrap;
    font-family: 'Arial', 'Helvetica', sans-serif;
  }
  
  .hero-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
    padding-left: 5%;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #000;
    font-weight: 500;
    line-height: 1.6;
  }
  
  .hero-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #000;
  }
  
  .hero-content li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
  }
  
  .whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    background-color: #1ebe57;
  }
  
  .hero-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
  }
  
  .hero-image img {
    width: 479px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: left;
    }
  
    .hero-content, .hero-image {
      max-width: 100%;
      padding-left: 5%;
    }
  
    .hero-content h1 {
      font-size: 1.7rem;
    }
  
    .hero-content p, .hero-content li {
      font-size: 1rem;
    }
  
    .whatsapp-btn {
      font-size: 1.1rem;
      padding: 14px 24px;
    }
  
    .hero-image img {
      width: 100%;
      height: auto;
    }
  }
  /* Header Section */
.header-section {
    background-color: #f0f0f0; /* Fundo cinza claro */
    padding: 40px 5%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #d1d1d1; /* Divisor superior de 1px */
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .header-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .header-text {
    max-width: 500px;
    margin-left: 5%;
  }
  
  .header-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .header-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }
  
  .saiba-mais-btn {
    padding: 12px 25px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .saiba-mais-btn:hover {
    background-color: #0056b3;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      text-align: center;
    }
  
    .header-text {
      margin-left: 0;
      margin-top: 20px;
    }
  
    .header-text h2 {
      font-size: 1.8rem;
    }
  
    .header-text p {
      font-size: 1rem;
    }
  }
  .titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    
  }
  
  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .servico-item, .service-item {
    background: #ecebeb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .servico-item:hover, .service-item:hover {
    transform: translateY(-10px);
  }
  
  .servico-item img, .service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .servico-item h3, .service-item h3 {
    font-size: 1.5rem;
    margin: 15px 0;
  }
  
  .servico-item p, .service-item p {
    font-size: 1rem;
    color: #333232;
    line-height: 1.5;
  }
  
  /* Responsividade */
  @media (max-width: 1024px) {
    .servicos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .servicos-grid {
      grid-template-columns: 1fr;
    }
  }
  /* Tipografia Geral */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  /* Seção Principal */
  .empresa-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
  }
  
  /* Container Principal */
  .empresa-container {
    width: 100%;
    max-width: 1200px;
  }
  
  /* Texto Principal com 70% de largura */
  .empresa-texto-principal {
    width: 70%;
    margin: 0 auto 40px auto;
    text-align: left;
  }
  
  .empresa-texto-principal h2 {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 20px;
  }
  
  .empresa-texto-principal p {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  /* Duas Colunas Abaixo */
  .empresa-duas-colunas {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  /* Coluna da Imagem */
  .coluna-imagem {
    flex: 1;
    max-width: 50%;
  }
  
  .coluna-imagem img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Coluna do Conteúdo */
  .coluna-conteudo {
    flex: 1;
    max-width: 50%;
  }
  
  .coluna-conteudo h3 {
    font-size: 1.8rem;
    margin-top: 0;
  }
  
  .coluna-conteudo p {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .coluna-conteudo ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
  }
  
  .coluna-conteudo li {
    margin-bottom: 10px;
  }
  
  .coluna-conteudo a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Responsividade */
  @media (max-width: 1024px) {
    .empresa-texto-principal {
      width: 100%;
    }
  
    .empresa-duas-colunas {
      flex-direction: column;
    }
  
    .coluna-imagem, .coluna-conteudo {
      max-width: 100%;
    }
  
    .empresa-texto-principal h2 {
      font-size: 2rem;
      text-align: center;
    }
  
    .coluna-conteudo p, .coluna-conteudo li {
      font-size: 1rem;
    }
  }
  /* Fonte Elegante */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Seção Principal */
.haytec-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* Container com Largura de 85% */
.haytec-container {
  width: 85%;
  max-width: 1000px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.8;
}

/* Título */
.haytec-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 20px;
}

/* Descrição */
.haytec-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Destaque em Negrito */
.haytec-description strong {
  color: #000;
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
  .haytec-container {
    width: 100%;
  }

  .haytec-title {
    font-size: 2rem;
  }

  .haytec-description {
    font-size: 1rem;
  }
}
/* Fonte Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Seção Principal */
.promo-section {
  background-color: #002147; /* Azul escuro */
  color: #fff;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Container Flex */
.promo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Lado Esquerdo */
.promo-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.promo-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.discount-highlight {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffa500; /* Laranja */
  margin-bottom: 10px;
}

/* Lado Direito */
.promo-info {
  text-align: right;
  flex: 0.5;
  min-width: 250px;
  padding: 20px;
}

.price-info {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
}

/* Responsividade */
@media (max-width: 768px) {
  .promo-content {
    flex-direction: column;
    text-align: center;
  }

  .promo-info {
    text-align: center;
    margin-top: 20px;
  }

  .promo-text h2 {
    font-size: 1.8rem;
  }

  .discount-highlight {
    font-size: 1.5rem;
  }

  .price-info {
    font-size: 1.3rem;
  }
}
.saiba-mais-link {
    font-size: 1.2rem; /* Tamanho reduzido */
    font-weight: bold;
    color: #000;
    position: relative;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
  }
  
  .saiba-mais-link::after {
    content: 'Saiba Mais';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: rgba(0, 123, 255, 0.9); /* Cor azul */
    white-space: nowrap;
    overflow: hidden;
    border-right: 1px solid rgba(0, 123, 255, 0.9);
    animation: typing 2s steps(10) infinite, blink 0.7s infinite;
  }
  
  @keyframes typing {
    0% {
      width: 0;
    }
    50% {
      width: 100%;
    }
    100% {
      width: 0;
    }
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
  
  .saiba-mais-link:hover {
    color: rgba(0, 123, 255, 1); /* Azul mais forte no hover */
  }
 /* Rodapé fixo para mobile */
@media (max-width: 768px) {
    .mobile-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 60px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px;
      z-index: 1000;
      overflow: hidden;
      background-color: #000;
    }
  
    /* Imagem de fundo ajustada */
    .footer-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: -1;
    }
  
    /* Itens do rodapé */
    .footer-item {
      color: #fff; /* Texto sempre branco */
      font-weight: bold;
      text-decoration: none;
      font-size: 1rem;
      z-index: 1;
      position: relative;
    }
  
    /* Estilo para o botão Ligar */
    .footer-item.ligar {
      margin-left: 10px;
    }
  
    /* Estilo específico para o nome WhatsApp */
    .footer-item.whatsapp {
      color: #ffffff !important;
      margin-left: 2px;
      font-size: 0.875rem;
    }
  
    /* Efeito de escrita na sombra para "Ligar" (verde) */
    .footer-item.ligar::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      color: transparent;
      text-shadow: 0 0 0px rgb(34, 78, 223);
      white-space: nowrap;
      overflow: hidden;
      width: 0;
      animation: typing-shadow 3s steps(20, end) infinite;
    }
  /* Estilo específico para o nome WhatsApp */
.footer-item.whatsapp {
    color: #ffffff !important; /* Texto branco */
    margin-left: 17px; /* Move 15px para o lado direito */
    font-size: 0.875rem; /* Tamanho reduzido */
    font-weight: bold;
    position: relative;
  }
  
  /* Efeito de escrita na sombra para "WhatsApp" (vermelho) */
  .footer-item.whatsapp::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    text-shadow: 0 0 0px rgb(0, 0, 0);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing-shadow 3s steps(20, end) infinite;
  }
  
  /* Animação de escrita */
  @keyframes typing-shadow {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  
  
    /* Efeito de escrita na sombra para "Email" (amarelo) */
    .footer-item.email::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      color: transparent;
      text-shadow: 0 0 0px rgb(255, 0, 0);
      white-space: nowrap;
      overflow: hidden;
      width: 0;
      animation: typing-shadow 3s steps(20, end) infinite;
    }
  
    /* Animação para o efeito de escrita da sombra */
    @keyframes typing-shadow {
      from {
        width: 0;
      }
      to {
        width: 100%;
      }
    }
  }
  
  /* Esconde o rodapé em telas maiores */
  @media (min-width: 769px) {
    .mobile-footer {
      display: none;
    }
  }
  

/* Container geral para a section */
.desentupimento-vaso-sanitario {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #003366; /* Fundo azul escuro */
  border-radius: 8px;
  color: #fff; /* Texto branco para contraste */
}

/* Conteúdo à direita */
.desentupimento-vaso-sanitario .content {
  flex: 1;
  padding: 20px;
}

/* Título */
.desentupimento-vaso-sanitario h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff; /* Título em branco */
  margin-bottom: 15px;
}

.desentupimento-vaso-sanitario h2 a {
  text-decoration: none;
  color: #ffcc00; /* Cor dourada para o link */
}

.desentupimento-vaso-sanitario h2 a:hover {
  text-decoration: underline;
}

/* Parágrafos */
.desentupimento-vaso-sanitario p {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd; /* Texto em cinza claro para contraste */
  margin-bottom: 10px;
}

/* Texto em negrito */
.desentupimento-vaso-sanitario strong {
  font-weight: 700;
  color: #fff; /* Negrito em branco para destacar */
}

/* Imagem à esquerda */
.desentupimento-vaso-sanitario .image {
  flex: 0 0 40%;
  padding: 20px;
}

.desentupimento-vaso-sanitario .image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .desentupimento-vaso-sanitario {
    flex-direction: column;
    text-align: center;
  }

  .desentupimento-vaso-sanitario .image {
    margin-bottom: 20px;
  }

  .desentupimento-vaso-sanitario .content {
    padding: 10px;
  }
}
/* Estilos gerais para a seção */
.desentupimento-esgoto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: #fff; /* Fundo branco */
  color: #333; /* Cor do texto para melhor contraste */
  border-radius: 0;
}

/* Container do texto */
.desentupimento-esgoto .text-container {
  flex: 1;
  padding: 20px; /* Adiciona um pouco de espaço ao redor do texto */
  margin: 0;
  width: 100%;
}

.desentupimento-esgoto h2.title {
  font-family: 'Arial', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #003366; /* Cor do título em azul escuro */
  line-height: 1.3;
  text-transform: uppercase; /* Letras maiúsculas para destaque */
}

.desentupimento-esgoto p.description {
  font-family: 'Verdana', sans-serif;
  font-size: 18px; /* Tamanho maior para o texto */
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.desentupimento-esgoto a {
  color: #ff6600; /* Cor laranja para links */
  text-decoration: none;
  font-weight: bold;
}

.desentupimento-esgoto a:hover {
  text-decoration: underline;
}

.desentupimento-esgoto strong {
  font-weight: 700;
  color: #003366;
}

/* Container da imagem */
.desentupimento-esgoto .image-container {
  flex: 0 0 40%; /* Imagem ocupará 40% do espaço disponível */
  padding: 0;
  margin: 0;
}

.desentupimento-esgoto .image-container img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* Responsividade: Ajuste para telas menores */
@media (max-width: 768px) {
  .desentupimento-esgoto {
    flex-direction: column;  /* Colocar o texto e a imagem em coluna para celular */
    text-align: center;      /* Centralizar os elementos */
  }

  .desentupimento-esgoto .text-container,
  .desentupimento-esgoto .image-container {
    width: 100%;             /* Garantir que a largura seja 100% em telas pequenas */
    padding: 10px;
    margin: 0;
  }

  .desentupimento-esgoto h2.title {
    font-size: 28px;         /* Ajustar o tamanho da fonte para celulares */
  }

  .desentupimento-esgoto p.description {
    font-size: 16px;         /* Ajustar o tamanho do texto */
  }

  .desentupimento-esgoto .image-container img {
    width: 100%;             /* A imagem ocupa 100% da largura da tela */
    height: auto;            /* Manter a proporção da imagem */
  }
}
/* Estilos gerais para a seção */
.desentupimento-pia {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: #f0f0f0; /* Fundo cinza claro */
  color: #333; /* Cor do texto para melhor contraste */
  border-radius: 0;
}

/* Container do texto */
.desentupimento-pia .text-container {
  flex: 1;
  padding: 20px; /* Adiciona um pouco de espaço ao redor do texto */
  margin: 0;
  width: 100%;
}

.desentupimento-pia h2.title {
  font-family: 'Arial', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #003366; /* Cor do título em azul escuro */
  line-height: 1.3;
  text-transform: uppercase; /* Letras maiúsculas para destaque */
}

.desentupimento-pia p.description {
  font-family: 'Verdana', sans-serif;
  font-size: 18px; /* Tamanho maior para o texto */
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.desentupimento-pia a {
  color: #ff6600; /* Cor laranja para links */
  text-decoration: none;
  font-weight: bold;
}

.desentupimento-pia a:hover {
  text-decoration: underline;
}

.desentupimento-pia strong {
  font-weight: 700;
  color: #003366;
}

/* Container da imagem */
.desentupimento-pia .image-container {
  flex: 0 0 40%; /* Imagem ocupará 40% do espaço disponível */
  padding: 0;
  margin: 0;
}

.desentupimento-pia .image-container img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

/* Responsividade: Ajuste para telas menores */
@media (max-width: 768px) {
  .desentupimento-pia {
    flex-direction: column;  /* Colocar o texto e a imagem em coluna para celular */
    text-align: center;      /* Centralizar os elementos */
  }

  .desentupimento-pia .text-container,
  .desentupimento-pia .image-container {
    width: 100%;             /* Garantir que a largura seja 100% em telas pequenas */
    padding: 10px;
    margin: 0;
  }

  .desentupimento-pia h2.title {
    font-size: 28px;         /* Ajustar o tamanho da fonte para celulares */
  }

  .desentupimento-pia p.description {
    font-size: 16px;         /* Ajustar o tamanho do texto */
  }

  .desentupimento-pia .image-container img {
    width: 100%;             /* A imagem ocupa 100% da largura da tela */
    height: auto;            /* Manter a proporção da imagem */
  }
}
.faq-section {
  background-color: #f8f8f8;
  padding: 40px;
  text-align: center;
}

.faq-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.faq-question .arrow {
  font-size: 24px;
  color: #ff6600;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.faq-answer {
  display: none;
  padding-top: 10px;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: #ff6600;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 20px;
  }

  .faq-item {
    padding: 15px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}
.blog-section {
  padding: 40px;
  background-color: #f8f8f8;
}

.blog-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 40px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.blog-post {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 300px;
}

.blog-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.blog-image:hover {
  transform: scale(1.05);
}

.blog-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 20px 0;
}

.blog-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #425cf3;
  padding: 8px 16px;
  border: 2px solid #425cf3;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.blog-link:hover {
  background-color: #ff6600;
  color: #fff;
}

@media (max-width: 1024px) {
  .blog-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-post {
    max-width: 100%;
  }
}
/* Estilos do Rodapé */
.footer {
  background-color: #333333; /* Cor de fundo escuro */
  color: white; /* Texto branco */
  padding: 20px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons {
  margin-bottom: 10px;
}

.social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.social-icons li {
  margin: 0 15px;
}

.social-icons a {
  text-decoration: none;
  font-size: 30px;
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #007bff; /* Cor ao passar o mouse */
  transform: scale(1.2); /* Efeito de zoom */
}

.footer-text {
  margin-top: 10px;
  font-size: 14px;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .social-icons ul {
    flex-direction: column;
  }

  .social-icons li {
    margin: 10px 0;
  }
}

.areas-atendidas {
  background-color: #f4f4f4;
  padding: 40px 20px;
}

.areas-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.area-column {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.area-column h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.area-column ul {
  list-style: none;
  padding: 0;
}

.area-column li {
  margin: 8px 0;
}

.area-column a {
  color: #007bff;
  text-decoration: none;
  font-size: 16px;
}

.area-column a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .areas-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .areas-container {
    grid-template-columns: 1fr;
  }
}
/* Estilo da seção Desentupimento */
.desentupimento-section {
  padding: 40px;
  background-color: #f4f4f4;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.central-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.intro-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.6;
}

.section-content {
  margin-bottom: 40px;
  text-align: left;
}

.section-content h3 {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 15px;
}

.section-content p,
.section-content ul {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.section-content ul {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .section-content h3 {
    font-size: 22px;
  }

  .section-content p,
  .section-content ul {
    font-size: 14px;
  }
}
  /* Imagem responsiva */
  .responsive-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }

  picture {
    display: block;
    max-width: 100%;
  }
  .btn-ligar {
  background-color: #e60000;       /* vermelho */
  color: #ffffff;                  /* branco */
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-ligar:hover {
  background-color: #cc0000;       /* vermelho escuro no hover */
  color: #fff;
}
