@font-face {
    font-family: 'LT Renovate';
    src: url('../fontes/LTRenovate-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'LT Renovate';
    src: url('../fontes/LTRenovate-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'LT Renovate';
    src: url('../fontes/LTRenovate-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'LT Renovate';
    src: url('../fontes/LTRenovate-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'LT Renovate';
    src: url('../fontes/LTRenovate-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

body {
    font-family: 'LT Renovate', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
}

h1 {
    font-weight: 800;
}

h2 {
    font-weight: 700;
}

h3 {
    font-weight: 600;
}

p {
    font-weight: 400;
}

.small-text {
    font-weight: 500;
}

#motoristas.hero-section {
  position: relative;
  min-height: 75vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 1rem;

  background-image: url("../imagens/motorista_alegre.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 1%;
  background-attachment: fixed;
  overflow: hidden;
}

#passageiros.hero-section {
  position: relative;
  min-height: 75vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 1rem;

  background-image: url("../imagens/passageiro.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 1%;
  background-attachment: fixed;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.2)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 999;
  text-align: center;
}

.hero-content h1,
.hero-content p {
  color: #ffffff;
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 65vh;
    padding-top: 100px;
    background-position: center 5%;
    background-attachment: scroll;
  }
}

.app-image-wrapper {
  height: 400px;
}

.app-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 16px 0;
    z-index: 9999;
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 0.25rem 0; /* equivalente ao py-1 do Bootstrap */
    z-index: 9999;
    display: none;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}