/*!
 * Auto Escola Líder 
 * © 2025 Todos os direitos reservados.
 * Desenvolvido por Guilherme Galante
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

.logo img {
  padding-top: 10px;
  width: 250px;
  height: 250px;
  overflow-x: hidden;
}

:root {
  --amarelo: #ffca0a;
  --preto: #000000;
  --vermelho: #ee1c24;
  --cinza: #f7f7f7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
#container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
/* ==========================================================================
   Separação - Header começo
   ========================================================================== */
header {
  background-color: var(--amarelo);
}

header .interface {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px;
  height: 100px;
  overflow-y: hidden;
}

header nav ul {
  list-style-type: none;
  text-decoration: none;
}
header nav ul li a {
  list-style-type: none;
  text-decoration: none;
  color: var(--preto);
  font-size: 18px;
  font-weight: 500;
}

header a:hover {
  color: var(--cinza);
  transform: scale(1.05);
}

header .btn-orcamento a {
  text-decoration: none;
  color: var(--cinza);
  box-shadow: 0px 0px 8px var(--preto);
}

.menu-desktop ul {
  display: flex;
  gap: 40px;
}
.hamburguer {
  display: none;
  border: none;
  background: none;
  border-top: 3px solid var(--preto);
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
.hamburguer::before,
.hamburguer::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: var(--preto);
  margin-top: 5px;
  transition: 0.3s;
}
.btn-orcamento a {
  display: inline-block;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--preto);
  border-radius: 20px;
  cursor: pointer;
  transition: 0.2s;
  color: var(--cinza);
  margin-left: 20px;
}

.btn-orcamento a:hover {
  box-shadow: 0px 0px 8px var(--preto);
  transform: scale(1.1);
}

.contato-menu-hamburguer {
  display: none;
}
/* ==========================================================================
   Separação - Header Fim
   ========================================================================== */

/* ==========================================================================
   BOTAO ZAP COMEÇO
   ========================================================================== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #24d366;
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease-out;
}
.whatsapp:hover {
  background-color: var(--amarelo);
}
.whatsapp svg {
  width: 30px;
  height: 30px;
}

/* Estilos para o Mini Chat */
.mini-chat {
  flex-direction: column;
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 300px;
  background-color: white;
  z-index: 1000;
  border-radius: 20px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.4s;
}
.mini-chat.visivel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: var(--amarelo);
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.chat-header p {
  margin: 0;
  font-weight: bold;
}
.chat-close {
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  background-color: red;
  border-radius: 50%;
  transition: 0.3s ease-out;
}
.chat-close:hover {
  background-color: black;
}
.chat-close i {
  font-size: 20px;
}
.chat-body {
  padding: 10px;
  flex-grow: 1;
}
.chat-body textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: none;
  padding: 8px;
  box-sizing: border-box;
}

.chat-footer {
  padding: 10px;
  background-color: var(--cinza);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.chat-footer button {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: var(--amarelo);
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease-out, transform 0.2s ease-out;
}
.chat-footer button:hover {
  background-color: var(--preto);
  transform: translateY(-2px);
}

.dica {
  color: #666;
  font-size: 12px;
}

/* ==========================================================================
   BOTAO ZAP FIM
   ========================================================================== */

/* ==========================================================================
   Separação - Slide header começo
   ========================================================================== */
/* .anuncios {
  /* margin-top: 50px; */
/* espaçamento entre header e slide sim ou n  */

.swiper-inicio img {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  object-fit: cover;
}

.swiper-inicio .swiper-slide {
  position: relative;
}

.swiper-inicio-pagination {
  text-align: center;
  color: var(--amarelo);
}
.swiper-inicio-button-prev,
.swiper-inicio-button-next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  color: var(--cinza);
  font-size: 40px;
}

.swiper-inicio-button-prev {
  left: 10px;
}

.swiper-inicio-button-next {
  right: 10px;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* aqui fica o escurecimento */
  z-index: 0;
}
/* .text-overlay {
  position: absolute;
  top: 10%;
  left: 55%;
  transform: translateX(-50%);
  color: var(--cinza);
  z-index: 2;
} */
.text-overlay {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%); /* << Centraliza o bloco */
  width: 90%;
  max-width: 800px;
  color: var(--cinza);
  z-index: 2;
  text-align: left;
}

.text-overlay h1 {
  font-size: 50px;
  text-align: left;
  color: var(--cinza);
}
.text-overlay h2 {
  font-size: 50px;
  text-align: left;
  color: var(--cinza);
}

.text-overlay p {
  font-size: 26px;
  text-align: left;
  color: var(--cinza);
}

.btn-orcamento-slide a {
  text-decoration: none;
  color: var(--preto);
}
.btn-orcamento-slide {
  position: absolute;
  top: 70%;
  left: 24%;
  transform: translateX(-50%);
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--amarelo);
  border-radius: 20px;
  cursor: pointer;
  transition: 0.2s;
  color: var(--preto);
  animation: flutuar 2s ease-in-out infinite alternate;
  z-index: 3;
}

@keyframes flutuar {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.btn-orcamento-slide:hover {
  box-shadow: 0px 0px 8px var(--cinza);
  transform: scale(1.1);
}

#radio1 {
  display: none;
}
#radio2 {
  display: none;
}
/* ==========================================================================
   Separação - Slide header Fim
   ========================================================================== */

/* ==========================================================================
   Separação - Scroll Reveal começo
   ========================================================================== */

.efeito-slide-topo,
.section-title,
.services-header {
  visibility: hidden;
}
/* ==========================================================================
   Separação - Scroll Reveal Fim
   ========================================================================== */

/* ==========================================================================
   Separação - Melhor escolha começo
   ========================================================================== */
#diferenciais {
  padding-top: 50px;
  padding-bottom: 50px;
}

.diferencial i {
  display: flex;
  justify-content: center;
  font-size: 40px;
  color: var(--amarelo);
  padding-top: 25px;
  padding-bottom: 25px;
}

.diferencial h3,
p,
.swiper-diferencial-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.swiper-diferencial-pagination {
  padding-top: 15px;
}
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--preto);
}

.section-title .high {
  color: var(--amarelo);
}
/* ==========================================================================
   Separação - Melhor escolha final
   ========================================================================== */

/* ==========================================================================
   Separação - Nossos serviços começo
   ========================================================================== */

/* Imagens específicas */
#primeira-habilitacao {
  background-image: url("imgs/primeiraHabilitação_carro_moto.webp");
}
#adicao-categorias {
  background-image: url("imgs/adicao_categorias_teste.webp");
}

#renovacao-cnh {
  background-image: url("imgs/renovacao_cnh.webp");
}

#treinamento-habilitados {
  background-image: url("imgs/treinamento_habilitados.webp");
}
#cursos-especializados {
  background-image: url("imgs/segurando_cnh.webp");
}

#curso-reciclagem {
  background-image: url("imgs/curso_reciclagem2.webp");
}
#aulas-pcd {
  background-image: url("imgs/foto_pcd.webp");
}
.p-atencao {
  text-align: center;
  margin-top: 1rem;
  white-space: nowrap;
  padding-top: 70px;
  padding-bottom: 10px;
}
.span-atencao {
  color: var(--preto);
  font-weight: 800;
}
.ancora-atencao {
  color: var(--amarelo);
  transition: transform 0.3s ease;
}

.categorias {
  padding: 4rem 0;
  background-color: var(--amarelo);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--preto);
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: var(--cinza);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 10px;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.03);
}

.card-image {
  height: 14rem;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 1.5rem;
  color: #fff;
  background-color: var(--amarelo);
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--preto);
}

.card-text {
  color: var(--cinza);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  white-space: wrap;
  word-break: normal;
  hyphens: auto;
}

.card-price {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--cinza);
  margin-bottom: 1.5rem;
}

.cta-button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--cinza);
  color: var(--preto);
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  color: var(--amarelo);
  transform: scale(1.02);
}

/* colore em amarelo minhas sections pares (2ª, 4ª, 6ª) */
section:nth-child(even) {
  background-color: var(--cinza);
}
/* ==========================================================================
   Separação - Nossos serviços fim
   ========================================================================== */

/* ==========================================================================
   Separação - Sobre nós começo
   ========================================================================== */
.services-sobre {
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sobre {
  display: flex;
  align-items: center;
  max-width: 1200px;
  gap: 40px;
  justify-content: space-between;
}

.sobre p {
  white-space: wrap;
  text-align: justify;
  word-break: normal;
  hyphens: auto;
  margin-top: 20px;
}
#span-sobre{
  color: var(--amarelo);
}
.title h2 {
  font-size: 2.5rem;
  line-height: 1.6;
}
.title p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.img-sobre img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.img-sobre img {
  position: relative;
  max-width: 100%;
  height: auto;
  animation: flutuar2 2s ease-in-out infinite alternate;
  box-shadow: 0 0 8px #ffffff8e;
}

@keyframes flutuar2 {
  0% {
    top: 0;
  }
  100% {
    top: 20px;
  }
}

.btn-sobre a {
  display: inline-block;
  background-color: var(--amarelo);
  color: var(--preto);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 800;
  margin-top: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-sobre a:hover {
  background-color: var(--amarelo);
  color: var(--cinza);
  transform: scale(1.02);
}

/* ==========================================================================
   Separação - Sobre nós fim
   ========================================================================== */

/* ==========================================================================
   Separação - Testimonial começo
   ========================================================================== */

.depoimentos {
  padding: 80px;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 48px;
  font-weight: bold;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 48px;
  font-weight: bold;
}

.testimonial-card {
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--amarelo);
  background: #fff;
  margin: 10px;
  transition: all 0.3s ease-in-out;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.depoimentos-wrapper {
  display: flex;
  align-items: stretch; /* Faz os slides ficarem com mesma altura */
}

.swiper-slide {
  height: auto !important; /* Garante que a altura seja determinada pelo conteúdo */
  display: flex;
}

.testimonial-card i {
  color: var(--amarelo);
  font-size: 24px;
  margin-bottom: 16px;
  display: inline-block;
}

.mensagem {
  color: #4b5563;
  margin-bottom: 24px;
  /* font-size: 1.125rem; */
  line-height: 1.6;
  flex-grow: 1;
  text-align: justify;
  word-break: normal;
  hyphens: auto;
}

.mensagem,
p {
  font-size: 0.9rem;
}
.aluno-info {
  display: flex;
  align-items: center;
}

.aluno-info img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
}

.aluno-nome {
  font-weight: 600;
  color: #1f2937;
}

.aluno-curso {
  font-size: 0.875rem;
  color: var(--amarelo);
}

.span-title {
  color: var(--amarelo);
}

/* Estilos para o Swiper (Navegação) */
.swiper-depoimentos-pagination {
  text-align: center;
}

.swiper-depoimentos-button-next,
.swiper-depoimentos-button-prev {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  border: none;
  color: var(--amarelo);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.swiper-depoimentos-button-prev {
  left: 0px;
}

.swiper-depoimentos-button-next {
  right: 0px;
}

.swiper-depoimentos-button-next:hover,
.swiper-depoimentos-button-prev:hover {
  background-color: var(--cinza);
  transform: translateY(-50%) scale(1.1);
}

.swiper-depoimentos-button-next:focus-visible,
.swiper-depoimentos-button-prev:focus-visible {
  outline: 2px solid var(--amarelo);
  outline-offset: 2px;
}

.swiper-depoimentos-button-next.swiper-button-disabled,
.swiper-depoimentos-button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   Separação - Testimonial fim
   ========================================================================== */

/* ==========================================================================
   Separação - Localização começo
   ========================================================================== */

.localizacao {
  padding: 80px 0;
}

.localizacao .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.localizacao .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #1f2937;
}

.localizacao .mapa iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Separação - Localização fim
   ========================================================================== */

/* ==========================================================================
   Separação - Footer começo
   ========================================================================== */
.footer {
  background-color: var(--amarelo);
  color: var(--preto);
  padding: 50px 20px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--preto);
}

.footer-column p,
.footer-column a {
  font-size: 0.95rem;
  color: var(--cinza);
  text-decoration: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column a:hover {
  color: var(--preto);
  transition: 0.3s;
}

#footer-links-center,
#h3-link-rapido {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--cinza);
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-item i {
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--cinza);
}

.footer-links a:hover {
  color: var(--preto);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payment-methods img {
  width: 40px;
  height: auto;
}

  .social-icons i {
    margin: auto;
    font-size: 25px;
    
  }

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--cinza);
  color: var(--preto);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: var(--preto);
  color: var(--amarelo);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--preto);
  margin: 10px;
}
.span-atencao {
  font-weight: bold;
}

.footer-atencao {
  color: var(--preto);
  text-decoration: underline;
}

.footer-atencao:hover {
  color: var(--cinza);
  transition: 0.3s;
}

/* ==========================================================================
   Separação - Footer fim
   ========================================================================== */

.swiper {
  padding-bottom: 3rem;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  display: flex;
}

.img-slide img {
  width: 100vw;
  height: 600px;
  object-fit: cover;
}

/* ==========================================================================
   Media Queries para Responsividade
   ========================================================================== */

@media screen and (max-width: 480px) {
  .logo img {
    width: 200px;
    height: auto;
    margin-top: 10px;
  }

  .hamburguer {
    display: block;
  }

  .menu-desktop {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    height: 100vh;
    background-color: var(--cinza);
    z-index: 900;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
  }

  .menu-desktop.active {
    transform: translateX(0);
    width: 60vw;
  }

  .menu-desktop ul {
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    width: 100%;
  }

  .menu-desktop ul li a {
    color: var(--cinza);
  }

  .btn-orcamento {
    display: none;
  }

  .contato-menu-hamburguer {
    display: block;
  }

  .hamburguer.active {
    border-top-color: transparent;
  }
  .hamburguer.active::before {
    transform: rotate(135deg);
  }
  .hamburguer.active::after {
    transform: rotate(-135deg);
    position: relative;
    top: -8px;
  }

  .swiper-inicio img {
    height: 500px;
  }

  .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    color: var(--cinza);
    z-index: 2;
    text-align: center;
  }

  .text-overlay h2 {
    font-size: 26px;
    text-align: center;
    color: var(--cinza);
    padding-bottom: 10px;
    line-height: 1.2;
  }

  .text-overlay p {
    text-align: center;
    color: var(--cinza);
    font-size: 20px;
    line-height: 1.2;
  }

  .btn-orcamento-slide a {
    text-decoration: none;
    color: var(--preto);
  }
  .btn-orcamento-slide {
    top: 70%;
    left: 36%;
    transform: translateX(-50%);
  }

  .swiper-inicio-button-prev,
  .swiper-inicio-button-next {
    display: none;
  }
  /* ==========================================================================
   Separação - Melhor escolha começo
   ========================================================================== */

  .diferencial h3,
  .swiper-diferencial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .diferencial p {
    text-align: center;
    color: var(--preto);
    line-height: 1.4;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--preto);
    line-height: 1.2;
    padding: 0 1rem;
  }

  .section-title .high {
    color: var(--amarelo);
  }
  /* ==========================================================================
   Separação - Melhor escolha final
   ========================================================================== */
  .p-atencao {
    white-space: wrap;
  }
  /* ==========================================================================
   Separação - Nossos serviços começo
   ========================================================================== */

  /* ==========================================================================
   Separação - Nossos serviços final
   ========================================================================== */

  /* ==========================================================================
   Separação - Sobre nós começo
   ========================================================================== */
  .services-sobre {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .sobre {
    flex-direction: column;
  }

  .sobre p {
    white-space: wrap;
    text-align: justify;
    word-break: normal;
    hyphens: auto;
  }

  .img-sobre img {
    max-width: 400px;
  }

  /* ==========================================================================
   Separação - Sobre nós fim
   ========================================================================== */
  /* ==========================================================================
    TESTIMONIAL - COMEÇO
    ========================================================================== */
  .depoimentos {
    padding: 40px 15px;
  }
  /* .mensagem {
    margin-bottom: 24px;
    max-height: auto;
  } */
  .section-title {
    font-size: 1.8rem;
  }

  .aluno-info {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .aluno-info img {
    width: 60px;
    height: 60px;
    margin-right: 0;
  }

  .swiper-depoimentos-button-next,
  .swiper-depoimentos-button-prev {
    display: none;
  }

  .social-icons i {
    margin: auto;
    font-size: 25px;
    
  }
}

/* ==========================================================================
   Media Queries para Responsividade
   ========================================================================== */

/* Para telas de tablets (até 768px) */
@media screen and (max-width: 768px) {
  .hamburguer {
    display: block;
  }

  .menu-desktop {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    height: 100vh;
    background-color: var(--cinza);
    z-index: 900;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
  }

  .menu-desktop.active {
    transform: translateX(0);
  }

  .menu-desktop ul {
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    width: 100%;
    gap: 30px;
  }

  .menu-desktop ul li a {
    color: var(--preto);
  }

  .btn-orcamento {
    display: none;
  }

  .contato-menu-hamburguer {
    display: block;
  }

  .hamburguer.active {
    border-top-color: transparent;
  }
  .hamburguer.active::before {
    transform: rotate(135deg);
  }
  .hamburguer.active::after {
    transform: rotate(-135deg);
    position: relative;
    top: -8px;
  }
  /* --- Fim do Menu Hambúrguer --- */

  .logo img {
    width: 200px;
    height: auto;
    padding-top: 0;
  }

  header .interface {
    height: 60px;
    justify-content: space-between;
  }

  .swiper-inicio img {
    height: 500px;
  }

  .text-overlay h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .text-overlay p {
    font-size: 18px;
    line-height: 1.4;
  }

  .btn-orcamento-slide {
    top: 85%;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .sobre p {
    white-space: wrap;
    text-align: justify;
    word-break: normal;
    hyphens: auto;
  }

  #diferenciais,
  .depoimentos,
  .localizacao {
    padding: 60px 0;
  }

  #diferenciais,
  i,
  h3 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  #diferenciais,
  p {
    text-align: center;
    font-size: 1.1rem;
  }
  .depoimentos {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .aluno-info img {
    width: 70px;
    height: 70px;
  }

  .mensagem {
    font-size: 1rem;
    flex-grow: 1;
    text-align: justify;
    word-break: normal;
    hyphens: auto;
  }

  .footer-container {
    text-align: center;
  }
  .footer-item,
  .social-icons,
  .payment-methods {
    justify-content: center;
  }
}

@media screen and (max-width: 1024px) {
  header .interface {
    padding: 30px 20px;
  }

  .menu-desktop ul {
    gap: 25px;
  }

  header nav ul li a,
  .btn-orcamento a {
    font-size: 16px;
  }

  .text-overlay h2 {
    font-size: 40px;
  }

  .text-overlay p {
    font-size: 22px;
  }
  #diferenciais,
  i,
  h3 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  #diferenciais,
  p {
    text-align: center;
    font-size: 1.1rem;
  }
  .sobre {
    flex-direction: column;
    text-align: center;
  }

  .sobre p {
    white-space: wrap;
    text-align: justify;
    word-break: normal;
    hyphens: auto;
  }

  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
}

@media screen and (max-width: 1280px) {
  .mensagem {
    font-size: 1rem;
  }
}
