    * {
      margin: 0; padding: 0; box-sizing: border-box;
    }
    body {
      font-family: 'Segoe UI', sans-serif;
      scroll-behavior: smooth;
      color: #4d0000; /* tom de vermelho escuro para texto */
      background-color: #fff;
    }
    header {
      background-color: #8b0000; /* vermelho escuro */
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(139,0,0,0.6);
    }


    .logo-img{
      width: 180px;
    }

    .logo {
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    nav a {
      color: #ffe6e6; /* vermelho claro quase branco */
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
      font-weight: 600;
    }
    nav a:hover {
      color: #fff0f0;
      text-shadow: 0 0 5px #ff6666;
    }
    section {
      padding: 100px 30px;
    }
    /* Banner */
#inicio {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

#inicio video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

#inicio .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(80, 6, 6, 0.8); /* vermelho com 40% de opacidade */
  z-index: -1;
}

#inicio h1,
#inicio p,
#inicio .banner-buttons {
  position: relative;
  z-index: 1;
}

#inicio h1{
    margin-top:50px;
    font-size: 48px;
}

#inicio .slogan{
  width:50%;
}

.banner-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.banner-buttons a {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border: 2px solid white;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.banner-buttons a:hover {
  background-color: white;
  color: black;
}
    /* Sobre */
    #sobre {
      background-color: #fff0f0;
    }
    .sobre-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      max-width: 1200px;
      margin: auto;
    }
    .sobre-imagem {
      flex: 1 1 400px;
    }
    .sobre-imagem img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(204,0,0,0.3);
    }
    .sobre-conteudo {
      flex: 1 1 400px;
      color: #660000;
    }
    .sobre-conteudo h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #990000;
      /* removido text-shadow */
    }
    .sobre-conteudo p {
      font-size: 18px;
      margin-bottom: 30px;
      line-height: 1.5;
    }
    .qualidades {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .qualidade {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      background: white;
      padding: 10px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(204,0,0,0.15);
      flex: 1 1 150px;
      color: #a30000;
      font-weight: 600;
    }
    .qualidade span {
      font-size: 22px;
    }
    /* Serviços */
    #servicos {
      background-color: #fff;
      text-align: center;
      color: #660000;
    }
    .servicos-container {
      max-width: 1200px;
      margin: auto;
    }
    .servicos-container h2 {
      font-size: 30px;
      margin-bottom: 50px;
      color: #a30000;
      /* removido text-shadow */
    }
    .servicos-tipos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }
    .servico {
      background-color: #fff0f0;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(204,0,0,0.1);
      flex: 1 1 250px;
      max-width: 300px;
      color: #660000;
    }
    .servico h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #800000;
    }
    .servico p {
      font-size: 15px;
      color: #660000;
    }
    /* Galeria */
    #galeria {
      background-color: #fff0f0;
      padding: 100px 30px;
      text-align: center;
      color: #660000;
    }
    .galeria-container {
      max-width: 1200px;
      margin: auto;
    }
    #galeria h2 {
      font-size: 30px;
      margin-bottom: 50px;
      color: #a30000;
      /* removido text-shadow */
    }
    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .galeria-grid img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(204,0,0,0.2);
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .galeria-grid img:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(255, 77, 77, 0.7);
    }
    /* Contato */
    #contato {
      background-color: #fff;
      padding: 100px 30px;
      text-align: center;
      color: #660000;
    }
    .contato-container {
      max-width: 900px;
      margin: auto;
    }
    #contato h2 {
      font-size: 30px;
      margin-bottom: 50px;
      color: #a30000;
      /* removido text-shadow */
    }
    .contato-info {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      text-align: left;
    }
    .contato-coluna {
      flex: 1 1 300px;
      background: #fff0f0;
      padding: 25px 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(204,0,0,0.15);
      color: #660000;
      font-weight: 600;
    }
    .contato-coluna h3 {
      font-size: 22px;
      margin-bottom: 20px;
      color: #800000;
    }
    .contato-coluna p {
      font-size: 16px;
      margin-bottom: 12px;
      color: #660000;
    }
    /* Footer */
    footer {
      background-color: #8b0000;
      color: #ffe6e6;
      padding: 40px 20px;
      text-align: center;
    }
    .footer-container {
      max-width: 1000px;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .footer-logo {
      font-size: 24px;
      font-weight: bold;
      text-transform: uppercase;
      color: #fff0f0;
      /* removido text-shadow */
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }
    .footer-links a {
      color: #ffe6e6;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
      font-weight: 600;
    }
    .footer-links a:hover {
      color: #ff4d4d;
      text-shadow: 0 0 5px #ff4d4d;
    }
    .footer-copy {
      font-size: 13px;
      color: #ffb3b3;
    }
    @media (max-width: 768px) {
      .sobre-container,
      .servicos-tipos {
        flex-direction: column;
        text-align: center;
      }
      .galeria-grid {
        grid-template-columns: 1fr 1fr;
      }
      .contato-info {
        flex-direction: column;
        text-align: center;
      }
      .contato-coluna {
        max-width: 400px;
        margin: 0 auto 30px;
      }
      #inicio {
        height: 75vh;
      }

      #inicio .slogan{
        width:100%;
      }
    }

    /* Menu código */
    .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

    .menu-toggle div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
    }




    @media (max-width: 780px) {
      .galeria-grid {
        grid-template-columns: 1fr;
      }

      .contato-coluna{
        flex: 1 1 150px;
      }

      .servico{
        display: flex;
        padding: 30px 20px;
        flex: 1 1 150px;
        flex-wrap: wrap;
        justify-content: center; /* centraliza as imagens horizontalmente */
        margin:auto;
        height: auto;
      }

      nav {
        display: none;
        flex-direction: column;
        background-color: #8b0000;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    nav li {
        margin: 10px 0;
    }

    .sobre-container{
      margin-bottom: 50px;
      flex-direction: row;
    }
  }
