* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* Adicionar ao seu CSS */
body, html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.container, section, .carousel-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* CORES */
.branco {
  color: #ffffff;
}
  
.azul {
    color: #E1C424;
}
  
.vermelho {
    color: #E1C424;
}



/* CONTAINER E CONTEÚDO */
.content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* HEADER */
.main_header {
  background: #ffffff;
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.main_header.fixed {
  height: 70px;
}

/* LOGO */
.main_header_logo {
  height: 100px; 
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Move para a direita */
}

.main_header_logo img {
  margin-left: 10vh;
  height: 15vh; /* Aumentei a logo */
  max-width: 100%;
}

@media (max-width: 768px) {
  .main_header_logo img {
    height: 15vh;
    margin-left: 20px;
  }
}
/* NAVEGAÇÃO PRINCIPAL */
.main_header_nav {
  display: flex;
  align-items: center;
}

.main_header_nav ul {
  display: flex;
  list-style: none;
}

.main_header_nav_item {
  margin: 0 5px;
  position: relative;
}

.main_header_nav_item a {
  display: block;
  padding: 8px 15px;
  color: #161C1E;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.95em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}



/* Efeito de linha animada no hover */
.main_header_nav_item a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #E1C424;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main_header_nav_item a:hover {
  color: #E1C424;
}

.main_header_nav_item a:hover:after {
  width: 70%;
}

/* Botão Agendar */
.btn_agendar {
  background: #161C1E; /* Fundo escuro */
  color: #ffffff; /* Texto branco */
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn_agendar:hover {
  background: #E1C424; /* Fundo dourado */
  color: #161C1E; /* Texto escuro */
}



/* MENU MOBILE */
.mobile_action {
  width: 40px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.mobile_action span {
  display: block;
  width: 100%;
  height: 4px;
  background: #161C1E;
  transition: all 0.3s ease;
}

/* Quando o menu estiver ativo */
.mobile_action.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.mobile_action.active span:nth-child(2) {
  opacity: 0;
}

.mobile_action.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* SEÇÃO DE CHAMADA */
.section-chamada {
  padding: 0;
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  margin: 0; /* Sem margem */
  overflow: hidden; /* Evita overflow horizontal */
  height: 100vh; /* Ocupará 100% da altura da viewport */
}

.section-chamada .content {
  width: 100%;
  padding: 0;
  margin: 0; /* Sem margem */
  max-width: 100%; /* Permite que ocupe toda a largura */
  height: 100%; /* Ocupará 100% da altura do pai */
}

/* TOPO DA PÁGINA */
.topoPag {
  width: 100%;
  height: 100%; /* Ocupará 100% da altura do pai */
  background-color: transparent;
  position: relative;
  overflow: hidden;
  float: none;
  transition: all 500ms;
}

/* Máscara do topo */
.topoPag .mascara {
  overflow: hidden;
  position: relative;
  width: 100%;
  
  margin: 0; /* Sem margem */
}

/* Centraliza conteúdo */
.topoPag .centraliza {
  width: 90%;
  height: auto;
  top: 26%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 1; /* Garante que o texto fique acima da imagem */
}

/* Imagem do topo */
.topoPag img {
  width: 100%;
  height: 90vh;
  object-fit: cover; /* Isso garante que a imagem cubra toda a área */
  height: 100vh; /* Alterado para 100vh para ocupar toda a altura da viewport */
  display: block;
}
  
/* TEXTOS DO TOPO */
.topoPag .centraliza h1 {
  width: 100%;
  font-size: 3em; /* Aumentei para 3em para deixar bem maior */
  float: none; /* Removido float para evitar problemas de centralização */
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  text-shadow: 2px 1px 5px #535353;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px; /* Espaço entre o título e o parágrafo */
}

.topoPag .centraliza p {
  width: 100%;
  font-size: 1.8em; /* Aumentei para 1.8em para deixar maior */
  float: none; /* Removido float para evitar problemas de centralização */
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  text-shadow: 1px 1px 3px #535353; /* Adicionei sombra para melhorar legibilidade */
}

/* Esconde o elemento <b> dentro do parágrafo */
.topoPag .centraliza p b {
  display: none;
}

.banner {
  height: 90vh;
  object-position: center; /* Garante que a imagem seja centralizada */
}

/* Ajuste adicional para garantir centralização perfeita */
.topoPag .centraliza {
  width: 90%;
  text-align: center;
  top: 50%; /* Centraliza verticalmente */
  transform: translate(-50%, -50%); /* Ajusta para centralização perfeita */  
  left: 50%;
  position: absolute;
}

/* BOTÕES DE AGENDAMENTO */
.botoes-agendamento {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px; /* Espaço entre os botões */
  flex-wrap: wrap; /* Permite quebrar linha no mobile */
}

.botao {
  padding: 12px 24px;
  background-color: #E1C424; /* Cor de fundo do botão */
  color: #161C1E; /* Cor do texto do botão */
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.3s;
}

.botao:hover {
  background-color: #ecd241; /* Cor de fundo no hover */
  transform: scale(1.05); /* Efeito de leve aumento no hover */
}

.botao.whatsapp {
  background-color: #E1C424; /* Verde do WhatsApp */
}

.botao.whatsapp:hover {
  background-color: #ecd241;
}

/* Responsivo: Empilha os botões no celular */
@media (max-width: 600px) {
  .botoes-agendamento {
    flex-direction: column;
    align-items: center;
  }

  .botao {
    width: 80%; /* Botões mais largos no mobile */
    text-align: center;
  }
}

/*SOBRE NOS*/

.sobre {
  background-color: #f9f9f9;
}

.sobre-texto > h2 {
  text-align: center;
  font-size: 2em;
  margin-top: 0vh;
  color: #E1C424;
  padding-top: 5vh;
}

.sobre-texto h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #161C1E;
  margin: 0.8rem auto;
}

.infografico {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-top: 20px;
}

.info-box {
  text-align: center;
  padding: 20px 10px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-box h2 {
  font-size: 3em;
  color: #161C1E;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.info-box p {
  font-size: 1.1em;
  color: #E1C424;
  font-family: 'Montserrat', sans-serif;
}

/* Responsividade */
@media (max-width: 900px) {
  .infografico {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .infografico {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-box {
    padding: 15px 8px;
  }

  .info-box h2 {
    font-size: 2em;
  }

  .info-box p {
    font-size: 0.95em;
  }
}


/* Seção de serviços */
.services-section {
  background-color: #f9f9f9;
  background-image: url("../uploads/background/bg-barber.png");
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 6rem 0 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.services-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  position: relative;
}

/* Título da seção */
.services-title {
  color: #E1C424;
  font-size: 3rem;
  text-align: center;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  z-index: 10;
}

.services-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #161C1E;
  margin: 0.8rem auto;
}

/* Carrossel */
.carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Cards dos serviços */
.service-card {
  width: calc(33.333% - 2rem);
  min-width: calc(33.333% - 2rem);
  margin: 0 1rem 2rem;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-10px);
}

/* Container da imagem */
.service-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background-color: #939393;
  height: 250px;
}

/* Imagem do serviço */
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1);
}

/* Overlay de hover */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: background 0.4s ease;
  z-index: 2;
  border-radius: 10px 10px 0 0;
}

.service-card:hover .hover-overlay {
  background: rgba(225, 196, 36, 0.36);
}

/* Ícone e título no hover */
.service-icon,
.service-hover-title {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.5s ease, top 0.5s ease;
}

.service-icon {
  top: 18%;
  font-size: 3rem;
}

.service-hover-title {
  top: 35%;
  font-size: 1rem;
  text-decoration: none;
}

.service-card:hover .service-icon {
  opacity: 1;
  top: 23%;
}

.service-card:hover .service-hover-title {
  opacity: 1;
  top: 33%;
}

/* Detalhes do serviço */
.service-details {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Ocupa o espaço entre imagem e botão */
}

.service-name {
  color: #161C1E;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.service-tagline {
  color: #E1C424;
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.8rem;
}

.service-description {
  color: #939393;
  font-size: 0.9rem;
  line-height: 1.6; /* Aumentei um pouco o line-height */
  flex: 1;
}

/* Navegação do carrossel */
.carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: #E1C424;
}

/* Responsividade */
@media screen and (max-width: 992px) {
  .service-card {
      width: calc(50% - 2rem);
      min-width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 768px) {
  .service-card {
      width: calc(100% - 2rem);
      min-width: calc(100% - 2rem);
  }
  
  .services-title {
      font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .services-title {
      font-size: 2rem;
  }
  
  .service-details {
      height: auto;
      min-height: 180px;
  }
}
/* Botão Agendar por card */
.service-button-wrapper {
  margin-top: 3vh; /* Joga o botão para o final do card */
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
}


.agendar-btn {
  background-color: #E1C424;
  color: #161C1E;
  padding: 0.6rem 1.4rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.agendar-btn:hover {
  background-color: #cfae1d;
}

/* Setas laterais fixas */
.carousel {
  position: relative;
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.arrow {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  border-radius: 5px;
  transition: background 0.3s;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* Agora as setas aparecem em todas as telas */
@media screen and (max-width: 768px) {
  .arrow {
    font-size: 1.5rem;
    padding: 0.3rem 0.8rem;
  }
}

/* ===== BANNER ===== */
.banner-donsclub img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

/* ===== EXPLICAÇÃO DON'S CLUB ===== */
/* ===== EXPLICAÇÃO DON'S CLUB ===== */
.section-explicacao {
  background-color: #161C1E;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-explicacao .container {
  max-width: 900px;
  margin: 0 auto;
}

.section-explicacao h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
}

.section-explicacao h2 strong {
  color: #E1C424;
}

.section-explicacao h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #fff;
  margin: 12px auto 0 auto;
}

.section-explicacao p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
  text-align: justify;
}

.section-explicacao p em {
  display: block;
  margin-top: 30px;
  font-style: italic;
  text-align: center;
  color: #fff;
}

.beneficios-wrapper {
  position: relative;
  padding-left: 30px;
  margin: 40px 0;
}

.beneficios-wrapper::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 1;
  background-color: #E1C424;
}

.beneficios-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.beneficios-lista li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ccc;
}

.beneficios-lista li::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}

/* Responsivo */
@media (max-width: 600px) {
  .section-explicacao h2 {
    font-size: 2rem;
  }

  .section-explicacao p,
  .beneficios-lista li {
    font-size: 1rem;
    text-align: left;
  }
}


/* ===== SEÇÃO PLANOS GENÉRICA ===== */
.section-planos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  position: relative;
}

.title.black {
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 10px 20px;
  font-size: 3rem;
  margin-top: 3vh;
  text-align: center; /* Garantir que o texto está centralizado */
  width: auto; /* Permitir que a largura se ajuste ao conteúdo */
}

.title.azul {
  margin-bottom: 0;
  position: absolute;
  top: 0vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 10px 20px;
  font-size: 3rem;
  margin-top: 3vh;
  text-align: center; /* Garantir que o texto está centralizado */
  width: auto; /* Permitir que a largura se ajuste ao conteúdo */
}

.subtitle {
  font-size: 1.4rem;
  text-align: center;
  color: #161c1e79;
  margin-top: 4vh;
  margin-bottom: 2vh;
  opacity: 0.8;
  position: absolute;
  top: 8vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  white-space: nowrap; /* Impede quebra de linha */
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 991px) {
  .subtitle {
    font-size: 1.2rem;
    top: 9vh;
  }
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 1.1rem;
    top: 10vh;
  }
}

@media (max-width: 480px) {
  .subtitle {
    font-size: 1rem;
    top: 0vh;
  }
}

.subtitle-black {
  font-size: 1.4rem;
  text-align: center;
  color: #161c1e79;
  margin-top: 4vh;
  margin-bottom: 2vh;
  opacity: 0.85;
  position: absolute;
  top: 8vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  white-space: nowrap; /* Impede quebra de linha */
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 991px) {
  .subtitle-black {
    font-size: 1.2rem;
    top: 9vh;
  }
}

@media (max-width: 768px) {
  .subtitle-black {
    font-size: 1.1rem;
    top: 10vh;
  }
}

@media (max-width: 480px) {
  .subtitle-black {
    font-size: 1rem;
    top: -4vh;
  }
}

.planos-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
  margin-top: 13vh;
  margin-left: auto; /* Auto margins para centralização */
  margin-right: auto; /* Auto margins para centralização */
}

.planos-container1 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
  margin-top: 13vh;
  margin-left: auto; /* Auto margins para centralização */
  margin-right: auto; /* Auto margins para centralização */
}

.plano-box {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex; /* Adicionado para estruturar internamente */
  flex-direction: column; /* Adicionado para estruturar internamente */
}

.plano-box:hover {
  transform: translateY(-10px);
}

.plano-box.destaque {
  transform: scale(1.05);
  z-index: 2;
}

.plano-box.destaque:hover {
  transform: scale(1.05) translateY(-10px);
}

.plano-box.destaque:before {
  content: "MAIS POPULAR";
  position: absolute;
  top: 30px;
  right: -40px;
  padding: 8px 40px;
  font-size: 0.6rem;
  font-weight: bold;
  z-index: 3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: rotate(45deg);
}

/* ===== PLANO STRUCTURE ===== */
.plano-header {
  padding: 2rem 1.5rem;
  text-align: center;
}

.plano-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.plano-preco {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.plano-preco span {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 400;
}

.plano-body {
  padding: 2rem 1.5rem;
  flex-grow: 1;
}

.plano-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.plano-lista li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plano-lista li:last-child {
  border-bottom: none;
}

.plano-lista li .icon {
  margin-right: 10px;
  flex-shrink: 0;
}

.icon-check:before {
  content: "✓";
  font-weight: bold;
  font-size: 1.2rem;
}

.icon-times:before {
  content: "×";
  color: #e83654;
  font-weight: bold;
  font-size: 1.2rem;
}

.plano-footer {
  padding: 0 1.5rem 2rem 1.5rem;
  text-align: center;
}

.plano-footer .btn {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ESTILO ESPECÍFICO – BLACK ===== */
.section-planos-black {
  background-color: #f5f5f3;
}

.section-planos-black .title.azul {
  color: #161C1E;
  margin-top: 1vh;
}

.section-planos-black .plano-box {
  background-color: #fff;
}

.section-planos-black .plano-header {
  background-color: #161C1E;
  color: white;
}

.section-planos-black .icon-check:before {
  color: #E1C424;
}

.section-planos-black .plano-footer .btn {
  background-color: #161C1E;
  color: white;
}

.section-planos-black .plano-footer .btn:hover {
  background-color: #E1C424;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 104, 142, 0.3);
}

.section-planos-black .plano-box.destaque {
  border: 2px solid #E1C424;
}

.section-planos-black .plano-box.destaque:before {
  background-color: #E1C424;
  color: white;
}

/* ===== ESTILO ESPECÍFICO – SMART ===== */
.section-planos-smart {
  background-color: #f5f5f5;
}

.section-planos-smart .title.azul {
  color: #E1C424;
}

.section-planos-smart .plano-box {
  background-color: #ffffff;
}

.section-planos-smart .plano-header {
  background-color: #E1C424;
  color: white;
}

.section-planos-smart .icon-check:before {
  color: #161C1E;
}

.section-planos-smart .plano-footer .btn {
  background-color: #E1C424;
  color: white;
}

.section-planos-smart .plano-footer .btn:hover {
  background-color: #161C1E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(164, 182, 0, 0.3);
}

.section-planos-smart .plano-box.destaque {
  border: 2px solid #161C1E;
}

.section-planos-smart .plano-box.destaque:before {
  background-color: #161C1E;
  color: white;
}

/* ===== MEDIA QUERIES PARA RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
  .planos-container, .planos-container1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .planos-container, .planos-container1 {
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .plano-box {
    min-width: 260px;
  }
  
  .title.black, .title.azul {
    font-size: 2.5rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-planos {
    min-height: auto;
    padding: 80px 0 40px;
    overflow: hidden;
  }
  
  .title.black {
    position: absolute;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 2.2rem;
    width: 100%;
    text-align: center;
  }

  .title.azul {
    position: absolute;
    margin-top: -10vh;
    font-size: 2.2rem;
    width: 100%;
    text-align: center;
  }
  
  /* Transformação dos containers em carrosseis */
  .planos-container, .planos-container1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-top: 0;
    width: 100%;
    padding: 0 20px;
    gap: 20px;
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none; /* Para IE e Edge */
  }
  
  /* Esconder a barra de rolagem */
  .planos-container::-webkit-scrollbar, .planos-container1::-webkit-scrollbar {
    display: none;
  }
  
  /* Configuração dos cards/planos */
  .plano-box {
    flex: 0 0 80%;
    max-width: 280px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    scroll-snap-align: center;
    width: 100%;
  }
  
  /* Manter o destaque nos planos populares */
  .plano-box.destaque {
    transform: scale(1.05);
    margin-top: 0;
    margin-bottom: 20px;
  }
  
  .plano-box.destaque:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  /* Indicadores de scroll (pontos de navegação) */
  .scroll-indicators1 {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    margin-top: 83vh;
    margin-left: 40%;
  }

  .scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    margin-top: 87vh;
    margin-left: 40%;
  }
  
  
  .scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.2);
    cursor: pointer;
  }
  
  .scroll-dot.active {
    background-color: #E1C424;
  }
  
  .section-planos-black .scroll-dot.active {
    background-color: #161C1E;
  }
}

@media (max-width: 480px) {
  .section-planos {
    padding: 60px 0 30px;
  }
  
  .planos-container1 {
    padding: 0 10px;
    margin-top: 6vh;
  }

  .planos-container {
    padding: 0 10px;
    margin-top: 2vh;
  }
  
  .plano-box {
    flex: 0 0 85%;
    max-width: 60px;
    margin-top: 10px;
  }

  .plano-box.destaque {
    padding: auto;
    margin-top: 1vh;
  }
  
  .title.black {
    font-size: 1.8rem;
    position: absolute;
    text-align: center;
    margin-top: -7vh;
  }

  .title.azul {
    font-size: 1.8rem;
    position: absolute;
    text-align: center;
    margin-top: 2vh;
  }
  
  .plano-header h3 {
    font-size: 1.3rem;
  }
  
  .plano-preco {
    font-size: 2rem;
  }
  
  .plano-box.destaque:before {
    top: 20px;
    right: -35px;
    padding: 5px 30px;
    font-size: 0.5rem;
    
  }
}

/* ===== PERGUNTAS FREQUENTES ===== */
.section-faq {
  padding: 4rem 2rem;
  background-color: #f5f5f3;
}

.section-faq h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #E1C424;
  margin-bottom: 2rem;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 1rem;
  border-bottom: 1px solid #ddd;
}

.faq-item button:hover {
  transition: 0.5s;
  color: #E1C424;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
  color: #161C1E;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  color: #E1C424;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 1rem;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1rem;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .planos-container {
    gap: 20px;
  }

  .plano-box {
    min-width: 250px;
  }

  .section-explicacao h2 {
    font-size: 2rem;
  }

  .section-explicacao p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .plano-box.destaque {
    transform: scale(1);
  }

  .plano-box.destaque:hover {
    transform: translateY(-10px);
  }

  .plano-box {
    flex: 0 0 100%;
    max-width: 450px;
    margin-bottom: 20px;
  }

  .title.azul {
    font-size: 2rem;
    top: -60px;
  }

  .section-faq h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-planos {
    padding: 3rem 0;
  }

  .plano-header {
    padding: 1.5rem 1rem;
  }

  .plano-body,
  .plano-footer {
    padding: 1.5rem 1rem;
  }

  .plano-preco {
    font-size: 2rem;
  }

  .section-explicacao {
    padding: 3rem 1rem;
  }

  .section-faq {
    padding: 3rem 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}


/* ===== SEÇÃO UNIDADES ===== */
.section-unidades {
  background-color: #161C1E;
  min-height: 60vh; /* Garante que ocupe a tela inteira */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza horizontalmente */
  justify-content: center; /* Centraliza verticalmente */
  padding: 6rem 0;
  text-align: center;
}

/* Estilização específica para o título desta seção */
.title-unidades {
  color: #E1C424;
  font-size: 3rem;
  position: absolute;
  margin-top: -60vh;
  margin-left: 37.5vh;
}

.title-unidades:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #E1C424;
  margin: 10px auto 0;
  border-radius: 2px;
}

.unidades-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  margin-left: 2vh;
  margin-top: 3vh;
}

.unidade-box {
  background: #22292B;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  text-align: left;
}

.unidade-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.unidade-header {
  position: relative;
}

.unidade-header h3 {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.unidade-foto {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.unidade-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unidade-box:hover .unidade-foto img {
  transform: scale(1.1);
}

/* Informações da Unidade */
.unidade-info {
  padding: 20px;
}

.unidade-endereco {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.unidade-endereco i {
  font-size: 1.3rem;
  color: #E1C424;
}

.unidade-contato {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contato-item i {
  font-size: 1.2rem;
  color: #E1C424;
}

.contato-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contato-item a:hover {
  color: #E1C424;
}

/* Botões */
.unidade-botoes {
  display: flex;
  gap: 10px;
}

.btn-agendar, 
.btn-mapa {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
}

.btn-agendar {
  background: #E1C424;
  color: #161C1E;
}

.btn-mapa {
  background: #fff;
  color: #161C1E;
}

.btn-agendar:hover {
  background: #cfa91f;
  transform: scale(1.05);
}

.btn-mapa:hover {
  background: #ddd;
  transform: scale(1.05);
}

/* Inicia invisível */
.unidade-box.fade-out {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity;
}

/* Quando entra na tela */
.unidade-box.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade */
@media (max-width: 480px) {
  .section-unidades {
    padding-top: 3rem;
    position: relative;
  }

  .unidades-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    margin-left: 0;
    margin-top: 5rem; /* Espaço para o título acima */
  }

  .title-unidades {
    position: absolute;
    font-size: 2rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    margin-top: 0.1rem;
    margin-left: auto;
    text-align: center;
    z-index: 10; /* Garantir que apareça acima de outros elementos */
  }
  
  .unidade-box {
    max-width: 100%;
  }
}

/* ==== SEÇÃO CURSOS ==== */ 

:root {
  --cor-primaria: #161C1E;
  --cor-secundaria: #34495e;
  --cor-destaque: #E1C424;
  --cor-fundo: #f9f9f9;
  --cor-texto: #333;
  --sombra-padrao: 0 4px 6px rgba(0,0,0,0.1);
}

.section-cursos {
  position: relative;
  padding: 12rem 0 4rem;
  background-color: #f9f9f9;
}

.section-cursos .title,
.section-cursos .cursos-intro {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 10;
  color: #E1C424;
}

.section-cursos .title {
  margin-top: -23vh;
  font-size: 3rem;
  font-weight: bold;
}

.section-cursos .cursos-intro {
  top: 20%;
  margin-top: -23vh;
  font-size: 1rem;
  max-width: 100%;
  color: #161C1E;
}

.section-cursos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-cursos .content {
  position: relative;
  z-index: 5;
}

/* Alinha os cursos corretamente */
.cursos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.curso-box {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--sombra-padrao);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.curso-box:hover {
  transform: scale(1.05);
}

/* Ajuste para as imagens em geral */
.curso-img {
  position: relative;
  overflow: hidden;
  height: 250px;
  width: 100%;
}

.curso-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

.curso-box:hover .curso-img img {
  transform: scale(1.1);
}

.curso-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--cor-destaque);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
}

.curso-info {
  padding: 1.5rem;
}

.curso-info h3 {
  color: var(--cor-primaria);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.curso-info p {
  color: var(--cor-texto);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.subtitulo-curso {
  font-size: 1rem;
  font-style: italic;
  color: #E1C424;
  margin-bottom: 1rem;
}

.curso-topicos {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.curso-topicos li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--cor-secundaria);
}

.curso-topicos li i {
  color: var(--cor-destaque);
  margin-right: 0.75rem;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #E1C424;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* Impede quebra de linha */
}

.btn-whatsapp:hover {
  background-color: #161C1E;
}

.btn-whatsapp i {
  margin-right: 0.5rem;
}

/* Media query para tablets */
@media (max-width: 992px) {
  .section-cursos {
    padding: 5rem 1.5rem 3rem;
  }
  
  .section-cursos .title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.5rem;
  }
  
  .section-cursos .cursos-intro {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Media query para celulares grandes e tablets */
@media (max-width: 768px) {
  .section-cursos {
    padding: 4rem 1rem 2rem;
  }
  
  .section-cursos .title {
    font-size: 2rem;
  }
  
  /* Configuração de carrossel horizontal para telas menores */
  .cursos-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    width: calc(100% + 1rem);
    /* Esconde a barra de rolagem mas mantém a funcionalidade */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .cursos-container::-webkit-scrollbar {
    display: none;
  }
  
  .curso-box {
    flex: 0 0 85%;
    max-width: 85%;
    margin: 0 0.5rem;
    scroll-snap-align: center;
  }
  
  /* Ajusta o hover em mobile para não ter escala */
  .curso-box:hover {
    transform: none;
  }
  
  /* Mostra os indicadores de navegação */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background-color: var(--cor-destaque);
    width: 10px;
    height: 10px;
  }
}

/* Media query para celulares menores */
@media (max-width: 480px) {
  .section-cursos {
    padding: 3rem 1rem 1.5rem;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: auto;
  }
  
  .section-cursos .title {
    font-size: 1.8rem;
    position: absolute;
    top: -5%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-top: 1rem;
    padding: 0 1rem;
    text-align: center;
  }
  
  .section-cursos .cursos-intro {
    font-size: 0.95rem;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin-top: 10px;
    margin-left: 18px;
    text-align: justify;
  }
  
  .cursos-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-top: 50%;
    padding: 0.5rem;
    gap: 1rem;
    /* Esconde a barra de rolagem mas mantém a funcionalidade */
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
  }
  
  .curso-box {
    flex: 0 0 auto;
    width: 85%;
    margin: 0;
    scroll-snap-align: center;
    transform: none;
  }
  
  .curso-info {
    padding: 1rem;
  }
  
  .curso-info h3 {
    font-size: 1.2rem;
  }
  
  .btn-whatsapp {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Estilos específicos para o modo carrossel */
.is-mobile-view .curso-box {
  transition: none;
}



/* ==== SEÇÃO DEPOIMENTOS ==== */
.depoimentos-container {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.depoimento {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  margin: 1rem auto;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.depoimentos-container {
  background-color: #161C1E;
  padding: 4rem 0;
  text-align: center;
}

.depoimentos-container .title {
  font-size: 3rem; /* Ajusta o tamanho da fonte */
  color: #E1C424; /* Mantém a cor branca */
  text-align: left; /* Centraliza o título */
  max-width: 700px; /* Define um limite para evitar que o texto fique muito largo */
  margin: 0 auto 20px; /* Centraliza e adiciona espaçamento inferior */
  line-height: 1.3; /* Ajusta a altura da linha para manter o texto legível */
  word-wrap: break-word; /* Garante que o texto quebre corretamente */
  margin-left: -20vh;
  margin-right: 1vh;
}


/* Carrossel de depoimentos */
.depoimento-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  
}

.depoimento-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.depoimento-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Estilos dos depoimentos */
.depoimento-slide {
  min-width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.depoimento-texto {
  position: relative;
  padding-bottom: 15px;
}

.depoimento-texto p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.depoimento-autor img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.depoimento-autor h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 3px;
}

.depoimento-autor span {
  color: #a0a0a0;
  font-size: 0.8rem;
}

.estrelas {
  margin: 5px 0;
}

.estrelas span {
  color: #FFD700; /* amarelo dourado */
  font-size: 1rem;
  margin-right: 2px;
}

/* Media Query para telas menores */
@media screen and (max-width: 768px) {
  .depoimentos-container .title {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    font-size: 2.2rem;
    max-width: 100%;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
  }
  
  .depoimento-slider-container {
    padding: 0 1rem;
    margin-top: 2rem;
  }
}

/* Para telas ainda menores */
@media screen and (max-width: 480px) {
  .depoimentos-container .title {
    font-size: 1.8rem;
    position: absolute; /* Mudei para relative para evitar problemas de layout */
    margin-top: -40vh;
    text-align: center;
  }
  
  .depoimentos-container {
    padding: 3rem 1rem;
    height: auto; /* Altura automática para acomodar todo o conteúdo */
    min-height: 50vh; /* Altura mínima caso o conteúdo seja pequeno */
    width: 100%;
  }
  
  .depoimento-slide {
    padding: 15px;
    margin-top: 10vh; /* Removido o margin-top fixo */
    overflow: visible; /* Garante que o conteúdo não seja cortado */
    width: 1vh;
    height: 40vh;
    }
  
  .depoimento-texto p {
    font-size: 0.95rem; /* Ligeiramente menor para caber melhor */
    height: auto;
    height: 11vh;
    margin-top: 1vh;
  }
  
  .depoimento-autor {
    padding-top: 12px;
    margin-top: 10vh
  }
  
  .depoimento-autor img {
    width: 40px;
    height: 40px;
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}


/* ==== FOOTER ==== */
.main-footer {
  background: #161C1E;
  color: white;
  padding: 3rem 1rem;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo e descrição */
.footer-logo {
  max-width: 250px;
  text-align: center;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Links de navegação */
.footer-nav h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 5px;
}

.footer-nav ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-nav ul li a:hover {
  opacity: 1;
}

/* Contatos */
.footer-contact p {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  opacity: 0.8;
  margin: 0.5rem 0;
}


/* Botão de voltar ao topo */
.btn-topo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #E1C424;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  display: none; /* Oculta até o usuário rolar */
  transition: opacity 0.3s;
}

.btn-topo:hover {
  opacity: 0.8;
}

/* Rodapé final */
.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.footer-bottom a:hover {
  opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: center;
  }

  .footer-contact p {
      justify-content: center;
  }
}

  

/* COPYRIGHT DO FOOTER */

.main_footer_copy {
    width: 100%;
    float: left;
    text-align: center;
}
  
.main_footer_copy .content {
    padding: 1.2em 0 !important;
}
  
.main_footer_copy p {
    font-family: 'open_sanslight';
    font-size: 0.95em;
    color: #e1e0e0;
    float: left;
}
  
.main_footer_copy .t-copy-footer {
    float: left;
    width: 100%;
    margin-bottom: 3px;
}

.main_footer_copy .by {
    float: left;
    width: 100%;
    font-size: 0.95em;
    color: #fff;
}
  
.main_footer_copy .by a {
    text-decoration: none;
    color: #fff;
    display: inline;
}
  
.main_footer_copy .by a:hover {
    text-decoration: underline;
    color: #4a688e;
}
  
.main_footer_copy .by i {
    font-size: 0.96em;
    margin-right: 3px;
    color: #4a688e;
}



/* Responsivo melhorado para o footer */
@media (max-width: 992px) {
  .footer-container {
    gap: 1.5rem;
  }
  
  .footer-logo, .footer-nav, .footer-contact {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 2rem 1rem;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-logo {
    margin: 0 auto;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer-nav ul li {
    margin: 0 0.5rem;
  }
  
  .btn-topo {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
  }
  
  .main_footer_copy .content {
    padding: 0.8em 0 !important;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 1.5rem 0.8rem;
  }
  
  .footer-container {
    gap: 1rem;
  }
  
  .footer-logo, .footer-nav, .footer-contact {
    width: 100%;
  }
  
  .footer-logo img {
    width: 80px;
  }
  
  .footer-nav h4, .footer-contact h4 {
    font-size: 1.1rem;
  }
  
  .footer-nav ul {
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .footer-nav ul li {
    margin: 0;
  }
  
  .footer-nav ul li a, .footer-contact p {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    margin-top: 1.5rem;
  }
  
  .btn-topo {
    padding: 6px 10px;
    font-size: 0.9rem;
    display: none; /* Oculta até o usuário rolar */
    position: fixed;
    transition: opacity 0.3s;
  }
  
  .main_footer_copy p, .main_footer_copy .by {
    font-size: 0.85em;
  }
}
  

  
/* RESPONSIVIDADE */
  
/* MEDIA QUERIES - header */
/* Menu Mobile (inicialmente escondido em telas grandes) */
@media (max-width: 768px) {
  .main_header_nav {
    position: fixed;
    top: 0;
    left: -50%; /* Começa fora da tela */
    width: 50%;
    height: 100vh; /* Ocupa metade da tela */
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Move os itens para cima */
    align-items: center;
    padding-top: 40px; /* Adiciona espaçamento no topo */
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out;
  }

  .main_header_nav.active {
    transform: translateX(100%); /* Move para dentro da tela */
  }

  /* Ajustando os itens do menu */
  .main_header_nav ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .main_header_nav_item {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .main_header_nav_item a {
    display: block;
    padding: 10px;
    width: 100%;
    color: #161C1E;
    font-size: 1.1em;
  }
 }

 /* Botão Agendar dentro da barra lateral */
 .btn_agendar {
  background: #E1C424;
  color: #161C1E;
  font-weight: bold;
  padding: 10px;
  width: 100%; /* Mantém o botão dentro da barra */
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s ease;
  margin-top: 2px; /* Adiciona espaçamento */
 }

 .btn_agendar:hover {
  background: #161C1E;
  color: #E1C424;
 }
 
 /* Ícone do Menu Mobile */
 .mobile_action {
  width: 40px;
  height: 30px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 110;
  position: relative;
 }

 .mobile_action span {
  display: block;
  width: 100%;
  height: 4px;
  background: #161C1E;
  transition: all 0.3s ease;
 }

 /* Exibir apenas em telas menores */
 @media (max-width: 768px) {
  .mobile_action {
    display: flex;
  }
 }

 /* Animação do Ícone quando ativo */
 .mobile_action.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
 }

 .mobile_action.active span:nth-child(2) {
  opacity: 0;
 }

 .mobile_action.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 480px) {
.btn_agendar {
  background: #E1C424;
  color: #161C1E;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s ease;
  margin-top: 2px; /* Adiciona espaçamento */
  margin-left: -5px;
 }
}