.elementor-416 .elementor-element.elementor-element-8d42767{--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-416 .elementor-element.elementor-element-fcb436a{--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-416 .elementor-element.elementor-element-fcb436a{--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-416 .elementor-element.elementor-element-a75a512{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-64f2dfd *//* 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-9d83ba5 *//* SEÇÃO */
.contact-section {
  background: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: "Inter", system-ui, sans-serif;
  color: #0f172a;
}

.contact-container {
  max-width: 620px;
  width: 100%;
}

/* TÍTULO */
.contact-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 35px;
}

/* FORM */
.contact-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

/* GRUPOS */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

/* CAMPOS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 1rem;
  transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d6ff2f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(214,255,47,0.25);
}

/* BOTÃO VERDE NEON */
.send-btn {
  width: 100%;
  padding: 16px;
  background: #d6ff2f;    /* verde neon da BitFit */
  color: #000;            /* texto preto */
  font-weight: 700;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.send-btn:hover {
  filter: brightness(.93);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-title {
    font-size: 2rem;
  }
  .contact-form {
    padding: 24px;
  }
}
.send-btn {
  width: 100%;
  padding: 16px;
  background: #d6ff2f;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.25s ease;
}

/* HOVER FORÇADO 100% */
.send-btn:hover {
  background: #c9f22c;     /* uma leve escurecida, nada de roxo entrando */
  color: #000;
  transform: translateY(-2px);
  filter: none;            /* bloqueia possíveis filtros externos */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a75a512 *//* 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 */