.elementor-322 .elementor-element.elementor-element-42c79d9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-322 .elementor-element.elementor-element-1f47a29{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-322 .elementor-element.elementor-element-18eb746{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-145px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-322 .elementor-element.elementor-element-761cd8a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-105px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-322 .elementor-element.elementor-element-e9baf76{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-322 .elementor-element.elementor-element-8ede5d0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-322 .elementor-element.elementor-element-9d8a719{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-65px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}@media(max-width:767px){.elementor-322 .elementor-element.elementor-element-761cd8a{--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-322 .elementor-element.elementor-element-e9baf76{--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-322 .elementor-element.elementor-element-8ede5d0{--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-322 .elementor-element.elementor-element-9d8a719{--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-322 .elementor-element.elementor-element-5ee7628{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-81d9a79 *//* básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bitfit-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  padding: 18px 0;
  z-index: 999;
  border-bottom: 1px solid #f1f1f1;
}

.bitfit-container {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bitfit-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
}

/* LOGO MAIOR AGORA */
.bitfit-logo img {
  height: 70px;   /* tamanho bom para desktop */
  width: auto;
  object-fit: contain;
}

.bitfit-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.bitfit-nav a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  transition: 0.2s;
}

.bitfit-nav a:hover {
  opacity: .7;
}

.bitfit-btn {
  background: #d6ff2f;
  padding: 10px 22px;
  border-radius: 28px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.bitfit-btn:hover {
  filter: brightness(.95);
}

/* burger */
.bitfit-burger {
  width: 36px;
  height: 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
}

.bitfit-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 4px;
  transition: transform .25s, opacity .25s;
}

/* mobile menu */
.bitfit-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #fff;
  padding: 80px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right .32s ease;
  border-left: 1px solid #eee;
  z-index: 999;
}

.bitfit-mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
}

.bitfit-btn-mobile {
  background: #d6ff2f;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

/* responsive */
@media (max-width: 900px) {

  .bitfit-nav,
  .bitfit-btn {
    display: none;
  }

  .bitfit-burger {
    display: flex;
  }

  /* LOGO MENOR NO MOBILE PRA NÃO QUEBRAR */
  .bitfit-logo img {
    height: 55px;
    width: auto;
  }
}

/* open state */
.bitfit-mobile-menu.open {
  right: 0;
}

.no-scroll {
  overflow: hidden;
}

/* burger animated X when open */
.bitfit-burger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.bitfit-burger.open span:nth-child(2) {
  opacity: 0;
}

.bitfit-burger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bb62f14 *//* -----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */
.bitfit-hero {
  width: 100%;
  padding: 110px 0 130px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.hero-container {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* -----------------------------------------------------
   TEXT AREA
----------------------------------------------------- */
.hero-left {
  max-width: 580px;
}

.hero-left h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #000;
}

/* Evita quebras aleatórias */
.hero-left h1 br {
  display: none;
}

.hero-left p {
  margin-top: 20px;
  font-size: 20px;
  color: #505050;
  line-height: 1.5;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

/* -----------------------------------------------------
   BUTTONS
----------------------------------------------------- */
.btn-primary {
  background: #d6ff2f;
  padding: 15px 36px;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 17px;
  transition: 0.2s;
}

.btn-primary:hover {
  filter: brightness(0.93);
}

.btn-secondary {
  padding: 15px 36px;
  border-radius: 30px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 17px;
  transition: 0.2s;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
}

/* -----------------------------------------------------
   IMAGE
----------------------------------------------------- */
.hero-right img {
  width: 100%;
  max-width: 560px;
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-left h1 {
    font-size: 46px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 18px;
    margin-top: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
  }

  .hero-right img {
    max-width: 94%;
  }
}

@media (max-width: 480px) {
  .bitfit-hero {
    padding: 80px 0 90px;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-left p {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f35d3bd *//* Container da seção */
.bitfit-app-section {
  width: 100%;
  text-align: center;
  padding: 70px 0;
  font-family: "Inter", sans-serif;
}

/* Subtítulo */
.section-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 6px;
}

/* Título */
.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.25;
}

/* Wrapper da imagem */
.app-image-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,0.18);
}

.app-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
}

/* BOTÃO DENTRO DA IMAGEM */
.btn-on-image {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #d6ff2f;
  padding: 14px 34px;
  border-radius: 30px;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.btn-on-image:hover {
  filter: brightness(0.93);
  transform: translateX(-50%) translateY(-2px);
}

/* Responsivo */
@media (max-width: 600px) {
  .section-title {
    font-size: 28px;
  }
  .btn-on-image {
    padding: 12px 28px;
    font-size: 15px;
    bottom: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-67131d3 */.bitfit-section {
  padding: 80px 20px;
  overflow-x: hidden;
}

.bitfit-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bitfit-left {
  flex: 1;
  min-width: 300px;
}

.bitfit-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bitfit-left p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.btn-verde {
  display: inline-block;
  background: #C8FF42;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  transition: .3s;
  border: 2px solid transparent;
}

.btn-verde:hover {
  background: #b2ff1a;
  border-color: #a4e912;
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  max-width: 500px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  background: #fff;
  transition: .2s;
}

.feature-item:hover {
  border-color: #ccc;
}

.feature-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* RIGHT SIDE */
.bitfit-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.img-wrapper {
  padding: 8px;
  border-radius: 20px;
  background: linear-gradient(180deg, #aad4ff, #fde3c3);
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
}

.img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .bitfit-left h2 {
    font-size: 28px;
  }
  
  .bitfit-container {
    gap: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-69cd49c */.bitfit-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px auto;
  background: #0f0f0f;
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.bitfit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.35);
}

.bitfit-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bitfit-text {
  width: 50%;
  color: #fff;
}

.bitfit-text h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.bitfit-text p {
  font-size: 17px;
  opacity: .85;
  line-height: 1.55;
}

.bitfit-inner img {
  width: 240px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
  transition: transform .25s ease;
}

.bitfit-inner img:hover {
  transform: scale(1.03);
}

/* Responsivo */
@media (max-width: 768px) {
  .bitfit-inner {
    flex-direction: column;
    text-align: left;
    gap: 30px;
  }

  .bitfit-text {
    width: 100%;
  }

  .bitfit-inner img {
    width: 200px;
    border-radius: 22px;
  }

  .bitfit-card {
    padding: 30px;
  }
}

/* Remove scroll horizontal global */
html, body {
  overflow-x: hidden !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ed4053c *//* SEÇÃO FAQ */
.faq-section {
  background: #fff;
  color: #0f172a;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.faq-container {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* TÍTULO */
.faq-title {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
  color: #0f172a;
}

/* ITEM (CARD) */
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0;
  margin-bottom: 18px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.faq-item:hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

/* PERGUNTA */
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  color: #000;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;

  white-space: normal !important;
  word-break: break-word;
  line-height: 1.45;

  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  border-radius: 12px;
  outline: none;
}

.faq-question:hover {
  background: #f5f5f5;
  color: #000 !important;
}

.faq-question:focus,
.faq-question:active {
  background: #f5f5f5 !important;
  color: #000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.faq-question.active {
  color: #000 !important;
}

/* RESPOSTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 20px 0 20px;
}

.faq-answer p {
  font-size: 0.98rem;
  margin-top: 12px;
  margin-bottom: 18px;
  line-height: 1.55;
  color: #475569;
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 1.9rem;
  }
  .faq-question {
    font-size: 1.05rem;
    padding: 16px 18px;
  }
  .faq-answer p {
    font-size: 0.95rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5ee7628 *//* SEÇÃO CALL TO ACTION */
.cta-section {
  text-align: center;
  padding: 70px 20px 40px;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
}

.cta-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.store-btn {
  width: 150px;
  cursor: pointer;
  transition: 0.2s ease;
}

.store-btn:hover {
  transform: scale(1.05);
}


/* RODAPÉ */
.footer {
  background: #fff;
  padding: 50px 20px;
  border-radius: 28px;
  max-width: 1150px;
  margin: 50px auto;
  box-shadow: 0 0 0 1px #eee;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 45px;
  height: 45px;
}

.footer-logo span {
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-left p {
  margin: 15px 0;
  color: #555;
}

.footer-socials a img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: #000;
  padding: 8px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: #444;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #000;
}

.footer-bottom {
  margin-top: 35px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

/* RESPONSIVO */
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}/* End custom CSS */