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

          body {
            font-family: Arial, sans-serif;
            background-color: #302C2B;
            color: #fff;
            line-height: 1.6;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
          }

          .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
          }

          /* Cabeçalho - largura 100% */
          header {
            width: 100%;
            background-color: #fff;
            padding: 1rem 0;
            /* margin-bottom: 1rem; */
            /* border-radius: 8px; */
          }

          header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
          }

          header .logo {
            max-height: 60px;
          }

          .menu {
            list-style: none;
            display: flex;
            gap: 1rem;
          }

          .menu a {
            text-decoration: none;
            color: #000;
            font-weight: bold;
          }

          .menu a:hover {
            color: #e63946;
          }

          /* Hero */
          .hero {
            background-color: #e63946;
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            align-content: center;
          }

          .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
          }

          .hero p {
            margin-bottom: 1.5rem;
          }

          .hero .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: #111;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
          }

          .hero .btn:hover {
            background-color: #fff;
            color: #e63946;
          }

          /* Serviços */
          #services {
            padding: 2rem 1rem;
            background-color: #222;
            border-radius: 8px;
            margin-bottom: 1rem;
          }

          #services h2 {
            text-align: center;
            margin-bottom: 1rem;
            color: #e63946;
          }

          .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
          }

          .service-card {
            background-color: #333;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
          }

          .service-card h1 {
            color: #fff;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            font-size: 20px;
          }

          .service-card p {
            color: #ccc;
          }

          .service-card i {
            color: #e63946;
            margin-bottom: 0.5rem;
          }

          .service-card:hover {
            background-color: #444;
            /* Cor de fundo mais clara ao passar o mouse */
            transform: scale(1.05);
            /* Aumenta um pouco o tamanho do card para dar um efeito de destaque */
            transition: background-color 0.3s ease, transform 0.3s ease;
            /* Transição suave */
          }

          /* Ajuste para telas menores */
          @media (max-width: 1024px) {
            .services-grid {
              grid-template-columns: repeat(2, 1fr);
            }
          }

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

            .hero h1 {
              font-size: 2rem;
            }
          }

          /* Contato */
          .contact {
            background-color: #111;
            padding: 2rem 1rem;
            border-radius: 8px;
          }

          .contact form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
          }

          .contact input,
          .contact textarea {
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
          }

          .contact .btn {
            background-color: #e63946;
            color: #fff;
            border: none;
            cursor: pointer;
            padding: 0.75rem;
            font-weight: bold;
          }

          .contact .btn:hover {
            background-color: #b71c1c;
          }

          /* Estilo para o botão do WhatsApp flutuante */
          .whatsapp-btn-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
          }

          .whatsapp-btn {
            display: inline-block;
            padding: 0.5rem 0.8rem;
            background-color: #25D366;
            color: #fff;
            font-weight: bold;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
          }

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


          .google-reviews {
            background-color: #222;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
          }

          .google-reviews h2 {
            color: #e63946;
            text-align: center;
          }

          .review {
            background-color: #333;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
          }

          .review p {
            color: #fff;
          }

          .review strong {
            color: #fff;
          }
		  
		  .review .author{
			  font-weight: 800;
			  text-transform: uppercase;
		  }


          /* Rodapé */
          footer {
            text-align: center;
            padding: 1rem;
            background-color: #000;
            border-radius: 8px;
            margin-top: 50px
          }

          footer p {
            margin: 0;
          }