* {
  font-family: 'Sora', sans-serif;
}
body{
  overflow-x: hidden;
}

section {
  padding: 10vw 0 !important;
}

a {
  text-decoration: none;
}

/* Navbar */
.navbar-custom {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.navbar-nav .nav-link {
  font-weight: 900 !important;
    margin-left: 20px;
    color: #333333d5;
}
.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 4px;
    font-weight: 500;
    transition: color 0.25s ease;
}
.navbar-nav .nav-link i{
    margin-right: 8px;
    color: #333333d5; /* COR DOS ÍCONES */
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #00c4a7; /* COR DA LINHA */
    border-radius: 6px;
    transition: width 0.30s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #333333d5; /* muda cor do texto ao hover */
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
    width: 100%;
}


/* HERO */
.hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background-size: cover;
  padding: 0px;
  transform: scale(1.1);

}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  display: block;
}

/* Efeito fade branco */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* ajuste para mais ou menos fade */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}


.hero-section {
  text-align: center;
  padding-top: 0 !important;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 10vw;
}

.hero-sub {
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin: 20px auto 0 auto;
}

@media(max-width:768px) {
  .hero-title {
    font-size: 1.8rem;
  }
}

.img-wrapper,
.img-wrapper2 {
  position: relative;
  overflow: hidden;
}

.img-bg-wrapper {
  height: 100%;
}

.img-wrapper img,
.img-wrapper2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Aplicando o efeito igual ao print */
.img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  /* largura do gradiente */
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 85), rgba(0, 0, 0, 0));
  pointer-events: none;
}

/* Aplicando o efeito igual ao print */
.img-wrapper2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* largura do gradiente */
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 100), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.img-bg-wrapper {
  position: relative;
  min-height: 350px;
  /* altura pode ser ajustada */
  border-radius: 1rem;
  /* arredondamento igual ao img */
  overflow: hidden;
  /* mantém o raio na imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 80), rgba(0, 0, 0, 0)),
    var(--img-url);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

@media (max-width: 991px) {
  .equal-height {
    flex-direction: column;
  }

  .img-wrapper img {
    height: auto;
  }
}

.step-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 25px;
  min-height: 170px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.tip-box {
  background: #c6faf2;
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.25s ease;
  text-align: center;
  box-shadow: 0px 0px 50px 0px #ddd !important;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}

.icon-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #00c4a7;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.3rem;
}

.feature-card,
.icon-circle {
  margin: 0 auto;
}

.feature-image {
  max-height: 100% !important;
  object-fit: cover;
}

.bonus-thumb {
  border: 1px solid #eee;
  transition: 0.3s;
}

.bonus-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.estrutura-section {
  padding: 80px 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.estrutura-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
}

.estrutura-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.estrutura-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.top-line {
  height: 7px;
  width: 100%;
  background: #00bfb3;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 14px 14px 0 0;
}

.number-circle {
  width: 55px;
  height: 55px;
  background: #00bfb3;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.estrutura-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.estrutura-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* ANIMAÇÕES */
.animate {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate:nth-child(1) {
  animation-delay: .1s;
}

.animate:nth-child(2) {
  animation-delay: .2s;
}

.animate:nth-child(3) {
  animation-delay: .3s;
}

.animate:nth-child(4) {
  animation-delay: .4s;
}

.animate:nth-child(5) {
  animation-delay: .5s;
}

.animate:nth-child(6) {
  animation-delay: .6s;
}

.creativos-section {
  font-family: "Inter", sans-serif;
  padding-top: 0 !important;
}

/* HERO INTERNO */
.creativos-hero {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20vh;
}

.hero-img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

/* TITULOS */
.cre-title {
  margin-top: -80px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.cre-subtitle {
  text-align: center;
  font-size: 18px;
  margin: 10px auto 40px;
  max-width: 1200px;
  color: #555;
}

/* GRID */
.cre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.cre-block {
  text-align: center;
}

.cre-block img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cre-label {
  font-size: 18px;
  font-weight: 600;
  color: #0F62AB;
  margin-top: 14px;
}

/* DESCRIÇÃO */
.cre-desc {
  margin: 40px auto 25px;
  max-width: 1200px;
  text-align: center;
  font-size: 16px;
  color: #555;
}

/* BOTÃO */
.cre-center {
  text-align: center;
}

.cre-btn {
  background: #00bfa6;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s;
  display: inline-block;
}

.cre-btn:hover {
  background: #009e89;
}

/* ANIMAÇÕES */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate:nth-child(1) {
  animation-delay: .1s;
}

.animate:nth-child(2) {
  animation-delay: .2s;
}

.animate:nth-child(3) {
  animation-delay: .3s;
}

.animate:nth-child(4) {
  animation-delay: .4s;
}

.animate:nth-child(5) {
  animation-delay: .5s;
}

.animate:nth-child(6) {
  animation-delay: .6s;
}

.swiper {
  padding: 25px !important;
  margin-top: 30px !important;
}

.swiper .shadow {
  box-shadow: 0px 0px 30px 0px #ddd !important;
}

.testimonial-card {
  background: #fff;
  min-height: 330px;
}

.testimonials-section {
  padding-top: 0px !important;
}

.img-placeholder img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto;
}

/* --- Fundo geral FULL conforme o print --- */
.garantia-wrapper {
  width: 100%;
  background: linear-gradient(135deg, #dffef5, #e7efec);
  padding: 60px 20px;
}

/* --- Card branco central --- */
.garantia-section {
  max-width: 1280px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px !important;
  border-radius: 5vw;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
  animation: fadeIn 1s ease forwards;
  font-family: 'Inter', sans-serif;
}

/* --- Animações --- */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.garantia-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Título */
.garantia-title {
  width: 100%;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Selo */
.garantia-selo img {
  width: 320px;
  animation: zoomIn 1.1s ease forwards;
}

/* Texto */
.garantia-texto {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.garantia-texto b {
  font-weight: 700;
}

/* Bloco inferior */
.garantia-bloco {
  margin-top: 40px !important;
  background: #d7faf4;
  padding: 25px;
  border-radius: 12px;
  animation: slideUp 1.1s ease forwards;
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: #333;
}

.garantia-bloco i {
  color: #00aa87;
  font-style: normal;
  font-weight: bold;
}

.jornada-section {

  position: relative;
  background-image: url('../newimg/bglast.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.jornada-container {
  max-width: 1280px;
  margin: auto;
  text-align: center;
}

/* =============================
    GRID DAS MÉTRICAS
   ============================= */

.metricas {
  margin: 40px 0px !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* ITEM */
.metricas .item {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: .3s ease;
}

.metricas .item h3 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.metricas .item span {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.metricas .item p {
  font-size: 0.95rem;
  opacity: .8;
}

/* HOVER (DESKTOP) */
@media (hover: hover) {
  .metricas .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }
}

/* =============================
   RESPONSIVIDADE
   ============================= */

/* Tablets – 2 itens por linha */
@media (max-width: 992px) {
  .metricas {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile – 1 item por linha */
@media (max-width: 576px) {
  .creativos-hero {
    margin-bottom: 30vw;
  }

  .garantia-section {
    padding: 30px !important;
    border-radius: 8px;
    margin: 0 !important;
  }

  .garantia-wrapper {
    padding: 0px !important;
  }

  .metricas {
    grid-template-columns: 1fr;
  }

  .metricas .item {
    padding: 20px;
  }

  .metricas .item h3 {
    font-size: 2rem;
  }
}

/* Dúvidas */
.duvidas h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.duvidas p {
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Botões */
.btns {
  display: inline-grid;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #00b894;
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #009f7f;
}

.btn-outline {
  border: 2px solid #00b894;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #00b894;
  transition: 0.2s;
}

.btn-outline:hover {
  background: #00b894;
  color: #fff;
}

/* --- ANIMAÇÕES --- */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

[data-anim].anim {
  opacity: 1;
  transform: translateY(0);
}

.section-bg {
  position: relative;
  background-image: url('../newimg/bgvideo.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Overlay escuro */
.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #054840e0;
  z-index: 1;
}

/* Conteúdo da section fica por cima */
.section-bg>* {
  position: relative;
  z-index: 2;
}

.section-recursos {
  position: relative;
  background-image: url('../newimg/bglight.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.section-recursos::before {
  content: "";
  inset: 0;
  background: #c7c7c71f;
  z-index: 1;
}

.info-section {
  position: relative;
  background-image: url('../newimg/bgcinza.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  margin-bottom: 25px;
  height: 0;
  border-radius: 0vh !important;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2vh !important;
  box-shadow: 0px 0px 2vh 0px #000 !important;
  padding: 10px!important;
  background: #e7efec !important;
}
/* Notificação Material You – Dark Contrast (bordas + sombra + fonte reduzida) */
.notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 18px 22px;
  width: 420px;

  /* Fundo escuro elegante */
  background: rgba(28, 28, 30, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Bordas bem arredondadas */
  border-radius: 5vh !important;

  /* Borda com leve brilho */
  border: 1px solid rgba(0, 200, 255, 0.26);

  /* Sombra bem mais forte e destacada */
  box-shadow:
    0px 0px 35px 0px rgba(0, 0, 0, 0.65),
    0 0 16px rgba(0, 200, 255, 0.26);

  color: #f4f4f4;
  
  /* Fonte menor e mais leve */
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.4em !important;

  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: all 0.38s cubic-bezier(0.22, 1, 0.34, 1);

  z-index: 2047483647 !important;
  display: flow-root;
}

/* Texto secundário */
.notification small {
  color: #b4e6ff !important;
  font-size: 12px !important;
  opacity: 0.85;
  margin-top: 6px !important;
  display: block;
}

/* Imagem com glow mais suave e bordas mais arredondadas */
.notification span img {
  height: 52px;
  width: 52px;

  /* Acompanha o estilo mais arredondado */
  border-radius: 20px;
  object-fit: cover;

  float: left;
  margin-right: 16px;

  border: 1px solid rgba(0, 200, 255, 0.25);
  box-shadow:
    0 0 14px rgba(0, 200, 255, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.45);
}

/* Mostrar */
.notification.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Mobile */
@media (max-width: 600px) {
  .notification {
    bottom: 100px;
    left: 12px;
    right: 12px;
    width: auto;
    padding: 16px 18px;
    border-radius: 24px !important;
  }
}


.cc_container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 5px 8px !important;
  background: #333333eb !important;
  border-top: 3px solid #333 !important;
  color: #fff !important;
  z-index: 99999999999999999999 !important;
  text-align: center !important;
}

.cc_btn {
  color: #fff !important;
  background: rgb(22, 104, 211) !important;
  transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
  -webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
  border-radius: 2vh !important;
  padding: 5px 10px !important;
  font-size: 12px !important;
  border: 2px solid #fff !important;
  /*float: right;*/
}

.cc_btn2 {
  color: #fff !important;
  background: #0BA008 !important;
  transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
  -webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
  border-radius: 2vh !important;
  padding: 5px 10px !important;
  font-size: 12px !important;
  border: 2px solid #fff !important;
  /*float: right;*/
}

.cc_more_info {
  color: yellow !important;
  font-weight: bold !important;
}

.cc_container .cc_message {
  font-family: Roboto !important;
  font-size: 14px !important;
  color: #fff !important;
  transition: font-size 200ms;
  margin: 0;
  padding: 0;
  line-height: 1.5em
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(66px);
    transform: translateY(66px)
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(66px);
    -ms-transform: translateY(66px);
    transform: translateY(66px)
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}

.cc_container,
.cc_message,
.cc_btn {
  animation-duration: 0.8s;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -o-animation-duration: 0.8s;
  -webkit-animation-name: slideUp;
  animation-name: slideUp
}

.modal-full {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content-full {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}

.modal-content-full iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.fechar,.fechars,.fecharp {
    position: fixed !important;
    top: 5px;
    right: 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
    cursor: pointer !important;
    z-index: 100000;
    justify-items: center;
    padding: 0px 0px 30px 0px;
}

.fechar:hover,
.fecharp:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Modal full screen e centralizado */
.modal-fullscreen {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  z-index: 1050 !important;
  display: flex !important;
  align-items: center !important;
  /* centraliza verticalmente */
  justify-content: center !important;
  /* centraliza horizontalmente */
  overflow: hidden;
}

.modal-fullscreen .modal-dialog {
  margin: 0 !important;
  width: 100%;
  max-width: 480px;
  /* largura do formulário */
}

.modal-fullscreen .modal-content {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  overflow-y: auto;
  /* ativa rolagem interna */
  -webkit-overflow-scrolling: touch;
  /* suaviza no iOS */
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.35);
}

.modal-fullscreen .close {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 1051 !important;
  font-size: 1.5rem !important;
  color: #333 !important;
  opacity: 0.7 !important;
}

.modal-content {
  height: 100% !important;
  border-radius: unset !important;
  background: #f9f9fb !important;
}

.w-100 {
  max-width: 600px !important;
  padding: 30px !important;
  background: #ffffff !important;
  border-radius: 2vh !important;
}

/* Mobile: ocupa 100% da tela */
@media (max-width: 767.98px) {
  .modal-fullscreen .modal-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
  }
}

/* Fundo escuro por trás */
.modal-backdrop.show {
  opacity: 0.7 !important;
  background-color: #000;
}

/* Quando o modal é aberto, esconde elementos que sobrepõem */
.modal-open .cb-widget,
.modal-open .notification,
.modal-open .desktop,
.modal-open .mobile {
  display: none !important;
}

.small ul li {
  font-size: 12px !important;
}

#formCadastro input.form-control, #formLogin input.form-control, #formCadastroX input.form-control {
  border-radius: 10px;
  padding: 10px 20px;
}

.section-footer {
  padding: 5vw 0px!important;
  background: linear-gradient(135deg, #34787a, #1de0bd);
  text-align: center !important;
}

.section-footer .copyright {
  margin-top: 20px !important;
}
.section-footer .notification.show, .section-footer .modal-content {
  text-align: left !important;
}

/* BOTÃO CTA — SOLID */
.cta-btn {
  background: #00c4a7;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 28px;
  border: none;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow:
    0 6px 18px rgba(0, 196, 167, 0.35),
    0 2px 4px rgba(0, 0, 0, 0.12);

  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-btn i{
  margin-right: 12px!important;
}

/* Hover */
.cta-btn:hover {
  background: #00b197;
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(0, 196, 167, 0.45),
    0 4px 8px rgba(0, 0, 0, 0.18);
}

/* Clique */
.cta-btn:active {
  transform: scale(0.97);
}
/* BOTÃO CTA — OUTLINE */
.cta-btn-outline {
  background: transparent;
  color: #00c4a7;
  padding: 14px 28px;
  border-radius: 28px;

  border: 2px solid #00c4a7;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-btn-outline i{
  margin-right: 12px!important;
}
/* Hover */
.cta-btn-outline:hover {
  background: rgba(0, 196, 167, 0.08);
  color: #00b49c;
  border-color: #00b49c;
  transform: translateY(-2px);
  box-shadow:
    0 6px 14px rgba(0, 196, 167, 0.25);
}

/* Clique */
.cta-btn-outline:active {
  transform: scale(0.97);
}

/* Botão CTA Glass Translúcido com Glow Verde #00c4a7 */
.cta-glass {
  padding: 14px 32px;
  border-radius: 50px;  
  width: 100%;

  background: rgba(0, 196, 167, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 2px solid rgba(0, 196, 167, 0.45);

  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  /* Glow inicial */
  box-shadow:
    0 0 12px rgba(0, 196, 167, 0.55),
    0 6px 22px rgba(0, 0, 0, 0.45);

  transition: all 0.25s ease;

  /* Animação de pulso */
  animation: glowPulse 2.4s ease-in-out infinite;
}

/* Hover */
.cta-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);

  box-shadow:
    0 0 18px rgba(0, 196, 167, 0.75),
    0 10px 30px rgba(0, 0, 0, 0.55);
}

/* Clique */
.cta-glass:active {
  transform: scale(0.96);
}


/* ------------------ ANIMAÇÃO DE PULSO / GLOW ------------------ */
@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 10px rgba(0, 196, 167, 0.50),
      0 6px 20px rgba(0, 0, 0, 0.40);
  }
  50% {
    box-shadow:
      0 0 18px rgba(0, 196, 167, 0.85),
      0 6px 28px rgba(0, 0, 0, 0.50);
  }
  100% {
    box-shadow:
      0 0 10px rgba(0, 196, 167, 0.50),
      0 6px 20px rgba(0, 0, 0, 0.40);
  }
}


/* ---------- AUTO-AJUSTE DE FONTE PARA MOBILE ---------- */

@media (max-width: 600px) {
  .cta-glass.responsive {
    padding: 14px 26px;
    font-size: clamp(14px, 4vw, 16px);
  }
}

/* =====================================================
   BASE – Aplica estilo adicional mantendo Bootstrap
   ===================================================== */
.btn-cta {
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 5vh;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 196, 167, 0.28);
}

/* =====================================================
   CTA SÓLIDO
   ===================================================== */
.btn-cta-solid {
    background: #00c4a7;
    color: #ffffff;
    border: 1px solid #00c4a7;
}

.btn-cta-solid:hover {
    background: #00b89d;
    border-color: #00b89d;
    box-shadow: 0 5px 16px rgba(0, 196, 167, 0.40);
    transform: translateY(-2px);
}

.btn-cta-solid:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 196, 167, 0.25);
}

/* =====================================================
   CTA OUTLINE
   ===================================================== */
.btn-cta-outline {
    background: transparent;
    color: #00c4a7;
    border: 2px solid #00c4a7;
    backdrop-filter: blur(4px);
}

.btn-cta-outline:hover {
    background: rgba(0, 196, 167, 0.12);
    box-shadow: 0 4px 14px rgba(0, 196, 167, 0.32);
    transform: translateY(-2px);
}

.btn-cta-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 196, 167, 0.22);
}

/* =====================================================
   MODO ESCURO (opcional)
   ===================================================== */
.dark-mode .btn-cta-outline {
    color: #00e0c0;
    border-color: #00e0c0;
}

.dark-mode .btn-cta-outline:hover {
    background: rgba(0, 224, 192, 0.15);
}
/* Animação da seta */
  .arrow-indicator {
    position: fixed;
    bottom: 70px;
    right: 30px;
    font-size: 3rem;
    color: #29b15c;
    animation: bounce 1s infinite;
    z-index: 2000;
  }

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

  /* Anel pulsante atrás do botão */
  .pulse-ring {
        position: fixed;
    bottom: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(20 253 7 / 41%);
    animation: pulse-ring 1.5s infinite;
    z-index: 1500;
  }

  @keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.6; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(0.8); opacity: 0; }
  }
  .arrow-indicator {
  animation: bounce 1s infinite;
  animation-delay: 0.5s;
}

.pulse-ring {
  animation: pulse-ring 1.5s infinite;
  animation-delay: 0s;
}
.copyright{
  color: #fff;
}
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #fff;
    color: #444;
    border: 1px solid #dadce0;
    padding: 10px 16px;
    border-radius: 8px;

    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-google:hover {
    background: #f7f8f9;
    border-color: #c6c6c6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-google:active {
    background: #ececec;
    box-shadow: none;
}

.google-icon {
    width: 20px;
    height: 20px;
}

#formCadastro input.form-control:focus,#formCadastroX input.form-control:focus, #formLogin input.form-control:focus {
    box-shadow: none;
    border-color: #00c4a7;  

}
#formCadastro label, #formCadastroX label, #formLogin label {
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
  color: #333;
}
#formCadastro .form-control, #formCadastroX .form-control, #formLogin .form-control {
  border: 1px solid #ccc;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#formCadastro .form-control:hover, #formCadastroX .form-control:hover, #formLogin .form-control:hover {
  border-color: #00c4a7;
  box-shadow: 0 0 8px rgba(0, 196, 167, 0.2);
}
#formCadastro .form-control:focus, #formCadastroX .form-control:focus, #formLogin .form-control:focus {
  border-color: #00c4a7;
  box-shadow: 0 0 12px rgba(0, 196, 167, 0.3);
}
#formCadastro .btn-submit, #formCadastroX .btn-submit, #formLogin .btn-submit {
  background: #00c4a7;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  width: 100%;
}
/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: #0e0e0e;
    color: #fff;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
}

.faq-question {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 18px 20px;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-question:hover {
    background: #222;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #141414;
    border-left: 3px solid #00d37e;
    border-radius: 0 0 10px 10px;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 20px 0;
    color: #eee;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

/* Animation for FAQ */
.faq-question::after {
    content: "+";
    float: right;
    transition: 0.3s;
}

.faq-item.active .faq-question::after {
    content: "-";
}
/* Container */
.faq-premium {
    padding: 70px 20px;
    background: #000000; /* fallback */
    background: linear-gradient(135deg, #000202 0%, #0b9682 45%, #000000 100%);
    color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Título */
.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Item */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.open {
    border-color: #00ff99;
}

/* Header */
.faq-header {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Ícone animado */
.faq-icon {
    width: 22px;
    height: 22px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #00ff99;
    border-radius: 2px;
    transition: 0.3s;
}

.faq-icon::before {
    width: 100%;
    height: 3px;
    top: 10px;
    left: 0;
}

.faq-icon::after {
    width: 3px;
    height: 100%;
    top: 0;
    left: 10px;
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Corpo com animação de altura */
.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #ddd;
    font-size: 17px;
    line-height: 1.6;
    transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-item.open .faq-body {
    padding: 0 20px 20px 20px;
}

.modal-fullscreen .modal-body {
    overflow-y: unset!important;
}
form .form-group small{
      color: blue !important;
    font-size: 70% !important;
    line-height: 1.3 !important;
    display: inline-block!important;
}