.bg-taxi {
  background-image: url("/img/taxi.png");
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding: 60px 20px; /* espaço para mobile */
  padding-bottom: 120px;
}

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

.conteudo {
  display: flex;
  flex-direction: row;
  height: 100%;
  flex-wrap: nowrap;
  gap: 20px;
}

.textos {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 60%;
  gap: 10px;
}

.link {
  text-decoration: none;
  color: inherit;
}

.sobTitle {
  color: var(--color-green2);
}

.title {
  color: var(--color-white);
  padding: 20px 0px;
}

.title h1 {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-white);
  text-align: start;
}

.section-text {
  color: var(--color-white);
}

.buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px 0px;
  gap: 20px;
}

.btn-comecar {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  height: 60px;
  width: 170px;
  padding: 20px;
}

.btn-comecar:hover {
  background-color: var(--color-green);
  border: 2px solid var(--color-green);
}

.play-video {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  color: var(--color-white);
}

.prints {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--color-white);
  padding: 5px 0px;
}

.prints img {
  max-width: 100%;
  max-height: 700px;
}

/* === MEDIA QUERY PARA TELAS PEQUENAS === */
@media (max-width: 768px) {
  .conteudo {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .textos {
    width: 100%;
  }

  .title h1 {
    font-size: 36px;
  }

  .btn-comecar {
    width: 100%;
  }

  .play-video {
    justify-content: flex-start;
  }

  .buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .prints {
    align-items: center;
  }

  .prints img {
    width: 80%;
  }
}
