@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
}

.btn-outline {
  border: 1px solid #64748b;
  background-color: white;
  color: #64748b;
}
.btn-outline i {
  font-size: 1.1rem;
}
.btn-outline:hover {
  border: 1px solid #64748b;
  background-color: white;
  color: #64748b;
}

.btn-primary {
  border: 1.5px solid;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%), #7C3AED;
  box-shadow: 0px 9px 12px rgba(14, 18, 27, 0.02);
}
.btn-primary:hover {
  color: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%), #7C3AED;
  box-shadow: 0px 9px 12px rgba(14, 18, 27, 0.02);
}

.btn-primary-lg {
  border-radius: 16px;
  padding: 0.7rem 1rem;
}

.btn-black {
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: radial-gradient(ellipse at bottom, rgb(71, 81, 92) 0%, rgb(11, 21, 30) 45%);
}
.btn-black:hover {
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: radial-gradient(ellipse at bottom, rgb(71, 81, 92) 0%, rgb(11, 21, 30) 45%);
}

details {
  background: #F1F5F9;
  /* cinza claro */
  border-radius: 20px;
  padding: 24px;
  overflow: hidden;
}

summary {
  list-style: none;
  /* remove seta padrão */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  /* separa texto e ícone */
  align-items: center;
  font-weight: 500;
}

/* Ícone personalizado (antes estava a seta do navegador) */
summary::after {
  content: "䕌";
  font-family: "hgi-stroke-rounded" !important;
  font-size: 1.2em;
  color: #475569;
  transition: transform 0.3s, content 0.3s;
}

/* Troca ícone quando está aberto */
details[open] summary::after {
  content: "䎰";
  color: #475569;
  /* ícone aberto */
}

/* Remove sublinhado ao focar/clicar */
summary:focus {
  outline: none;
}

/* Espaço da resposta */
details > div {
  margin-top: 0.5em;
  line-height: 1.5;
}

.text-black {
  color: #0d0d12 !important;
}

.session-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.session-badge {
  border: 1px solid #E2E8F0;
  border-radius: 32px;
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.session-badge span {
  color: #64748B;
  font-weight: 500;
  font-size: 14px;
}

.session-title {
  font-size: 48px;
  text-align: center;
  max-width: 1000px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .session-title {
    font-size: 28px;
  }
}

.session-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
  text-align: center;
  color: #64748B;
  max-width: 800px;
}
@media (max-width: 767.98px) {
  .session-description {
    font-size: 16px;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #064BB1, #C36BE5);
  -webkit-background-clip: text;
  /* Necessário para Chrome/Safari */
  -webkit-text-fill-color: transparent;
  /* Necessário para Chrome/Safari */
  background-clip: text;
  /* Padrão */
  color: transparent;
}

.section-bg-linear-wrapper {
  background: linear-gradient(180deg, #F8FAFC 0%, #EDE9FE 100%);
  border-radius: 16px;
  max-width: 1480px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .section-bg-linear-wrapper {
    border-radius: unset;
  }
}
.bg-success-linear {
  background: linear-gradient(0deg, #059669, #059669), linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
}

header {
  height: 80px;
  z-index: 50;
  transition: 1s;
  margin-top: 1rem;
}
header .logo-container {
  width: 300px;
}
header #toggle-mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  background: #F5F3FF;
  border: 1px solid #EDE9FE;
  border-radius: 100px;
  font-size: 1.1rem;
}

header nav {
  transition: 0.5s ease-in-out;
}

header .container {
  background-color: white;
  box-shadow: 0px 4px 40px 0px rgba(40, 40, 40, 0.1019607843);
}

header.scrolled {
  position: fixed !important;
}
header.scrolled .container {
  transition: 1s;
  max-width: 900px;
  animation: header-scrolled 1s forwards;
}
header.scrolled .container .logo-container {
  width: auto;
}
header.scrolled .container #auth-buttons .login-btn {
  display: none;
}

@keyframes header-scrolled {
  0% {
    opacity: 0;
    top: -40% !important;
  }
  100% {
    top: 1rem !important;
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  header {
    height: 60px;
    transition: 0.4s;
    padding: 0 0.4rem;
  }
  header #auth-buttons {
    padding: 1rem;
    gap: 0.5rem;
    flex-direction: column-reverse;
  }
  header #auth-buttons .btn {
    width: auto;
  }
  header .logo {
    max-width: 180px;
  }
  header nav {
    position: fixed;
    transition: 0.6s ease;
    top: -100vh;
    z-index: 1000;
    background-color: white;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: start !important;
    border-radius: 22px;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
  }
  header nav div {
    width: 100%;
  }
  header nav a {
    padding: 1.4rem;
    width: 100%;
    text-align: center;
  }
  header nav.open {
    right: unset;
    opacity: 1;
    top: calc(60px + 2rem);
  }
}
@media (max-width: 1199.98px) {
  header .logo-container {
    width: auto;
  }
}
main {
  min-height: 100vh;
  width: 100%;
  background-image: url(../images/main/main-bg.png);
  background-size: cover;
  padding-top: 180px;
}
main .session-title {
  font-size: 68px;
  max-width: 1000px;
}
main .desk-image {
  margin-left: 26px;
}
main .call-to-action {
  margin-top: 2.5rem;
}
@media (max-width: 1399.98px) {
  main .desk-image {
    margin-left: unset;
  }
}
@media (max-width: 767.98px) {
  main {
    min-height: auto;
    padding-top: 130px;
  }
  main .session-title {
    font-size: 40px;
  }
}

#sale-all-days .sale-card {
  max-width: 405px;
  min-height: 310px;
  padding: 2rem;
  flex: 1;
  gap: 8px;
  border-radius: 32px;
  border: 1px solid #E3EAF1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1199.98px) {
  #sale-all-days .sale-card {
    padding: 1rem;
  }
}
#sale-all-days .sale-card .sale-card_icon {
  background: linear-gradient(0deg, #EF4444, #EF4444), linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 100%);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  margin-bottom: 48px;
}
@media (max-width: 1199.98px) {
  #sale-all-days .sale-card .sale-card_icon {
    margin-bottom: 24px;
  }
}
#sale-all-days .sale-card .sale-card_title {
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -1%;
  text-align: center;
}
#sale-all-days .sale-card .sale-card_description {
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  color: #64748B;
}

#no-manual-attendants img {
  max-width: 520px;
}

#what-fechai-do .what-card {
  max-width: 570px;
  min-height: 134px;
}
#what-fechai-do img {
  max-width: 600px;
}

#stop-losing .with-fechai-card {
  min-height: 510px;
  background: linear-gradient(0deg, #7C3AED, #7C3AED), linear-gradient(347.06deg, rgba(255, 255, 255, 0) 17.81%, rgba(255, 255, 255, 0.2) 118.18%);
}
#stop-losing .with-fechai-card .with-fechai-card_flag {
  background: linear-gradient(0deg, #4C1D95, #4C1D95), linear-gradient(334.84deg, rgba(255, 255, 255, 0) 1.84%, rgba(255, 255, 255, 0.12) 116.4%);
  margin-bottom: 9px;
}
#stop-losing .without-fechai-card {
  border-start-start-radius: 1rem;
  border-end-start-radius: 1rem;
}

@media (max-width: 991.98px) {
  #stop-losing .with-fechai-card {
    width: 100%;
    min-height: unset;
  }
  #stop-losing .with-fechai-card .with-fechai-card_flag {
    margin-bottom: 4px;
  }
  #stop-losing .without-fechai-card {
    border-radius: 1rem;
  }
}
#plan .without-time .container {
  background: linear-gradient(95.78deg, #A78BFA 0%, #7C3AED 100%);
  border-radius: 32px;
  margin-top: -100px;
  padding: 5rem;
}
@media (max-width: 767.98px) {
  #plan .without-time .container {
    padding: 2.2rem;
    margin-top: -140px;
  }
}
#plan .without-time .container h4 {
  max-width: 800px;
}
#plan .without-time .container p {
  max-width: 680px;
  font-size: 18px;
}

footer {
  background-image: url(../images/footer/bg.png);
  background-size: cover;
  background-position: 20%;
}
footer .social-link {
  min-width: 40px;
  min-height: 40px;
  background: #FFFFFF;
  border: 0.666667px solid #E3EAF1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: black;
  text-decoration: none;
  font-size: 14px;
}

:root {
  --bs-primary: #7C3AED;
  --bs-primary-rgb: 124, 58, 237;
}

* {
  font-family: "Instrument Sans", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
}

.text-muted {
  color: #64748B !important;
}

.pt-6 {
  padding-top: 6rem;
}
@media (max-width: 767.98px) {
  .pt-6 {
    padding-top: 5.5rem;
  }
}

.pb-6 {
  padding-bottom: 6rem;
}
@media (max-width: 767.98px) {
  .pb-6 {
    padding-bottom: 5.5rem;
  }
}

.gap-6 {
  gap: 6rem;
}
@media (max-width: 1199.98px) {
  .gap-6 {
    gap: 4rem;
  }
}/*# sourceMappingURL=index.css.map */