@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --text-dark: #000000;
  --text-light: #727274;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Montserrat", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


/* Sobreposição com opacidade */



.label {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1rem;
    font-family: 'Ancizar Serif', serif;
  /* font-weight: bold; */
  color: white;
  text-shadow: 0 0 4px black;
  z-index: 2;
}


.btn:hover {
  color: var(--text-dark);
  background-color: var(--extra-light);
}

img {

  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;
}

 body {
  font-family: "Poppins", sans-serif;
} 



nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  z-index: 9;
  
}


.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.nav__logo img {
  max-width: 150px;
}
.logo {
  max-width: 110px; /* ajuste conforme necessário */
  margin: 0 auto 20px;
  display: block;
}

.logo-dark {
  display: none;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--text-dark);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 500;
  white-space: nowrap;
  color: var(--white);
  transition: 0.3s;
}

.nav__links .btn {
  padding-inline: 1.5rem;
  color: var(--text-dark);
  background-color: var(--white);
  border-radius: 5px;
}

/* HEADER  */

.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/back3.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

}

.header__container {
  max-width: 900px;
  padding-block: 8rem 10rem;
  text-align: center;
}

.header__container h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.header__container h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.header__container p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: var(--white);
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__image img {
  max-width: 500px;
  margin-inline: auto;
  transform: translateY(-8rem);
}
/* // */

.sessao-apresentacao {
  text-align: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.frase-destaque {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards por linha */
  gap: 20px;
}

.card-beneficio {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 30px 20px 20px 20px;
  text-align: left;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
  position: relative;
}

/* Sombra apenas nos cards brancos */
.card-beneficio:not(.destaque) {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* HOVER — efeito invertido */
.card-beneficio:not(.destaque):hover {
  background-color: #000;
  color: #fff;
}

.card-beneficio.destaque {
  background-color: #000;
  color: #fff;
}

/* HOVER no destaque → fica branco */
.card-beneficio.destaque:hover {
  background-color: #fff;
  color: #000;
}

/* Ícones herdam a cor do texto */
.icon-beneficio {
  font-size: 24px;
  color: inherit;
  transition: color 0.3s ease;
}

.card-beneficio span {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}


/* Sombra apenas nos brancos (todos exceto destaque) */
.card-beneficio:not(.destaque) {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-beneficio:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-beneficio span {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.card-beneficio.destaque {
  background-color: #000;
  color: #fff;
  /* sem sombra */
}


.card-beneficio:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-beneficio span {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.card-beneficio.destaque {
  background-color: #000;
  color: #fff;
}

.icon-beneficio {
  font-size: 24px;
  color: inherit;
}

/* Responsivo: 1 card por linha no mobile */
@media (max-width: 768px) {
  .grid-beneficios {
    grid-template-columns: 1fr;
  }
  .frase-destaque {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: bold;
}

}

/*  */

/* flexibilidade */

.sessao-flexibilidade {
  position: relative;
  width: 100%;
  height: 700px;
  background-image: url('/assets/fot.png');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 13%;
  overflow: hidden;

}

.sessao-flexibilidade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0, 0, 0, 1) 0%,     /* totalmente preto */
    rgba(0, 0, 0, 0.92) 55%,    /* mantém preto até 60% da largura */
    rgba(0, 0, 0, 0.6) 70%,  /* começa a suavizar */
    rgba(0, 0, 0, 0.3) 85%,  /* mais claro */
    rgba(0, 0, 0, 0) 100%    /* totalmente transparente */
  );
  z-index: 0;
}


.conteudo {
  position: relative;
  max-width: 600px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.titulo-flex {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.topico {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icone-circulo {
  width: 70px;
  height: 70px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.icone-circulo img{
  width: 50px;
  height: 50px;

}

.topico p {
  margin: 0;
  line-height: 1.6;
  font-size: 1.2rem;
}

.flex__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.flex__list h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;          
  font-weight: 600;
  margin: 0 0 8px 0;
  color: white;
}

.flex__list p {
  margin: 0;
  font-size: 1.2rem;             /* igual ao .section__description */
  line-height: 1.6;
  text-align: left;
  color: white;
}

.flex__list i {
  font-size: 20px;
  color: var(--secondary-color, #ffffff); /* usa a mesma cor de destaque, se definida */
}





/*  */


.section__container {
  width: calc(100% - 20px);          
  max-width: var(--max-width);      
  margin-left: auto;
  margin-right: auto;

}
.section__container_one {
  width: calc(100% - 20px);          
  max-width: var(--max-width); 
 
  margin-left: auto;
  margin-right: auto;

}
.section__container_two{
  width: calc(100% - 20px);          
  max-width: var(--max-width);      
  margin-left: auto;
  margin-right: auto;


}



.section__subheader {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

.section__header {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}


.section__description {
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.75rem;
  text-align: center;

}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color:var(--text-dark);
  background-color:white ;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--text-light);
}
.banner__container {
  background-color: var(--text-dark);
  border-radius: 1.5rem;
  margin-top: 50px;
}

.banner__container .section__header {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--white);
 
}

.banner__container .section__description {
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--white);
}

.banner__btn {
  display: flex;
  justify-content: center;
}

.banner__btn .btn {
  color: var(--text-dark);
  background-color: var(--white);
}

/* treinamento pessoal */
.bloco-imagem {
  position: relative;
  width: 1000px;
  height: 250px;
  margin: 50px auto; /* Centraliza horizontalmente e dá espaçamento vertical */
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0)),
    url('/assets/academia.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.halters{
  width: 25%;
  opacity: 0.7;
  display: block;
}
.cont_hal{
  display: flex;
  align-items: center;
  justify-content: space-around;
 padding: 20px 50px 20px 50px;
}
/* Recorte com texto no topo esquerdo */
.vazado {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 25px;
  background-color: white;
  display: flex;
  align-items: center;
  padding-left: 6px;
  gap: 6px;
  font-weight: bold;
  color: black;
  z-index: 2;
}

.vazado .icone {
  font-size: 30pt;
}

.vazado .titulo {
  font-size: 1.2rem; /* 👈 aqui está o ajuste do tamanho */
}

/*  */


/* serviços */
.sessao-servicos {
  display: flex;
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
  gap: 40px;
  align-items: center; /* <-- muda de flex-start para center */
}

.lado-esquerdo {
  position: relative;
  width: 50%;
}

.imagem-grande {
  position: relative;
  width: 100%;
  border-radius: 8px;

}

.imagem-grande {
  position: relative;
  width: 85%;
  border-radius: 8px;
  /* ❌ Remova o overflow para permitir que a imagem menor ultrapasse */
  /* overflow: hidden; */
}

/* Imagem menor sobreposta */
.imagem-menor {
  position: absolute;
  bottom: 40px; /* 👈 Faz a imagem sair para fora */
  right: -50px;  /* 👈 Lateral também */
  width: 40%;
  /* border: 4px solid white; */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.imagem-menor img {
  width: 100%;
  height: auto;
  display: block;
}

/* Paralelogramo */
.paralelogramo {
  position: absolute;
  top: 60px; /* 10px + 50px */
  left: -20px;
  width: 80px;
  height: 45px;
  background: black;
  transform: skewX(-20deg) rotate(-15deg); /* mais rotacionado */
  z-index: 2;
  border-radius: 3px;
}


/* Lado direito */
.lado-direito {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 💡 Centraliza horizontalmente dentro da div */
  padding-left: 40px;  /* 💡 Empurra mais pro meio */
  text-align: center;  /* Opcional: centraliza texto */
}


.lado-direito h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
 .lado-direito {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* 💡 Centraliza horizontalmente dentro da div */
  padding-left: 0px;  /* 💡 Empurra mais pro meio */
  text-align: center;  /* Opcional: centraliza texto */
}
.section__container_one {
  width: calc(100% - 20px);          
  max-width: var(--max-width); 
  height: 100vh;     
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}
.logo {
  max-width: 80px; /* ajuste conforme necessário */
  margin: 0 auto 20px;
  display: block;
  margin-top: 30px;
}
.section__header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}
.halters{
  width: 25%;
  opacity: 0.7;
  display: none;
}
.cont_hal{
  display: flex;
  align-items: center;
  justify-content: space-around;
 padding: 20px 50px 20px 50px;
}
.flex__list p {
  margin: 0;
  font-size: 1rem;             /* igual ao .section__description */
  line-height: 1.6;
  text-align: left;
  color: white;
}

}

.lista-servicos {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.lista-servicos li {
  margin-bottom: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Botão */
.botao-agendar {
  padding: 12px 24px;
  font-size: 1rem;
  background: transparent;
  color: black;
  border: 1px solid black;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 45%;
}

.botao-agendar:hover {
  background: black;
  color: white;
}


/* Texto principal dentro da imagem */
.texto-central {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 750px;
  font-size: 1.1em;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .sessao-servicos {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 40px;
  }

  .lado-esquerdo,
  .lado-direito {
    width: 100%;
  }

  .lado-direito {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .imagem-grande {
    width: 90%;
    margin: 0 auto;
    position: relative;
  }

  .imagem-menor {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 50%;
    transform: translateY(40%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }

  .paralelogramo {
    display: none;
  }

  .botao-agendar {
    width: 80%;
    max-width: 300px;
    margin-top: 20px;
  }
  .lista-servicos {
  list-style: none;
  padding-left: 1.5rem; /* ✅ Adiciona recuo */
  margin-bottom: 30px;
}

.lista-servicos li {
  margin-bottom: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left; /* ✅ Garante alinhamento de várias linhas */
}

}

/*  */

/* vantagens */

.sessao-vantagens {
  display: flex;
  max-width: 1200px;
  margin: 80px auto;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
}

.vantagens-texto {
  flex: 1;
  min-width: 300px;
}

.vantagens-texto h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.lista-vantagens {
  list-style: none;
  padding: 0;
}

.lista-vantagens li {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Estilo do vídeo */
.video-container {
  position: relative;
  width: 260px;
  height: 460px;
  border: 6px solid black;
  border-radius: 10px;

  flex-shrink: 0;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botão de play */
.botao-play {
  position: absolute;
  bottom: 15px;
  left: -18px;
  width: 80px;
  height: 60px;
  background: black;
  border: 1px solid white;
  border-radius: 10px;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
}

@media (max-width: 768px) {
  .sessao-vantagens {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .video-container {
    margin-top: 30px;         /* Espaçamento após o texto */
    margin-bottom: 20px;
  }
  .vantagens-texto {
  text-align: left;
  padding: 0 1rem; /* margens laterais para "encaixar" o texto melhor */
  width: 100%;
}

.lista-vantagens {
  padding-left: 1.5rem; /* cria o recuo padrão da lista */
}

.lista-vantagens li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

}


/* nossa equipe */
.equipe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; 
   margin-bottom: 80px;
   border-radius: 8px;
min-height: 900px;
  background: #F5F5F5;
}


.team-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 50px;
}

.team-header h2 {
  font-size: 32px;
  margin-right: 20px;
}

.team-header-line {
  height: 2px;
  background: #000;
  width: 80%;
}


.team-card {
  background: #f9f9f9;
  padding: 20px;
  flex: 1 1 30%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  min-width: 260px;
  max-width: 320px;
}

.card1 { top: 60px; position: relative; }
.card2 { top: 0px; position: relative; }
.card3 { top: -60px; position: relative; }

.team-card img {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.team-card h3 {
  margin: 15px 0 8px;
  font-size: 20px;
}

.light-divider {
  width: 50%;
  height: 1px;
  background-color: #ccc;
  opacity: 0.5;
  margin: 8px auto;
}

.area {
  font-weight: bold;
  color: #555;
}

.bio {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

.insta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Espaço entre o ícone e o texto */
  margin-top: 10px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 1rem;
}

.insta-button i {

  font-size: 1.2rem;
  color: #E1306C; /* Cor do Instagram */
}

.swiper {
  /* margin-top: 4rem; */
  width: 100%;
}

.swiper-slide {
  min-width: 375px;
}

.client__card {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
  margin: 30px 13px;
}

.client__card:hover {
  background-color: #000;
  color: #fff;
}


.client__content {
  padding: 1rem;
  background-color: var(--white);
  border-radius: calc(1rem - 5px);
}

.client__card:hover .client__rating i {
  color: gold;
}


.client__content p {
  color: var(--text-dark);
}

.client__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client__details img {
  max-width: 50px;
  border-radius: 100%;
}

.client__details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.3s;
}

.client__card:hover h4 {
  color: var(--white);
}

.client__details h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  transition: 0.3s;
}

.client__card:hover h5 {
  color: var(--extra-light);
}


.team-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.team-header h2 {
  font-size: 32px;
  margin-right: 20px;
}

.team-header-line {
  height: 1.5px;
  background: #c7c7c7;
  width: 40%;
}

.team-cards {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 60px;
  position: relative;
}

.team-card {
  background: #f9f9f9;
  padding: 20px;
  flex: 1 1 30%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  min-width: 260px;
  max-width: 320px;
}

.card1 { top: 60px; position: relative; }
.card2 { top: 0px; position: relative; }
.card3 { top: -60px; position: relative; }

.team-card img {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.team-card h3 {
  margin: 15px 0 8px;
  font-size: 20px;
}

.light-divider {
  width: 50%;
  height: 1px;
  background-color: #ccc;
  opacity: 0.5;
  margin: 8px auto;
}

.area {
  font-weight: bold;
  color: #555;
}

.bio {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}



/* Feedback */
.feedback-section {
  margin-top: 80px;
}

.feedback-header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.feedback-header h2 {
  font-size: 28px;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: #fff; /* garante que a linha não sobreponha o texto */
  padding-right: 10px;
}

.feedback-line-right {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background: #000;
  width: 50%; /* ajustável: pode ser 60%, 70% etc. */
  transform: translateX(10px); /* desloca para o lado direito do texto */
}



.feedback-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
}

.carousel-button {
  background: #444;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 4px;
}

.feedback-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  max-width: 1000px;
}

.feedback-card {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  flex-shrink: 0;
}

.feedback-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.feedback-top img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.feedback-top h4 {
  margin: 0;
  font-size: 16px;
}

.stars {
  color: gold;
  font-size: 14px;
}

.comentario {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

/*  */

/* footer  */
.site-footer {
  background: radial-gradient(rgba(0, 0, 0, 0.85), rgb(0, 0, 0));
  color: #fff;
  padding: 60px 20px 30px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
  align-items: center;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-map {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}

.footer-text {

  max-width: 500px;
}

.footer-text .motivacional {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-text .convite {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-button {
  display: inline-block;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.footer-button:hover {
  background-color: #ccc;
}

.footer-logo-area {
  text-align: center;
}

.footer-logo {
  width: 12%;

}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #888;
  opacity: 0.3;
  margin: 5px 0;
}

.footer-copy {
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-content {
  padding: 10px;
    text-align: center;
    
  
  }
  .team-header-line {
  height: 1.5px;
  background: #c7c7c7;
  width: 3%;
}

  .footer-text {
    max-width: 100%;
  }

  .footer-map {
    height: 250px;
    width: 100%;
  }
  .team-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
.footer-logo {
  width: 35%;

}
.footer-left {
  order: 2;
  width: 100%;
}

.footer-text {
  order: 1;
  width: 100%;
}


}


/* Responsivo */
@media (max-width: 768px) {
  .feedback-carousel-wrapper {
    flex-direction: column;
  }

  .carousel-button {
    margin: 10px 0;
  }

  .feedback-carousel {
    overflow-x: auto;
    max-width: 100%;
  }

  .feedback-card {
    width: 90vw;
  }
}


/* Responsivo */
@media (max-width: 885px) {
 .team-cards {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  position: relative;
}

}
@media (max-width: 768px) {
  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .card1, .card2, .card3 {
    top: 0 !important;
  }

}

/*  */

@media (width > 768px) {
  nav {
    position: static;
   
    padding-inline: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

 .nav__header {
  background-color: transparent;
  transition: all 0.3s ease;
}


  .nav__logo img {
    max-width: 175px;
  }

  .logo-white {
    display: none;
  }

  .logo-dark {
    display: flex;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2rem;
    background-color: transparent;
    transform: none;
  }

  .nav__links a {
    color: var(--text-dark);
  }

  .nav__links a:hover {
    color: var(--text-light);
  }

  .nav__links .btn {
    color: var(--white);
    background-color: var(--text-dark);
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__image img {
    margin-inline-start: unset;
  }

  .header__image__content {
    position: absolute;
    right: 0;
    bottom: 2rem;
  }

  .header__content {
    text-align: left;
  }

  .header__content h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .product__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .product__card {
    text-align: left;
  }

  .product__colors {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .nav__links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    padding: 2rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: transparent;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: all 0.4s ease;
  }
.equipe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px; 
   margin-bottom: 80px;
   border-radius: 8px;

  background: #F5F5F5;
}
  .nav__links.open {
    transform: translateY(0);
    background-color: #000;
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
  }
}
