/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Barra de Navegação */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
  }
  
  .logo {
    width: 150px;
  }
  
  .menu {
    display: flex;
    gap: 1.5rem;
  }
  
  .menu li {
    list-style: none;
  }
  
  .menu a {
    text-decoration: none;
    color: red;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .menu a:hover {
    color: #fff;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: red;
  }
  
  .banner {
    height: 90vh;
    background-image: url('/fundo.webp'); /* Alteração aqui */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.banner {
  min-height: 400px;
}

  
.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Reduzi um pouco a opacidade */
  z-index: 1;
}

  
  .banner-content {
    position: relative;
    z-index: 2;
  }
  
  .banner h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
  }
  
  .line {
    width: 100px;
    height: 5px;
    background-color: red;
    margin: 1rem auto;
  }
  
  .banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #000, red);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: linear-gradient(90deg, red, #000);
  }
  
  .whatsapp-icon {
    background: url('whatsapp-icon.svg') center/contain no-repeat;
    width: 20px;
    height: 20px;
  }
  
  @media (max-width: 768px) {
    .banner {
        height: auto;
        min-height: 70vh;
        background-image: url('/fundo.webp'); /* Garantindo que a imagem seja aplicada */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

  /* Responsividade */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      position: absolute;
      top: 100%;
      right: 0;
      background: rgba(0, 0, 0, 0.9);
      padding: 1rem;
      border-radius: 0 0 10px 10px;
    }
  
    .menu.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  }

  /* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Barra de Navegação */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
  }
  
  .logo {
    width: 150px;
  }
  
  .menu {
    display: flex;
    gap: 1.5rem;
  }
  
  .menu li {
    list-style: none;
  }
  
  .menu a {
    text-decoration: none;
    color: red;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .menu a:hover {
    color: #fff;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: red;
  }
  

  
  /* Seção de Serviços */
/* Seção de Serviços */
.services {
    padding: 4rem 2rem;
    background-color: #000;
    text-align: center;
  }
  
  .services-title {
    font-size: 2rem;
    color: red;
    margin-bottom: 2rem;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-box {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.5);
  }
  
  .icon {
    font-size: 3rem; /* Aumentando o tamanho do ícone */
    color: red; /* Cor dos ícones */
    margin: 0 auto 1rem;
  }
  
  .service-title {
    font-size: 1.5rem;
    color: red;
    margin-bottom: 1rem;
  }
  
  .service-description {
    color: #fff;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    background: linear-gradient(90deg, #000, red);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: linear-gradient(90deg, red, #000);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      position: absolute;
      top: 100%;
      right: 0;
      background: rgba(0, 0, 0, 0.9);
      padding: 1rem;
      border-radius: 0 0 10px 10px;
    }
  
    .menu.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  
    .services-container {
      grid-template-columns: 1fr;
    }
  }
  

  /* Seção Sobre Nós */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 50px 20px;
    color: #fff;
    overflow: hidden;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .about-content {
    flex: 1 1 50%;
    animation: fadeInLeft 1s ease-in-out;
  }
  
  .about-content h2 {
    font-size: 2rem;
    color: #ff0000; /* Vermelho para o título */
    margin-bottom: 20px;
    text-align: center;
    margin-top: 70px;
  }
  
  .about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .about-image {
    flex: 1 1 40%;
    animation: fadeInRight 1s ease-in-out;
  }
  
  .about-image img {
    width: 80%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Animações de entrada */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .about {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content, .about-image {
      flex: 1 1 100%;
      animation: none; /* Remover animações em telas menores para melhor desempenho */
    }
  
    .about-content h2 {
      font-size: 1.8rem;
    }
  
    .about-content p {
      font-size: 0.9rem;
    }
  }
  
  /* Estilos para a seção */
.faixa-section {
    width: 100%; /* A seção ocupa toda a largura da tela */
    display: flex;
    justify-content: center; /* Alinha a faixa no centro */
    padding: 0;
}

/* Faixa com imagem de fundo */
.faixa {
    height: 400px; /* Altura da faixa */
    background-image: url('/img/faixa.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* Ajusta a imagem para cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    width: 100%; /* Garante que a faixa ocupe toda a largura */
}

/* Responsividade */
@media (max-width: 768px) {
    .faixa {
        height: 25px; /* Ajuste para telas menores */
    }
}

@media (max-width: 480px) {
    .faixa {
        height: 20px; /* Ajuste para dispositivos móveis */
    }
}

/* Contêiner da seção de contato */
.contato-section {
    display: flex;
    justify-content: center;
    padding: 50px 10px;
}

/* Container principal de contato */
.contato-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

/* Contato à esquerda */
.contato-left {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.contato-left h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
}

.contato-item i {
    margin-right: 10px;
    color: #f4b400; /* Cor do ícone */
}

/* Links de WhatsApp */
.contato-item a {
    text-decoration: none;
    color: #25d366; /* Cor verde do WhatsApp */
    font-weight: bold;
}

/* Mapa à direita */
.contato-right {
    flex: 1;
    animation: fadeInRight 1s ease-out;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Animações */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
        gap: 20px;
    }

    .contato-left, .contato-right {
        flex: none;
        width: 100%;
    }

    .mapa iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contato-left h2 {
        font-size: 20px;
    }

    .contato-item p {
        font-size: 16px;
    }
}

/* Estilos do footer */
.footer {
    background-color: #000; /* Cor de fundo escura */
    color: #fff; /* Cor do texto branca */
    padding: 20px 10px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Animação de entrada */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .footer {
        padding: 15px 10px;
    }

    .footer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer p {
        font-size: 12px;
    }
}