section#banner {
  width: 100%;
  min-height: calc(100vh - 84.67px);
  /* Imagem local definida para o banner da home */
  background-image: url("../../img/facilLog/d6311bf5d54c82b7b68619185ab25eaa1a4f498c (1).jpg");
  background-position: 100% 120%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Deixar o fundo da página inicial branco (evita faixa cinza entre seções) */
.home-site {
  background-color: #FFFFFF;
}

@media (max-width: 992px) {
  section#banner {
    text-align: left;
    padding: 1.5rem 0 2rem 0;
  }

  section#banner .banner-left {
    text-align: left;
  }

  section#banner .banner-actions a.btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 568px) {
  section#banner {
    min-height: calc(100vh - 96.53px);
  }
}

@media (min-width: 1360px) {
  section#banner {
    background-size: cover;
  }
}

/* Camada de escurecimento sobre a imagem de fundo */
section#banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Garante que o conteúdo fique acima do overlay escuro */
section#banner>.container {
  position: relative;
  z-index: 1;
}

section#banner h1 {
  color: white;
  margin: 0;
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

section#banner a.btn {
  border-color: #95ffb3;
  color: #95ffb3;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

section#banner a.btn:hover {
  background-color: #95ffb3;
  color: black;
}

section#banner .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

section#banner .row,
section#banner .row>div {
  margin: 0 auto;
}

section#banner .row::before,
section#banner .row::after,
section#banner .row>div::before,
section#banner .row>div::after {
  display: none;
}

section#banner .row .cards-vehicle-types {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

@media (max-width: 991px) {
  section#banner .row .cards-vehicle-types {
    margin-top: 1.75rem;
  }
}

section#banner .row .cards-vehicle-types>a.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 0.8rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

section#banner .row .cards-vehicle-types>a.card:hover {
  background-color: rgba(0, 0, 0, 0.75);
  transform: scale(1.05);
}

@media (max-width: 568px) {
  section#banner .row .cards-vehicle-types>a.card {
    width: 120px;
    height: 120px;
  }

  section#banner .row .cards-vehicle-types>a.card img {
    width: 40%;
  }
}

section#banner .row .cards-vehicle-types>a.card img {
  filter: brightness(0) invert(1);
  margin: 0 0 0.75rem;
}

section#banner .row .cards-vehicle-types>a.card span {
  color: #fff;
}

/* Coluna da direita: cards encostados à direita */
section#banner .banner-vehicles {
  display: flex;
  justify-content: flex-end;
}

section#banner .banner-actions a.btn {
  width: fit-content;
}

@media (max-width: 991px) {
  section#banner h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  section#banner .row .cards-vehicle-types {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Layout mobile intermediário (até 768px): título e botões centralizados, cards 2x2 */
@media (max-width: 768px) {
  section#banner {
    text-align: center;
    padding: 1.5rem 0 2rem 0;
  }

  section#banner .banner-left {
    text-align: center;
  }

  section#banner h1 {
    text-align: center;
  }

  section#banner .banner-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  section#banner .banner-actions a.btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile pequeno (até 425px): texto alinhado à esquerda, botões ainda empilhados */
@media (max-width: 425px) {
  section#banner {
    text-align: left;
    padding: 1.5rem 0 2rem 0;
  }

  section#banner .banner-left {
    text-align: left;
  }

  section#banner h1 {
    text-align: left;
  }

  section#banner .banner-actions {
    align-items: stretch;
  }

  /* Forçar o título da seção de serviços a ficar à esquerda em telas pequenas */
  .servicos-hero-card h2 {
    text-align: left;
  }
}

section#servicos {
  width: 100%;
  padding: 3rem 0;
  background-color: #FFFFFF;
}

/* Novo layout de destaque para serviços */
.servicos-hero {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background-color: #000000;
}

.servicos-hero-card {
  flex: 0 0 40%;
  padding: 2.5rem 2.75rem;
  color: #ffffff;
  background-color: #000000;
}

.servicos-hero-card h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
}

.servicos-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.servicos-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.servicos-list li + li {
  margin-top: 0.75rem;
}

.servicos-check-icon {
  width: 17px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 0.35em;
}

.servicos-list span {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFFFFF;
}

.servicos-hero-image {
  flex: 0 0 60%;
  background-color: #ffffff;
}

.servicos-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .servicos-hero {
    flex-direction: column;
  }

  .servicos-hero-card,
  .servicos-hero-image {
    flex: 1 1 auto;
  }

  .servicos-hero-image {
    max-height: 260px;
  }
}

/* Abaixo de ~768px, título e textos da lista alinhados à esquerda */
@media (max-width: 768px) {
  .servicos-hero-card {
    text-align: left;
  }

  .servicos-hero-card h2 {
    text-align: left;
  }

  .servicos-list li {
    justify-content: flex-start;
  }
}

section#banner-app {
  width: 100%;
  background-color: #FFFFFF;
  padding: 3rem 0;
}

.servicos-app {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.servicos-app-header h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1.9rem;
  font-weight: 800;
  text-align: center;
}

.servicos-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.servicos-app-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  /* quadrados mais confortáveis para o texto (sem quebrar demais) */
  width: 130px;
  height: 80px;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
  font-size: 0.9rem;
}

.servicos-app-tag img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Em telas menores (~até 768px), manter o bloco centralizado com as tags em 2 colunas */
@media (max-width: 768px) {
  .servicos-app-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 130px)); /* 2 colunas fixas, como no layout 2x2 */
    gap: 0.75rem;
    justify-content: center;  /* centraliza o grid inteiro */
    justify-items: center;    /* centraliza cada quadrado dentro da coluna */
  }
}

.servicos-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.servicos-app-card {
  position: relative;
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
}

.servicos-app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.servicos-app-card span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  /* remover fundo: deixar apenas o texto sobre a imagem */
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
  .servicos-app-grid {
    grid-template-columns: 1fr;
  }

  .servicos-app-header h2 {
    text-align: center;
  }
}

section#relatos {
  width: 100%;
  background-image: url("https://storage.googleapis.com/clientesmapptools/c32a833bd5d529b7674f78de69f569ee.png");
  background-repeat: no-repeat;
  background-position: center;
  padding: 2rem 0;
  background-size: cover;
}

section#relatos h2 {
  margin: 0;
  margin-bottom: 2rem;
  text-align: center;
  color: white;
}

section#relatos .col-md-12 {
  float: none;
  margin: 0 auto;
}

section#relatos .col-md-12 .card-selected {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

@media (min-width: 769px) {
  section#relatos .col-md-12 .card-selected:hover {
    transform: scale(1.05);
  }
}

@media (min-width: 568px) {
  section#relatos .col-md-12 .card-selected {
    flex-direction: row;
  }
}

section#relatos .col-md-12 .card-selected>.profile-image {
  margin-bottom: 1.25rem;
}

@media (min-width: 568px) {
  section#relatos .col-md-12 .card-selected>.profile-image {
    margin-right: 1.25rem;
    margin-bottom: 0;
  }
}

section#relatos .col-md-12 .card-selected>.card-content p {
  font-size: 1.15rem;
  font-weight: 400;
  text-align: justify;
}

section#relatos .col-md-12 .card-selected>.card-content>.content-author {
  margin-top: 1rem;
}

section#relatos .col-md-12 .card-selected>.card-content>.content-author span.name {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000;
  line-height: 0.5;
}

section#relatos .col-md-12 .card-selected>.card-content>.content-author span:not(.name) {
  font-size: 0.75rem;
  font-weight: 400;
}

section#relatos .col-md-12 .cards {
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
}

section#relatos .col-md-12 .cards>a.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 160px 0 0;
  height: 160px;
  background-color: white;
  padding: 1.25rem 0.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
}

section#relatos .col-md-12 .cards>a.card:not(:last-of-type) {
  margin-right: 2rem;
}

section#relatos .col-md-12 .cards>a.card>div.profile-image {
  margin-bottom: 0.5rem;
  max-width: 40%;
  opacity: 0.7;
}

section#relatos .col-md-12 .cards>a.card>div.profile-image img {
  width: 100%;
}

section#relatos .col-md-12 .cards>a.card>div.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

section#relatos .col-md-12 .cards>a.card>div.card-content span.name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.1;
}

section#relatos .col-md-12 .cards>a.card>div.card-content span:not(.name) {
  font-size: 0.55rem;
  font-weight: 400;
  line-height: 1.05;
}

section#fale-conosco {
  width: 100%;
  padding: 2rem 0;
  background-color: #F4F4F4;
}

section#fale-conosco h2 {
  margin: 0;
  margin-bottom: 2rem;
}

section#fale-conosco .cards-contato {
  display: flex;
  flex-direction: column;
}

section#fale-conosco .cards-contato>.card {
  flex: 100% 1 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 75px;
  background-color: #000000;
  padding: 0.75rem 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.5);
  transition: background-color 0.4s ease;
}

section#fale-conosco .cards-contato>.card:hover {
  background-color: #141414;
}

section#fale-conosco .cards-contato>.card:not(div) {
  text-decoration: none;
}

@media (min-width: 992px) {
  section#fale-conosco .cards-contato>.card {
    flex-direction: row;
  }
}

section#fale-conosco .cards-contato>.card>.card-icon {
  text-align: center;
  margin-bottom: 0.75rem;
  width: 15%;
}

@media (min-width: 992px) {
  section#fale-conosco .cards-contato>.card>.card-icon {
    margin-bottom: 0;
    margin-right: 0.75rem;
  }
}

section#fale-conosco .cards-contato>.card>.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 992px) {
  section#fale-conosco .cards-contato>.card>.card-content {
    text-align: left;
  }
}

section#fale-conosco .cards-contato>.card>.card-content>span {
  display: block;
  color: white;
  word-wrap: break-word;
  font-weight: 400;
}

section#fale-conosco form label {
  padding: 0 !important;
}

section#fale-conosco form textarea {
  resize: vertical;
}

section#fale-conosco form button.btn.btn-outline-primary {
  display: block;
  width: 100%;
  padding: 0.7rem 1.25rem;
  border: 2px solid #000000;
  color: #000000;
  font-weight: 500;
  text-transform: uppercase;
}

section#fale-conosco form button.btn.btn-outline-primary:hover {
  color: white;
}

section#clientes {
  width: 100%;
  padding: 2rem 0;
  background-color: #F4F4F4;
}

section#clientes h2 {
  margin: 0;
  margin-bottom: 2rem;
  text-align: center;
}

section#clientes .owl-carousel {
  margin-bottom: 0.85rem;
}

section#clientes .owl-carousel a {
  display: block;
  text-decoration: none;
  text-align: center;
}

section#clientes .owl-carousel a img {
  margin: 0 auto;
  width: -moz-min-content;
  width: min-content;
}

section#clientes .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

section#clientes .owl-carousel .owl-nav button {
  cursor: pointer;
  font-size: 3.5rem;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0 0.25rem !important;
  border-radius: 0.1rem;
  transition: background-color 0.3s ease;
}

section#clientes .owl-carousel .owl-nav button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

section#clientes .owl-carousel .owl-nav button:hover span {
  color: white;
}

section#clientes .owl-carousel .owl-nav button span {
  color: #000000;
  transition: color 0.3s ease;
}

section#clientes .owl-carousel .owl-dots {
  position: absolute;
  bottom: -10px;
  width: 100%;
  text-align: center;
}

section#clientes .owl-carousel .owl-dots button {
  width: 10px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

section#clientes .owl-carousel .owl-dots button:not(:last-child) {
  margin-right: 0.25rem;
}

section#clientes .owl-carousel .owl-dots button.active {
  background-color: #000000;
}

/*# sourceMappingURL=styles.css.map */