@font-face {
  font-family: 'Lena';
  src: url('../fonts/lena.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ZTTalk';
  src: url('../fonts/ZTTalk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'ZTTalk';
  src: url('../fonts/ZTTalk-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'ZTTalk';
  src: url('../fonts/ZTTalk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'ZTTalk';
  src: url('../fonts/ZTTalk-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'ZTTalk';
  src: url('../fonts/ZTTalk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'ZTTalk';
  src: url('../fonts/ZTTalk-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'ZTTalk';
  src: url('../fonts/ZTTalk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'ZTTalk';
  src: url('../fonts/ZTTalk-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

body {
  font-family: 'ZTTalk', sans-serif !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg-custom {
  background-color: #035866;
  height: 100px;
  width: 100%;
  position: relative;
  overflow: visible;
}

.top-bar {
  background-color: #f7f7f7;
  border-bottom-right-radius: 80px;
  height: 120px;
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.logo-img {
  height: 55px;
}

.btn-contact {
  background-color: #93c0a3;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 10px 25px;
  border-radius: 40px;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .btn-contact {
    display: none;
  }
}

.menu-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 20;
}

.menu-icon span {
  display: block;
  width: 32px;
  height: 5px;
  background-color: #fff;
  border-radius: 10px;
}

.hero-section {
  background-image: url('../img/img1.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
    margin-top: 30px;
  }
}

.highlight {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1rem;
  margin: 20px 0;
  max-width: 500px;
}

.custom-btn {
  background-color: #93c0a3 !important;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 80px !important;
  color: #fff !important;
  font-weight: bold;
  font-family: 'ZTTalk', sans-serif;
}

.hero-img {
  max-height: 450px;
  bottom: 0;
  right: 20%;
}

@media (max-width: 767.98px) {
  .hero-img {
    max-height: 200px;
  }
}

.shake-img {
  position: absolute;
  bottom: 50px;
  right: 0;
  height: 200px;
  border-radius: 100px;
}

.secao-diplomacia {
  background-image: url('../img/img3.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  min-height: 100vh;
}

.bloco-metricas {
  border: 1px solid #075f73;
  border-radius: 30px;
  padding: 30px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  background-color: white;
}

.bloco-metricas-wrapper {
  background-color: white;
  border-radius: 40px;
  padding: 8px;
  display: flex;
  justify-content: center;
}

.btn-saiba-mais {
  background-color: #a9bfb2;
  color: #035866;
  padding: 4px 25px;
  font-weight: 700;
  font-family: 'ZTTalk', sans-serif;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  margin-top: 20px;
  gap: 8px;
}

.btn-saiba-mais:hover {
  background-color: #d2d0bc;
  text-decoration: none;
}


.seta-icon {
  width: 16px;
  height: 16px;
}

.secao-servicos {
  background-image: url('../img/img5.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
}

.titulo-primario {
  font-family: 'ZTTalk', sans-serif;
  font-size: 5rem;
  color: #e6e3d2;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .titulo-primario {
    font-size: 3rem;
  }
}

.subtitulo-primario {
  font-family: 'ZTTalk';
  font-weight: 700;
  font-size: 3rem;
  color: white;
}

.card-servico {
  border: 1px solid #ffffffaa;
  border-radius: 35px;
  padding: 40px 25px;
  height: 100%;
  background-color: transparent;
}

.icone-card {
  height: 60px;
}

.titulo-card {
  font-family: 'ZTTalk';
  color: #e6e3d2;
  margin-bottom: 15px;
}

.card-servico p {
  font-size: 1.2rem;
  color: #ffffffcc;
  margin-bottom: 25px;
  font-weight: 500;
}

.btn-saiba-mais-2 {
  background-color: #e6e3d2;
  color: #035866;
  padding: 4px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'ZTTalk';
  display: inline-block;
  transition: 0.3s;
  font-size: 20px;
}

.btn-saiba-mais-2:hover {
  background-color: #d2d0bc;
  text-decoration: none;
}

.secao-depoimentos {
  background-image: url('../img/img6.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #ffffff;
}

.titulo-depoimentos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.linha {
  flex: 1;
  border: none;
  border-top: 2px solid #cfe4d2;
  max-width: 30%;
}

.depoimento-card {
  text-align: center;
  margin: 20px 10px;
}

.img-cliente {
  width: 270px;
  height: 270px;
  margin: 0 auto 20px;
  border: 4px solid #cfe4d2;
  border-radius: 50%;
  padding: 8px;
}

.img-cliente img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.texto-depoimento {
  font-style: italic;
  color: #cfe4d2;
  font-size: 0.95rem;
  margin: 20px 0 10px;
}

.estrelas {
  color: #e6e3d2;
  font-size: 1.2rem;
}

.slick-prev,
.slick-next {
  font-size: 2rem;
  color: #e6e3d2;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;

}

.slick-prev {
  left: -40px;
}

.slick-next {
  right: -40px;
}

.carousel-depoimentos {
  position: relative;
}

.slick-dots li button:before {
  display: none !important;
  opacity: 0.4;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #a3c9a8 !important;
}

.secao-faq {
  background-image: url('../img/img7.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  color: white;
}

.titulo-faq {
  font-family: 'ZTTalk', sans-serif;
  font-size: 3rem;
  color: #cfe4d2;
  margin-bottom: 20px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.accordion-header {
  background-color: transparent !important;
  border: none;
  padding: 0 !important;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'ZTTalk', sans-serif;
}

.accordion-item {
  background-color: transparent !important;
  border: 1px solid #cfe4d2 !important;
  border-radius: 30px;
  padding: 5px 20px;
  overflow: hidden;
  transition: 0.3s ease;
  border-top-left-radius: 30px !important;
  border-top-right-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}

.accordion-button {
  font-family: 'ZTTalk', sans-serif;
  font-size: 1rem;
  color: #cfe4d2;
  background-color: transparent !important;
  padding: 20px 30px;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-icone {
  width: 24px;
  height: 24px;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #fff !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: transparent !important;
  background-color: transparent !important;
}

.accordion-button::after {
  display: none !important;
}

.accordion-body {
  padding: 0 30px 25px 30px;
  color: white;
  font-size: 0.95rem;
  text-align: left;
  font-family: 'ZTTalk', sans-serif;
}

.accordion-button {
  font-size: 1rem;
  background: none;
  color: #fff !important;
  border: none;
  font-family: 'ZTTalk', sans-serif;
}

.accordion-body {
  color: white;
  font-family: 'ZTTalk', sans-serif;
  margin-left: 39px;
}

.accordion-item {
  border: 1px solid #cfe4d2;
  border-radius: 30px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-bolinhas {
  height: 100%;
}

.faq-bolinha {
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: transparent;
}

.faq-bolinha.ativa {
  width: 24px;
  height: 60px;
  background-color: #a3c9a8;
  border-radius: 20px;
}

.secao-contato {
  background-color: #005f6b;
  background-image: url('../img/img8.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.fundo-contato {
  background-color: #a9bfb2;
  border-radius: 60px;
  color: #003b46;
}

.titulo-contato {
  font-family: 'ZTTalk', sans-serif;
  font-size: 2.5rem;
  color: #003b46;
}

.titulo-contato .bold {
  font-weight: bold;
}

.subtitulo {
  font-family: 'ZTTalk', sans-serif;
  font-size: 1.25rem;
  color: #003b46;
}

.texto-secundario {
  font-family: 'ZTTalk', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #fff;
}

.form-label {
  font-family: 'ZTTalk';
  color: #003b46;
}

.form-control {
  background-color: #f5f5f5;
  border: none;
  padding: 12px;
}

.btn-enviar {
  background-color: white !important;
  color: #005f6b !important;
  font-family: 'ZTTalk', sans-serif;
  border-radius: 25px !important;
  padding: 4px 25px !important;
  font-weight: bold !important;
  transition: 0.3s ease !important;
  font-size: 20px !important;
}

.btn-enviar:hover {
  background-color: #e0e0e0 !important;
}

.fas {
  color: #003b46;
}

.footer-site {
  background-color: #aadcbb;
  font-family: 'ZTTalk', sans-serif;
  color: #003b46;
}

.footer-title {
  font-size: 2.1rem;
  font-weight: 100;
  margin-bottom: 1rem;
  font-family: 'ZTTalk', sans-serif;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a {
  color: #003b46;
  text-decoration: none;
  transition: 0.3s;
}

.footer-menu li a:hover {
  text-decoration: underline;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 15px;
  color: #003b46;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #005f6b;
}

.slick-dots li {
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent !important;
}

.slick-dots li.slick-active {
  width: 60px;
  background-color: #a3c9a8;
  border-radius: 20px;
  transform: scale(1.2);
}

.c-p-1 {
  font-family: 'ZTTalk', sans-serif;
  font-size: 50px;
  font-weight: 400;
  color: #035866;
  margin-bottom: 0.3rem;
}

.c-p-2 {
  font-family: 'ZTTalk', sans-serif;
  color: #9fc6ad;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
}

.c-p-3 {
  font-family: 'ZTTalk', sans-serif;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  font-size: 23px;
}

.c-p-4 {
  font-family: 'ZTTalk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 10px;
  color: #fff;
}

.c-p-5 {
  font-size: 1rem;
  margin: 20px 0;
  color: #e6f2f3;
}

.c-p-6 {
  font-family: 'ZTTalk', sans-serif;
  font-size: 3rem;
  color: #cfe4d2;
}

.c-p-7 {
  font-family: 'ZTTalk', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #fff;
}

.c-p-8 {
  font-family: 'ZTTalk', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #fff;
}

.c-p-9 {
  font-family: 'ZTTalk', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #003b46 !important;
}






.secao-diferenciais {
  background-color: #f7f7f7;
  color: #003b46;
}

.linha-dif {
  width: 120px;
  height: 4px;
  background-color: #7bc4a4;
  border: none;
  border-radius: 2px;
}

.icone-diferencial {
  min-width: 45px;
  height: 50px;
  background-color: #035866;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icone-img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.secao-chamada {
  background-color: #035866;
  color: #ffffff;
  padding: 100px 0;
}

.icones-chamada img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.titulo-chamada {
  font-family: 'ZTTalk', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
}

.texto-chamada {
  font-family: 'ZTTalk', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.btn-chamada {
  background-color: #9fc6ad !important;
  color: #ffffff !important;
  font-family: 'ZTTalk', sans-serif;
  font-size: 1rem !important;
  font-weight: bold !important;
  border-radius: 12px !important;
  padding: 12px 35px !important;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-chamada:hover {
  background-color: #a9bfb2 !important;
  color: #003b46 !important;
}

.secao-processo {
  background-color: #ffffff;
  color: #003b46;
  padding: 100px 0;
}

.titulo-processo {
  font-family: 'ZTTalk', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1.5rem;
}

.texto-processo {
  font-family: 'ZTTalk', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.btn-processo {
  background-color: #035866 !important;
  color: #ffffff !important;
  font-family: 'ZTTalk', sans-serif;
  font-size: 1rem !important;
  font-weight: bold !important;
  border-radius: 10px !important;
  padding: 12px 35px !important;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-processo:hover {
  background-color: #067585 !important;
}

.img-processo {
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.secao-processo {
  background-color: #ffffff;
  color: #003b46;
  padding: 100px 0;
}

.secao-processo-2 {
  background-color: #f7f7f7;
  color: #003b46;
  padding: 100px 0;
}

.titulo-processo {
  font-family: 'ZTTalk', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1.5rem;
}

.texto-processo {
  font-family: 'ZTTalk', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.btn-processo {
  background-color: #035866 !important;
  color: #ffffff !important;
  font-family: 'ZTTalk', sans-serif;
  font-size: 1rem !important;
  font-weight: bold !important;
  border-radius: 10px !important;
  padding: 12px 35px !important;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-processo:hover {
  background-color: #067585 !important;
}

.img-processo {
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  max-height: 370px;
}

.secao-depoimentos-alunos {
  background-color: #f7f7f7;
  color: #003b46;
}

.card-depoimento {
  background-color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 250px;
}

.card-depoimento:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.texto-depoimento2 {
  font-family: 'ZTTalk', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #222;
}

.icone-perfil {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #035866;
  color: white;
  font-weight: bold;
  font-family: 'ZTTalk', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nome-aluno {
  font-family: 'ZTTalk', sans-serif;
  font-weight: 700;
  color: #003b46;
}

.texto-cinza {
  font-family: 'ZTTalk', sans-serif;
  color: #6b6b6b;
  font-size: 0.9rem;
}

.estrelas {
  color: #9fc6ad;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.secao-planos {
  background-color: #ffffff;
}

.texto-secundario {
  font-family: 'ZTTalk', sans-serif;
  font-size: 1rem;
  color: #555;
}

.card-plano {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 445px;
}

.card-plano:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-plano.destaque {
  background: #035866;
  color: #fff;
  border: 3px solid #9fc6ad;
  position: relative;
}

.badge-popular {
  background-color: #9fc6ad;
  color: #003b46;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
}

.preco {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 15px 0;
}

.unidade {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

.lista-beneficios {
  list-style: none;
  padding-left: 0;
}

.lista-beneficios li {
  font-family: 'ZTTalk', sans-serif;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.btn-assinar {
  display: inline-block;
  background-color: #035866 !important;
  color: #fff !important;
  font-weight: bold;
  font-family: 'ZTTalk', sans-serif;
  border-radius: 8px;
  padding: 10px 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-assinar:hover {
  background-color: #067585;
}

.destaque-btn {
  background-color: #9fc6ad !important;
  color: #003b46 !important;
}

.destaque-btn:hover {
  background-color: #a9d3b8 !important;
}

.topo-aprova {
  background-color: #fff;
  border-bottom: 1px solid #e8e8e8;
  font-family: 'ZTTalk', sans-serif;
}

.logo-topo {
  height: 55px;
}

.menu-nav a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.menu-nav a:hover,
.menu-nav a.active {
  color: #035866;
}

.link-login {
  color: #035866;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.link-login:hover {
  color: #023a47;
}

.btn-assinar-topo {
  background-color: #8ac7ac;
  color: #fff !important;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-assinar-topo:hover {
  background-color: #7dbf9f;
}


.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  height: 3px;
  width: 25px;
  background: #035866;
  margin-bottom: 5px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .menu-nav {
    display: none !important;
  }

  .menu-icon {
    display: flex;
  }

  .logo-topo {
    height: 45px;
  }

  .btn-assinar-topo {
    padding: 6px 18px;
    font-size: 0.9rem;
  }
}

.secao-faq2 {
  background-color: #f9f9f9;
  font-family: 'ZTTalk', sans-serif;
}

.faq2-lista {
  max-width: 900px;
  margin: 0 auto;
}

.faq2-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq2-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq2-pergunta {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 20px;
  text-align: left;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq2-pergunta:hover {
  color: #035866;
}

.faq2-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq2-item.active .faq2-icon {
  transform: rotate(180deg);
}

.faq2-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq2-item.active .faq2-resposta {
  max-height: 500px;
  padding: 15px 20px 20px;
}

.faq2-resposta p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.footer2-section {
  background-color: #035866;
  color: #ffffff;
  font-family: 'ZTTalk', sans-serif;
}

.footer2-title {
  font-family: 'ZTTalk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer2-text {
  color: #e6f2f3;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer2-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer2-list a {
  color: #e6f2f3;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer2-list a:hover {
  color: #9fc6ad;
  text-decoration: underline;
}

.footer2-icon {
  color: #9fc6ad;
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
}

.footer2-divider {
  border-color: rgba(255, 255, 255, 0.3);
}

.footer2-copy {
  color: #e6f2f3;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .footer2-section {
    text-align: center;
  }

  .footer2-list li {
    justify-content: center;
  }

  .footer2-icon {
    display: none;
  }
}


.c-t-1 {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .c-t-1 {
    font-size: 30px;
  }
}

.c-p-10 {
  font-weight: 300;
  font-size: 15px;
  margin-top: 5px;
}

.c-p-11 {
  font-size: 14px;
  font-weight: 500;
  color: #666679;
}

.c-t-2 {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .c-t-2 {
    font-size: 30px;
  }
}

.c-t-3 {
  font-size: 40px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .c-t-3 {
    font-size: 30px;
  }
}

.c-t-4 {
  font-size: 20px;
  font-weight: 400;
}

.c-t-5 {
  font-size: 20px;
  font-weight: 400;
}

.c-card-plano-meio {
  min-height: 630px;
}

.c-card-plano {
  min-height: 550px;
  margin-top: 40px;
}

.custom-btn-2 {
  background-color: #93c0a3 !important;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 10px !important;
  color: #fff !important;
  font-weight: bold;
  font-family: 'ZTTalk', sans-serif;
}

.secao-diferenciais .col-md-6 {
  transition: box-shadow 0.4s ease;
  padding: 15px;
}

.secao-diferenciais .col-md-6:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  border-radius: 20px;
}

.c-p-12 {
  color: #fff !important;
}

.secao-depoimentos-alunos .estrelas svg {
  fill: #7bc4a4 !important;
  stroke: #7bc4a4 !important;
  width: 20px;
  height: 20px;
  margin-right: 3px;
  transition: transform 0.2s ease;
}

.secao-depoimentos-alunos .estrelas svg:hover {
  transform: scale(1.1);
}

.card-plano {
  position: relative;
  border-radius: 20px;
  background: #ffffff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card-plano.destaque {
  background: #058194;
  color: #fff;
}

.card-plano:hover {
  transform: translateY(-5px);
}

.badge-popular {
  position: absolute;
  top: 15px;
  left: -50px;
  background: #ffffff;
  color: #035866;
  padding: 6px 14px;
  font-weight: bold;
  font-size: 12px;
  transform: rotate(-45deg);
  width: 150px;
  text-align: center;
}

.preco-antigo {
  text-decoration: line-through;
  font-size: 0.9rem;
  opacity: 0.8;
}

.preco-atual {
  font-size: 2rem;
  font-weight: bold;
}

.card-plano.destaque .preco-antigo {
  color: #ddd;
}

.btn-assinar {
  background: #0d0d44;
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: bold;
}

.card-plano.destaque .btn-assinar {
  background: #fff;
  color: #0d0d44;
}