@font-face {
    font-family: 'fonte1';
    src: url('fontes/Barking\ at\ Stars\ Straight.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte2';
    src: url('fontes/Brampton\ Serif\ Demo.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte3';
    src: url('fontes/Chomixi3D-Regular.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte4';
    src: url('fontes/Crimen\ en\ Levante.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte5';
    src: url('fontes/Double\ Tracker.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte6';
    src: url('fontes/Faster\ Stroker.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte7';
    src: url('fontes/Good\ Explorer.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte8';
    src: url('fontes/GraffitiYouth-Regular.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte9';
    src: url('fontes/Improbable.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte10';
    src: url('fontes/Mega\ Surprise.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte11';
    src: url('fontes/New\ York\ Hardcore.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte12';
    src: url('fontes/Pentagono\ Grunge.ttf') format('truetype');
  }
  @font-face {
    font-family: 'fonte13';
    src: url('fontes/Ranmor.otf') format('opentype');
  }
  @font-face {
    font-family: 'fonte14';
    src: url('fontes/SilvercrushDEMO.otf') format('opentype');
  }
/* Adicione seu estilo personalizado aqui */









body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff33;
}

header {
    background-color: #1111118f;
    padding: 3px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgb(57, 55, 55);
  position: fixed;
  z-index: 1000;
  background-color: #333; /* Defina a cor de fundo aqui */
  width: 100%;
  height: 10%;
}

.logo img {
  height: 45px;
  border-radius: 10px; 
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1); /* Ajuste conforme necessário */
}
.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  color: #fff;
  margin-left: 20px;
  font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  letter-spacing: 3px;
  margin-right: 20px;
  font-size: 15px;
  font-family: 'fonte7', Tahoma, Geneva, Verdana, sans-serif;
  border-bottom: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: border-bottom 0.3s ease;
}

.navbar li:hover {
  border-bottom: 2px solid #ffbf00;
}
.navbar li.active {
  background-color: rgba(255, 191, 0, 0.2); /* Cor de fundo para o item ativo */
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
  font-size: 22px;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #ffbf00;
}

.hero-section {
  padding: 10px; /* Reduzir o espaçamento interno */
  text-align: center;
  position: relative;
  background: url(img/foto7.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  height: 500px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 35% 90%, 20% 100%, 0 70%);
  border-bottom: 20px solid rgba(0, 0, 0, 0.5); /* Adiciona uma borda sombreada apenas na parte inferior */
}

.hero-content {
  text-align: left;
  margin-left: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 5px;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3); /* Ajusta a sombra do texto */
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0a6ae7;
  color: #fff;
  max-height: 20px;
  margin-right: 20px;
  height: 20px;
  text-decoration: none;
  border-radius: 20px;
  font-size: 18px;
  font-family: 'fonte7', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 3px;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  max-width: 80%;
}

.popup h2 {
  margin-top: 0;
  font-size: 50px;
  letter-spacing: 3px;
  font-family: 'fonte7', Tahoma, Geneva, Verdana, sans-serif;
}

.popup-content {
  line-height: 1.6;
}

.popup button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.popup button:hover {
  background-color: #0056b3;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.marca-section {
    border-radius: 15px;
    margin-bottom: 40px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    font-size: 20px;
    
  }
  
  .marca-section:hover {
    transform: translateY(-5px);
  }
  @keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Aplicar a animação à imagem */
.marca-content img {
  animation: scaleIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
  .marca-section img {
    max-width: 100px;
    height: auto;
    margin-right: 20px;
    transition: transform 0.3s ease;
  }
  
  .marca-section:hover img {
    transform: scale(1.1);
  }
  
  .marca-info {
    flex: 1;
  }
  
  .marca-info h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .marca-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .marca-section button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 16px;
  }
  
  .marca-section button:hover {
    background-color: #0056b3;
  }
  .title {
    color: #090909; /* Apenas o título em azul */
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'fonte6', Tahoma, Geneva, Verdana, sans-serif;
}










/* 🔥 MOBILE (até 767px) — SEU NOVO CÓDIGO FUNCIONAL */
@media (max-width: 767px) {

    /* NAVBAR */
    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
        height: 55px;
        position: fixed;
        top: 0;
        width: 100%;
        background: #333;
        z-index: 2000;
    }

    /* LOGO */
    .logo {
        display: flex;
        align-items: center;
        gap: 11px;
    }

    .logo img {
        height: 45px;
        margin: 0;
    }

    .logo h1 {
        font-size: 20px;
        margin: 0;
        padding: 0;
    }

    /* MENU HAMBÚRGUER */
    .hamburger {
        display: block;
        font-size: 32px;
        cursor: pointer;
        margin-right: 10px;
        color: white;
    }

    /* MENU FECHADO */
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 15px;
        background: #0f0f0fc0;
        padding: 10px 0;
        border-radius: 10px;
        position: absolute;
        top: 55px;
        left: 0;
        z-index: 999;
    }

    /* MENU ABERTO */
    .navbar ul.active {
        display: flex;
    }

    .navbar li {
        margin: 12px 0;
        font-size: 18px;
    }

  
@media (max-width: 767px) {
    .hero-section {
        height: 380px;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* OPÇÃO A */
        border-bottom: none;
    }
}


    .hero-content {
        padding: 0 20px;
        width: 100%;
        text-align: center;
        top: 55%;
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 2.5em;
        letter-spacing: 3px;
    }

/* 🔥 CORREÇÃO DO POPUP NO MOBILE */
@media (max-width: 767px) {

    /* POPUP RESPONSIVO */
    .popup {
        width: 90%;
        max-height: 80vh;   /* impede estourar a tela */
        overflow-y: auto;   /* rolando dentro */
        padding: 20px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 12px;
        box-shadow: 0px 0px 20px rgba(0,0,0,0.6);

        /* mantém acima do overlay */
        z-index: 99999;
    }

    /* TÍTULO MENOR */
    .popup h2 {
        font-size: 26px;
        text-align: center;
    }

    /* CONTEÚDO */
    .popup-content {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    /* BOTÃO FECHAR */
    .popup button {
        width: 100%;
        padding: 12px;
        font-size: 18px;
        border-radius: 10px;
        position: sticky;     /* faz ficar sempre visível */
        bottom: 0;
        background-color: #0a6ae7;
    }

    /* OVERLAY AJUSTADO */
    .overlay {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.65);
        z-index: 9999;
    }

    /* AJUSTE DOS CARDS (SEÇÕES DAS MARCAS) */
    .marca-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }

    .marca-section img {
        max-width: 130px;
        margin: 0 auto 10px auto;
    }

    .marca-section button {
        width: 100%;
        padding: 12px;
        font-size: 17px;
        margin-top: 10px;
    }

    /* Título mais responsivo */
    .title {
        font-size: 28px;
    }

}










