/* Remove margens e preenchimentos padrão */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* impede scroll horizontal */
}

body {
  padding-top: 100px; /* 90px do header + 10px de margem */
}

/* Cabeçalho-Fonte */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Cabeçalho fixo */
header {
  background-color: #9f0100; /* vermelho vinho */
  color: white;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* garante que o header fique sobre o conteúdo */
}

/* Espaço interno e alinhamento */
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 90px;
}

/* Logo */
.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Para variações de logo branco */

.logo-branco {
  filter: brightness(0) invert(1);
}


/* Logo com melhor escala */
.logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05); /* leve zoom ao passar o mouse */
}

/* Logo preta (útil para variações de fundo) */
.logo-preto {
  filter: brightness(0);
}

/* Menu */
.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    
}

.menu li a:hover {
    text-decoration: underline;
}

/*Menu area de membro*/

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.3s;
}

/* Destaque para "Área de Membro" */
.menu ul li a.destaque {
  background-color: black;
  font-weight: bold;
}

/* Efeito hover para todos os itens */
.menu ul li a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}


/* Slider responsivo com proporção */
.slideshow-container {
  width: 100%;
  aspect-ratio: 16 / 5;
  position: relative;
  overflow: hidden;
}

.mySlides {
  display: none;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto sobre a imagem */
.text {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 20px;
  text-align: center;
  max-width: 90%;
}

/* Contador */
.numbertext {
  position: absolute;
  top: 10px;
  left: 15px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* Botões */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  transition: background 0.3s;
  user-select: none;
  border: none;
}

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Bolinhas */
.dot-container {
  text-align: center;
  padding: 15px 0;
}

.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}

.active, .dot:hover {
  background-color: #555;
}

/* Responsivo */
@media (max-width: 768px) {
  .text {
    font-size: 1rem;
    padding: 8px 12px;
    bottom: 20px;
  }

  .prev, .next {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/* Escrita-Shalom */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;800&display=swap');

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.escrita-shalom {
  font-family: 'Inter', sans-serif;
  font-size: 36pt; /* letras maiores */
  text-align: center;
  color: #222;
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 20px;
  max-width: 800px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease forwards;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.escrita-shalom:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transform: scale(1.01);
}

.escrita-shalom .shalom {
  font-weight: 800;
  color: #d62828;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
}


/* Card-Endereço */

.card-endereco {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 40px 20px;
  flex-wrap: wrap;
  background-color: #f9f9f9;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 450px;
  height: auto;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.card img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  margin-bottom: 16px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s ease-in-out;
}

.card:hover img {
  transform: scale(1.1);
}

.card h3 {
  margin: 0 0 10px 0;
  font-size: 1.9rem;
  color: #d62828;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.card p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

/* Botão estilizado */
.card a.botao-endereco {
  display: inline-block;
  padding: 12px 24px;
  background-color: #d62828;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.card a.botao-endereco:hover {
  background-color: #b71c1c;
  transform: scale(1.05);
}


/*Parceiros*/

.parceiros-section {
  background-color: #000000; /* Preto */
  color: white;
  text-align: center;
  padding: 70px 35px; /* Reduzido para não aumentar a altura do fundo */
}

.titulo-parceiros {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: px;
  padding-bottom: 40px;
  font-family: Arial, sans-serif;
}

.imagem-parceiros {
  max-width: 700px;  /* Largura máxima */
  width: 100%;
  height: auto;       /* Altura automática para manter proporção */
  animation: flutuar 3s ease-in-out infinite;
}

/* Animação de flutuação */
@keyframes flutuar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


/*Saiba Mais*/

.saiba-mais {
  max-width: 720px;
  margin: 60px auto;
  padding: 40px 35px;
  background-color: #fff; /* branco puro para elegância */
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.75;
  color: #444;
  text-align: center;
  letter-spacing: 0.3px;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.saiba-mais:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

.saiba-mais span.nome-academia{
  font-weight: 800;
  color: #d62828;
  font-size: 2.1rem;
  display: block;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.saiba-mais strong.anos {
  font-weight: 700;
  color: #d62828;
  font-size: 1.5rem;
}

.saiba-mais p {
  margin: 0 0 30px 0;
  font-family: 'Inter', sans-serif;
  color: #555;
}

/* Botão Saiba Mais */
.saiba-mais .btn-saiba-mais {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #d62828, #9f0100);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(214, 40, 40, 0.6);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.2s ease;
  font-family: 'Montserrat', sans-serif;
}

.saiba-mais .btn-saiba-mais:hover {
  background: linear-gradient(135deg, #9f0100, #d62828);
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.8);
  transform: scale(1.05);
}

/*Galeria*/

.galeria {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}

.galeria img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Modal Styles */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 10000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Caption */
#caption {
  margin: 15px auto;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  max-width: 90%;
}

/* Close button */
.close {
  position: fixed;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.close:hover {
  color: #d62828;
}

/*video*/
.video {
  width: 100%;
  margin: 0;
  padding: 0;
}

.video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/*Modalidades*/

.modalidades {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  flex-wrap: wrap;
}

.imagem-modalidade img {
  width: 450px;
  height: 750px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Card vermelho com escrita branca */
.texto-modalidade {
  background-color: #d62828;
  color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 600px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
}

.texto-modalidade h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.texto-modalidade p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Botão */
.botao-saiba-mais {
  display: inline-block;
  padding: 14px 32px;
  background-color: #fff;
  color: #d62828;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.botao-saiba-mais:hover {
  background-color: #f8d7d7;
  color: #a30000;
}

/* Nossa-Unidades */

.nossa {
      position: relative;
      width: 100%;
      height: 580px;
      overflow: hidden;
    }

    .nossa video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: 1;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(-45deg, #000000aa, #8b0000aa, #000000aa, #ff0000aa);
      background-size: 400% 400%;
      animation: gradientAnim 10s ease infinite;
      z-index: 2;
      pointer-events: none; /* deixa interações passarem para o vídeo se necessário */
    }

    @keyframes gradientAnim {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }
.card-conteudo {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.card-conteudo h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.card-conteudo p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.card-conteudo .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff0000;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.card-conteudo .btn:hover {
  background: #b30000;
}    


/*Agenda Treino*/

.agenda {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.agenda-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.agenda-img {
  flex: 0 0 auto;
  width: 550px;
  height: 350px;
}

.agenda-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid #c20000; /* opcional: destaca a imagem com borda vermelha */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.agenda-info {
  flex: 1 1 500px;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.agenda-info h2 {
  font-size: 2em;
  color: #c20000;
  margin-bottom: 20px;
  font-weight: 800;
}

.agenda-info p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Caracteristicas */

.caracteristicas {
  padding: 60px 20px;
  background: linear-gradient(to right, #111, #222);
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.container-caracteristicas h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #ff3333;
  font-weight: 800;
}

.caracteristicas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.caract-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  width: 220px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.caract-box:hover {
  transform: translateY(-10px);
}

.caract-box i {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #ff3333;
}

.caract-box p {
  font-size: 1.1em;
  font-weight: 600;
}

/* Animações */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Fale conosco*/

.fale-conosco {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.fale-container {
  max-width: 1000px;
  margin: 0 auto;
}

.fale-conosco h2 {
  font-size: 2.5em;
  color: #ff3333;
  margin-bottom: 10px;
}

.fale-conosco h2 i {
  margin-right: 10px;
}

.fale-conosco .sub {
  font-size: 1.2em;
  margin-bottom: 30px;
  font-weight: 300;
  color: #ccc;
}

.horario {
  font-size: 1em;
  margin-bottom: 40px;
  color: #eee;
}

.horario i {
  color: #ff3333;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.contato-blocos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contato-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contato-box:hover {
  transform: translateY(-10px);
}

.contato-box i {
  font-size: 2.2em;
  margin-bottom: 15px;
  color: #ff3333;
}

.contato-box h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.contato-box p {
  font-size: 1em;
  color: #ccc;
}

.contato-box a {
  color: #ff9999;
  text-decoration: none;
  word-break: break-word;
}

.contato-box a:hover {
  text-decoration: underline;
}

/*chat*/
.botao-whatsapp {
  position: absolute;
  right: 20px;
  top: 80%;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Cor verde do WhatsApp */
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: top 0.3s ease, transform 0.3s ease;
}

.botao-whatsapp:hover {
  transform: scale(1.1);
}

.botao-whatsapp i {
  font-size: 30px;
  color: white; /* Ícone branco */
}

/*Corporativo*/

.rodape-site {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.rodape-conteudo {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.rodape-esquerdo {
  flex: 1 1 300px;
}

.rodape-esquerdo h3 {
  color: #c40000;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rodape-esquerdo ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.rodape-esquerdo ul li {
  margin-bottom: 12px;
}

.rodape-esquerdo ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

.rodape-esquerdo ul li a:hover {
  color: #c40000;
}

.btn-investidor {
  background-color: #c40000;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-investidor:hover {
  background-color: #a30000;
  transform: scale(1.05);
}

.rodape-direito {
  flex: 1 1 300px;
  text-align: center;
}

.logo-rodape {
  max-width: 250px;
  height: auto;
  margin-bottom: 15px;
}

.rodape-direito p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #c40000;
  font-size: 22px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover {
  color: #000;
  transform: translateY(-3px);
}


/*rodape*/

.rodape {
  background-color: #c20000; /* fundo vermelho */
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.95em;
  padding: 20px 10px 0;
  margin: 0;
}

.rodape-container p {
  margin: 0;
  letter-spacing: 0.5px;
}

.rodape-container p::before {
  content: "🏋️‍♂️ ";
  margin-right: 5px;
  opacity: 0.8;
}

/*PAG: SOBRE-NOS*/

.banner-academia {
  background: url('../img/nossa-unidade.png') no-repeat center center;
  background-size: cover;
  height: 550px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
}

.banner-academia::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(60, 0, 0, 0.6);
  z-index: 1;
}

.conteudo-banner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

/* Efeito de escrita */
.titulo-escrito {
  font-size: 60px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
}

.titulo-escrito span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: escreverLetra 0.6s forwards;
}

.titulo-escrito span:nth-child(1) { animation-delay: 0.1s; }
.titulo-escrito span:nth-child(2) { animation-delay: 0.2s; }
.titulo-escrito span:nth-child(3) { animation-delay: 0.3s; }
.titulo-escrito span:nth-child(4) { animation-delay: 0.4s; }
.titulo-escrito span:nth-child(5) { animation-delay: 0.5s; }
.titulo-escrito span:nth-child(6) { animation-delay: 0.6s; }

@keyframes escreverLetra {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Linha riscando */
.linha-riscada {
  width: 0;
  height: 4px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  border-radius: 2px;
  animation: riscarLinha 1s ease-in-out 1s forwards;
  position: relative;
}

@keyframes riscarLinha {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 230px;
    opacity: 1;
  }
}


/*PAG: SOBRE-NOS*/

.subtitulo-escrito {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subtitulo-escrito span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: escreverLetraSub 0.4s forwards;
}

.subtitulo-escrito span:nth-child(1) { animation-delay: 1.2s; }
.subtitulo-escrito span:nth-child(2) { animation-delay: 1.3s; }
.subtitulo-escrito span:nth-child(3) { animation-delay: 1.4s; }
.subtitulo-escrito span:nth-child(4) { animation-delay: 1.5s; }
.subtitulo-escrito span:nth-child(5) { animation-delay: 1.6s; }
.subtitulo-escrito span:nth-child(6) { animation-delay: 1.7s; }
.subtitulo-escrito span:nth-child(7) { animation-delay: 1.8s; }
.subtitulo-escrito span:nth-child(8) { animation-delay: 1.9s; }

@keyframes escreverLetraSub {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.linha-subrisco {
  width: 0;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, transparent, #ff9999, transparent);
  border-radius: 2px;
  animation: riscarLinhaSub 1s ease-in-out 2s forwards;
  position: relative;
}

@keyframes riscarLinhaSub {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

.estrutura-academia {
  background: linear-gradient(90deg, #8b0000, #1c1c1c);
  color: white;
  padding: 50px 20px;
}

.container-estrutura {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.texto-estrutura {
  flex: 1;
  min-width: 300px;
}

.texto-estrutura h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.texto-estrutura h2 span {
  color: #ff0000;
}

.texto-estrutura p {
  font-size: 1.1em;
  line-height: 1.8;
}

.imagem-estrutura {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.imagem-estrutura img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}






/*PAG: UNIDADES*/

.subtitulo-escrito {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subtitulo-escrito span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: escreverLetraSub 0.4s forwards;
}

/* Delays para cada letra */
.subtitulo-escrito span:nth-child(1)  { animation-delay: 1.2s; } /* N */
.subtitulo-escrito span:nth-child(2)  { animation-delay: 1.3s; } /* O */
.subtitulo-escrito span:nth-child(3)  { animation-delay: 1.4s; } /* S */
.subtitulo-escrito span:nth-child(4)  { animation-delay: 1.5s; } /* S */
.subtitulo-escrito span:nth-child(5)  { animation-delay: 1.6s; } /* A */
.subtitulo-escrito span:nth-child(6)  { animation-delay: 1.7s; } /* S */
.subtitulo-escrito span:nth-child(7)  { animation-delay: 1.8s; } /* espaço */
.subtitulo-escrito span:nth-child(8)  { animation-delay: 1.9s; } /* U */
.subtitulo-escrito span:nth-child(9)  { animation-delay: 2.0s; } /* N */
.subtitulo-escrito span:nth-child(10) { animation-delay: 2.1s; } /* I */
.subtitulo-escrito span:nth-child(11) { animation-delay: 2.2s; } /* D */
.subtitulo-escrito span:nth-child(12) { animation-delay: 2.3s; } /* A */
.subtitulo-escrito span:nth-child(13) { animation-delay: 2.4s; } /* D */
.subtitulo-escrito span:nth-child(14) { animation-delay: 2.5s; } /* E */
.subtitulo-escrito span:nth-child(15) { animation-delay: 2.6s; } /* S */

@keyframes escreverLetraSub {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.unidade-localidade {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.container-unidades {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card-unidade {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 320px;
  flex: 1;
  padding-bottom: 20px;
}

.card-unidade img {
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: auto;
}

.card-unidade h3 {
  margin: 20px 0 10px;
  color: #d40000;
  font-size: 1.2em;
}

.card-unidade p {
  padding: 0 15px;
  font-size: 0.95em;
  color: #333;
  min-height: 60px;
}

.btn-vermelho {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #d40000;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn-vermelho:hover {
  background-color: #a70000;
}



/*PAG: Normas e Ultilizacao*/

.subtitulo-escrito {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subtitulo-escrito span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: escreverLetraSub 0.4s forwards;
}

/* Delays animados para "Normas de Utilização" */
.subtitulo-escrito span:nth-child(1)  { animation-delay: 1.2s; } /* N */
.subtitulo-escrito span:nth-child(2)  { animation-delay: 1.3s; } /* O */
.subtitulo-escrito span:nth-child(3)  { animation-delay: 1.4s; } /* R */
.subtitulo-escrito span:nth-child(4)  { animation-delay: 1.5s; } /* M */
.subtitulo-escrito span:nth-child(5)  { animation-delay: 1.6s; } /* A */
.subtitulo-escrito span:nth-child(6)  { animation-delay: 1.7s; } /* S */
.subtitulo-escrito span:nth-child(7)  { animation-delay: 1.8s; } /* espaço */
.subtitulo-escrito span:nth-child(8)  { animation-delay: 1.9s; } /* D */
.subtitulo-escrito span:nth-child(9)  { animation-delay: 2.0s; } /* E */
.subtitulo-escrito span:nth-child(10) { animation-delay: 2.1s; } /* espaço */
.subtitulo-escrito span:nth-child(11) { animation-delay: 2.2s; } /* U */
.subtitulo-escrito span:nth-child(12) { animation-delay: 2.3s; } /* T */
.subtitulo-escrito span:nth-child(13) { animation-delay: 2.4s; } /* I */
.subtitulo-escrito span:nth-child(14) { animation-delay: 2.5s; } /* L */
.subtitulo-escrito span:nth-child(15) { animation-delay: 2.6s; } /* I */
.subtitulo-escrito span:nth-child(16) { animation-delay: 2.7s; } /* Z */
.subtitulo-escrito span:nth-child(17) { animation-delay: 2.8s; } /* A */
.subtitulo-escrito span:nth-child(18) { animation-delay: 2.9s; } /* Ç */
.subtitulo-escrito span:nth-child(19) { animation-delay: 3.0s; } /* Ã */
.subtitulo-escrito span:nth-child(20) { animation-delay: 3.1s; } /* O */

@keyframes escreverLetraSub {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*TEXTO-NORMAS*/

  #texto-norma {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.75;
    text-align: center;
  }

  #texto-norma h2 {
    font-size: 32px;
    color: #c60000;
    margin-bottom: 20px;
    border-bottom: 2px solid #c60000;
    padding-bottom: 10px;
  }

  #texto-norma .intro {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  #texto-norma ol {
    list-style-position: inside;
    padding-left: 0;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
  }

  #texto-norma li {
    margin-bottom: 16px;
    font-size: 17px;
    text-align: justify;
  }

  /* Negrito nos números */
  #texto-norma ol li::marker {
    font-weight: bold;
    color: #c60000;
  }

  @media (max-width: 768px) {
    #texto-norma {
      padding: 25px 20px;
    }

    #texto-norma h2 {
      font-size: 24px;
    }

    #texto-norma li {
      font-size: 16px;
    }
  }


/*PAG: CANCELAMENTO*/

.subtitulo-escrito {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subtitulo-escrito span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: escreverLetraSub 0.4s forwards;
}

/* Delays para "CANCELAMENTO" (12 letras) */
.subtitulo-escrito span:nth-child(1)  { animation-delay: 1.2s; } /* C */
.subtitulo-escrito span:nth-child(2)  { animation-delay: 1.3s; } /* A */
.subtitulo-escrito span:nth-child(3)  { animation-delay: 1.4s; } /* N */
.subtitulo-escrito span:nth-child(4)  { animation-delay: 1.5s; } /* C */
.subtitulo-escrito span:nth-child(5)  { animation-delay: 1.6s; } /* E */
.subtitulo-escrito span:nth-child(6)  { animation-delay: 1.7s; } /* L */
.subtitulo-escrito span:nth-child(7)  { animation-delay: 1.8s; } /* A */
.subtitulo-escrito span:nth-child(8)  { animation-delay: 1.9s; } /* M */
.subtitulo-escrito span:nth-child(9)  { animation-delay: 2.0s; } /* E */
.subtitulo-escrito span:nth-child(10) { animation-delay: 2.1s; } /* N */
.subtitulo-escrito span:nth-child(11) { animation-delay: 2.2s; } /* T */
.subtitulo-escrito span:nth-child(12) { animation-delay: 2.3s; } /* O */

@keyframes escreverLetraSub {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*TEXTO CANCELAMENTO*/

#texto-cancelamento {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.75;
    text-align: center;
  }

  #texto-cancelamento h2 {
    font-size: 32px;
    color: #c60000;
    margin-bottom: 20px;
    border-bottom: 2px solid #c60000;
    padding-bottom: 10px;
  }

  #texto-cancelamento .intro {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  #texto-cancelamento ol {
    list-style-position: inside;
    padding-left: 0;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
  }

  #texto-cancelamento li {
    margin-bottom: 16px;
    font-size: 17px;
    text-align: justify;
  }

  #texto-cancelamento ol li::marker {
    font-weight: bold;
    color: #c60000;
  }

  #texto-cancelamento .clausula {
    margin: 30px auto;
    max-width: 1000px;
    background-color: #f8f8f8;
    padding: 25px;
    border-left: 5px solid #c60000;
    border-radius: 8px;
    text-align: justify;
  }

  #texto-cancelamento .clausula h3 {
    color: #c60000;
    margin-bottom: 15px;
    text-align: left;
  }

  #texto-cancelamento .clausula p {
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
  }

  #texto-cancelamento .call-to-action {
    font-size: 18px;
    margin: 30px 0 15px;
    font-weight: 500;
    color: #333;
  }

  .botao-cancelamento {
    display: inline-block;
    background-color: #c60000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .botao-cancelamento:hover {
    background-color: #a50000;
  }

  @media (max-width: 768px) {
    #texto-cancelamento {
      padding: 25px 20px;
    }

    #texto-cancelamento h2 {
      font-size: 24px;
    }

    #texto-cancelamento li {
      font-size: 16px;
    }

    .botao-cancelamento {
      width: 100%;
    }
  }


/*PAG: TRABELHE CONOSCO*/

.subtitulo-escrito {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subtitulo-escrito span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: escreverLetraSub 0.4s forwards;
}

/* Delays para "Trabalhe Conosco" (15 letras + espaço) */
.subtitulo-escrito span:nth-child(1)  { animation-delay: 1.2s; } /* T */
.subtitulo-escrito span:nth-child(2)  { animation-delay: 1.3s; } /* R */
.subtitulo-escrito span:nth-child(3)  { animation-delay: 1.4s; } /* A */
.subtitulo-escrito span:nth-child(4)  { animation-delay: 1.5s; } /* B */
.subtitulo-escrito span:nth-child(5)  { animation-delay: 1.6s; } /* A */
.subtitulo-escrito span:nth-child(6)  { animation-delay: 1.7s; } /* L */
.subtitulo-escrito span:nth-child(7)  { animation-delay: 1.8s; } /* H */
.subtitulo-escrito span:nth-child(8)  { animation-delay: 1.9s; } /* E */
.subtitulo-escrito span:nth-child(9)  { animation-delay: 2.0s; } /* espaço */
.subtitulo-escrito span:nth-child(10) { animation-delay: 2.1s; } /* C */
.subtitulo-escrito span:nth-child(11) { animation-delay: 2.2s; } /* O */
.subtitulo-escrito span:nth-child(12) { animation-delay: 2.3s; } /* N */
.subtitulo-escrito span:nth-child(13) { animation-delay: 2.4s; } /* O */
.subtitulo-escrito span:nth-child(14) { animation-delay: 2.5s; } /* S */
.subtitulo-escrito span:nth-child(15) { animation-delay: 2.6s; } /* C */
.subtitulo-escrito span:nth-child(16) { animation-delay: 2.7s; } /* O */

@keyframes escreverLetraSub {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*TEXTO VAGA DE EMPREGO*/

#vagaemprego {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    text-align: center;
  }

  #vagaemprego h2 {
    font-size: 32px;
    color: #c60000;
    margin-bottom: 20px;
    border-bottom: 2px solid #c60000;
    padding-bottom: 10px;
  }

  #vagaemprego .intro {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
  }

  #vagaemprego .call {
    font-size: 22px;
    color: #c60000;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    #vagaemprego {
      padding: 25px 20px;
    }

    #vagaemprego h2 {
      font-size: 24px;
    }

    #vagaemprego .intro {
      font-size: 16px;
    }

    #vagaemprego .call {
      font-size: 18px;
    }
  }



/*PAG: POLITICA E PRIVACIDADE*/

.subtitulo-escrito {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subtitulo-escrito span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: escreverLetraSub 0.4s forwards;
}

/* Delays para "Política de Privacidade" (21 letras + espaços) */
.subtitulo-escrito span:nth-child(1)  { animation-delay: 1.2s; }  /* P */
.subtitulo-escrito span:nth-child(2)  { animation-delay: 1.3s; }  /* O */
.subtitulo-escrito span:nth-child(3)  { animation-delay: 1.4s; }  /* L */
.subtitulo-escrito span:nth-child(4)  { animation-delay: 1.5s; }  /* Í */
.subtitulo-escrito span:nth-child(5)  { animation-delay: 1.6s; }  /* T */
.subtitulo-escrito span:nth-child(6)  { animation-delay: 1.7s; }  /* I */
.subtitulo-escrito span:nth-child(7)  { animation-delay: 1.8s; }  /* C */
.subtitulo-escrito span:nth-child(8)  { animation-delay: 1.9s; }  /* A */
.subtitulo-escrito span:nth-child(9)  { animation-delay: 2.0s; }  /* espaço */
.subtitulo-escrito span:nth-child(10) { animation-delay: 2.1s; }  /* D */
.subtitulo-escrito span:nth-child(11) { animation-delay: 2.2s; }  /* E */
.subtitulo-escrito span:nth-child(12) { animation-delay: 2.3s; }  /* espaço */
.subtitulo-escrito span:nth-child(13) { animation-delay: 2.4s; }  /* P */
.subtitulo-escrito span:nth-child(14) { animation-delay: 2.5s; }  /* R */
.subtitulo-escrito span:nth-child(15) { animation-delay: 2.6s; }  /* I */
.subtitulo-escrito span:nth-child(16) { animation-delay: 2.7s; }  /* V */
.subtitulo-escrito span:nth-child(17) { animation-delay: 2.8s; }  /* A */
.subtitulo-escrito span:nth-child(18) { animation-delay: 2.9s; }  /* C */
.subtitulo-escrito span:nth-child(19) { animation-delay: 3.0s; }  /* I */
.subtitulo-escrito span:nth-child(20) { animation-delay: 3.1s; }  /* D */
.subtitulo-escrito span:nth-child(21) { animation-delay: 3.2s; }  /* A */
.subtitulo-escrito span:nth-child(22) { animation-delay: 3.3s; }  /* D */
.subtitulo-escrito span:nth-child(23) { animation-delay: 3.4s; }  /* E */

@keyframes escreverLetraSub {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*TEXTO POLITICA*/

 #politica-de-privacidade {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    text-align: center;
  }

  #politica-de-privacidade h2 {
    font-size: 32px;
    color: #c60000;
    margin-bottom: 20px;
    border-bottom: 2px solid #c60000;
    padding-bottom: 10px;
  }

  #politica-de-privacidade .intro {
    font-size: 18px;
    color: #666;
    margin: 0 auto 30px auto;
    max-width: 800px;
  }

  #politica-de-privacidade .bloco-texto {
    text-align: justify;
    max-width: 950px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
  }

  #politica-de-privacidade .bloco-texto h3 {
    color: #c60000;
    margin-top: 30px;
  }

  #politica-de-privacidade .bloco-texto ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  #politica-de-privacidade .bloco-texto ul li {
    margin-bottom: 10px;
  }

  @media (max-width: 768px) {
    #politica-de-privacidade {
      padding: 25px 20px;
    }

    #politica-de-privacidade h2 {
      font-size: 24px;
    }

    #politica-de-privacidade .bloco-texto {
      font-size: 16px;
    }
  }

  /*PAG: MATRICULA*/

/*tabela de planos*/

:root {
  --primary-color: #c0392b;
  --primary-dark: #a93226;
  --highlight-orange: #e67e22;
  --highlight-green: #27ae60;
  --text-dark: #333;
  --text-medium: #555;
  --text-light: #888;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.4s ease;
  --border-radius-sm: 16px;
  --border-radius-lg: 35px;
  --box-shadow-sm: 0 6px 15px var(--shadow-color);
  --box-shadow-md: 0 12px 30px var(--shadow-color);
}

.container-planos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.plano {
  background-color: #fff;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-sm);
  flex: 1 1 320px;
  max-width: 360px;
  padding: 2.5rem 2rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-medium);
  overflow: hidden;
}

.plano::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background var(--transition-fast);
}

.plano:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plano:hover::before {
  background: var(--primary-color);
}

.selo-topo {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff7f00 0%, #e85e00 100%);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.70rem 1.4rem;
  border-radius: 24px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  z-index: 2;
  transition: all var(--transition-medium);
}

.selo-topo::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
  color: #ffd700;
}

.plano h3 {
  font-size: 1.8rem;
  margin: 0.5rem 0 1rem;
  text-align: center;
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.plano h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--border-color);
  transition: background var(--transition-fast);
}

.plano:hover h3::after {
  background: var(--primary-color);
}

.plano p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-medium);
  min-height: 3.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.plano ul {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
  flex-grow: 1;
}

.plano ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.plano ul li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.plano:hover ul li {
  color: var(--text-dark);
}

.preco {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.valor {
  font-size: 2.5rem;
  font-weight: 900;
  color: black;
  transition: color var(--transition-fast);
}

.mensalidade {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
}

.btn-contratar {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.85rem 3rem;
  font-size: 1rem;
  border-radius: var(--border-radius-lg);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-medium);
  align-self: center;
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-contratar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-contratar:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(169, 50, 38, 0.8);
}

.btn-contratar:hover::after {
  left: 100%;
}

/* Destaque APENAS no do meio */
.container-planos .plano:nth-child(2) {
  border-color: var(--highlight-orange);
  transform: scale(1.05);
  box-shadow: var(--box-shadow-md);
}

.container-planos .plano:nth-child(2)::before {
  background: var(--highlight-orange);
}

.container-planos .plano:nth-child(2) .selo-topo {
  background: linear-gradient(135deg, #ff9500 0%, var(--highlight-orange) 100%);
}

.container-planos .plano:nth-child(2) .selo-topo::after {
  content: "+PEDIDO";
  margin-left: 0.4rem;
  font-weight: 700;
  color: #fff;
}


/* Responsividade */
@media (max-width: 900px) {
  .container-planos {
    padding: 3rem 1rem;
    gap: 2.5rem;
  align-items: stretch;
  }
  
  .plano {
    max-width: 100%;
    width: 100%;
    padding: 2.5rem 1.8rem;
  }
}

@media (max-width: 600px) {
  .container-planos {
    padding: 2rem 1rem;
  }
  
  .plano {
    padding: 2rem 1.5rem;
  }
  
  .btn-contratar {
    width: 100%;
    padding: 1rem;
  }
}

/*PAG: Tabela de Plano 1*/

.tabela-plano1 {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.tabela-plano1 h2 {
  color: red;
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

/*parte de beneficios*/

.beneficios {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.beneficios li {
  display: flex;
  align-items: center;
  font-size: 17px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: background-color 0.3s ease;
  justify-content: center;
}

.beneficios li:hover {
  background-color: #ffeaea;
}

.beneficios li::before {
  content: "✔";
  color: red;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px;
}

.chamada {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.chamada span {
  color: crimson;
}

.tabela-unidades {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.tabela-unidades th,
.tabela-unidades td {
  padding: 12px;
  border: 1px solid #ccc;
}

.tabela-unidades th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.btn-matricule {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

.btn-matricule:hover {
  background-color: darkred;
}

.btn-contratar {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-contratar:hover {
  background-color: darkred;
}
