@charset "UTF-8";
:root {
  --purple: #6E37FA;
  --white: #F5F5F5;
  --black: #000000;
  --blue-1: #150523;
  --blue-2: #32444f;
  --blue-3: #0000FF;
  --gray: #7e7e7e;
}

/* ========================================
   CONTAINER RESPONSIVO - Padrão 1280px
   Usar esta classe em todas as seções para padronizar largura
   ======================================== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.row > * {
  padding-left: 0;
  padding-right: 0;
}

.row {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}

/* Small (sm) - Mobile */
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
/* Medium (md) - Tablet */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
/* Large (lg) - Tablet landscape */
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
/* Extra Large (xl) - Desktop */
@media (min-width: 1280px) {
  .container {
    max-width: 1184px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--tp-ff-jakarta);
}

.white-title {
  color: var(--white);
}

.black-title {
  color: var(--black);
}

.gray-title {
  color: var(--gray);
}

body {
  font-family: sans-serif;
}

.hero-subtext-v2 {
  font-size: 1.5rem !important;
  line-height: 1.25;
  color: var(--purple);
  margin-bottom: 45px;
  max-width: 600px;
}

/* Header section */
.header-nav {
  background-color: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 12px 0;
  font-size: 24px;
  position: relative;
  z-index: 100;
  filter: drop-shadow(0px 0px 2px color-mix(in oklab, #000 20%, transparent));
}

.header-img {
  height: 55px;
  width: auto;
}

.side-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  gap: 32px;
}

.header-list {
  display: flex;
  list-style: none;
  gap: 32px;
  font-size: 16px;
  font-weight: 600;
}

.header-item:hover {
  color: var(--purple);
}

.buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 16px;
}

.header-button1 {
  border: 2px solid var(--purple);
  color: var(--purple);
  padding: 2px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.header-button1:hover {
  transform: translateY(-1px);
}

.header-button2 {
  background-color: var(--purple);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.header-button2:hover {
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--black);
  border-radius: 10px;
  transition: all 0.3s linear;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}

/* Results sections */
.infos-container {
  background: linear-gradient(to bottom, var(--blue-1) 50%, var(--blue-2) 50%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0px;
  gap: 48px;
  width: 100%;
  /* margin-top: -50vh;
  position: relative;
  z-index: 10; */
}

.title-align-wrapper {
  width: 100%;
  text-align: center;
}

.title-align-wrapper.container-fluid {
  margin-left: auto;
  margin-right: auto;
}

.tags-title {
  color: var(--white);
}

.tags-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10px;
}

.tags-item {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  padding: 0 40px;
  line-height: 1.4;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.tags-item:not(:first-child)::before {
  content: "";
  display: block;
  width: 2px;
  height: 3.5em;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.tags-item:not(:first-child) {
  position: relative;
  padding-left: 40px;
}

.infos-image {
  height: 100%;
  width: 80vw;
  border-radius: 50px;
  aspect-ratio: 16/9;
}

/* Services section */
.services-container {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
  background-color: #121116;
  background-size: cover;
  background-position: center;
  /* position: relative; */
}

.service-text-box,
.price-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.service-tag {
  font-size: 24px;
  font-weight: 600;
  color: rgb(93, 227, 255);
}

.service-description,
.price-description {
  width: 50%;
  text-align: center;
  color: rgb(147, 148, 161);
  font-size: 18px;
  line-height: 1.5rem;
  margin-bottom: 20px;
}

.service-description {
  margin-bottom: 40px;
}

.service-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
}

.service-card-title {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 16px;
}

.service-card-title h4 {
  margin-bottom: 0;
}

.service-card2 p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.5rem;
}

.service-card2 {
  color: var(--white);
  text-align: left;
}

.service-text {
  color: var(--gray);
}

/* prices-container */
.prices-container {
  padding: 80px 0;
  background-color: var(--blue-1);
  color: var(--white);
}

.prices-texts {
  text-align: center;
}

.prices-texts p {
  color: #B39797;
}

.price-sec-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.service-text-box,
.price-text-box {
  text-align: center;
  margin-bottom: 0;
}

.service-title,
.price-title {
  font-size: 60px;
  margin-bottom: 20px;
}

.tab-pane-prices {
  justify-content: center;
  animation: fadeIn 0.5s ease-in-out;
  width: 100%;
}

.pricing-card-col {
  flex: 0 0 calc(33.333% - 30px);
  max-width: 400px;
  min-width: 300px;
}

.testimonials-area {
  padding: 80px 0;
}

.pricing-card {
  background-color: #121116;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.pricing-card:hover {
  transform: scale(1.03);
  border-color: rgba(138, 79, 255, 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.pricing-header {
  padding: 24px 0 12px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 600;
  color: #E0E0FF;
  margin: 0;
  letter-spacing: -0.5px;
}

.pricing-subtitle {
  font-size: 14px;
  color: #8A92A9;
  margin-top: 6px;
}

.pricing-content {
  padding: 12px 0 24px;
}

.price-wrapper {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.price-value {
  font-size: 36px;
  font-weight: 700;
  color: #E0E0FF;
}

.price-total {
  color: #fff;
}

.price-period {
  color: #8A92A9;
  font-size: 14px;
}

.price-discount {
  color: #E0E0FF;
  font-size: 20px;
  margin-left: 10px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  color: #8A4FFF;
  flex-shrink: 0;
}

.feature-text {
  color: #E0E0FF;
  font-size: 14px;
}

.pricing-footer {
  padding-top: 12px;
}

.subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  background: linear-gradient(to right, #8A4FFF, #6C2BD9);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.price-box {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background: var(--white);
  color: var(--black);
  border-radius: 4px;
}

.price-box ul {
  padding: 10px 0px 30px;
  margin: 17px 0 0 0;
  list-style: none;
  border-top: solid 1px var(--black);
}

.price-box ul li {
  padding: 7px 0;
  font-size: 14px;
}

.price-box ul li .fas {
  color: #68AE4A;
  margin-right: 7px;
  font-size: 12px;
}

.price-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.34;
  margin-bottom: 0;
  padding: 6px 15px;
  display: inline-block;
  border-radius: 3px;
}

.price-label.basic {
  background: var(--purple);
  color: var(--white);
}

.price-label.value {
  background: #E8F5E9;
  color: #4CAF50;
}

.price-label.premium {
  background: #FBE9E7;
  color: #FF5722;
}

.price {
  font-size: 44px;
  line-height: 44px;
  margin: 15px 0 6px;
  font-weight: 900;
}

.price-info {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.67;
  color: inherit;
  width: 100%;
  margin: 0;
}

.plan-btn {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  padding: 11px 30px;
  border: 2px solid var(--purple);
  margin-top: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 5px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.plan-btn::after {
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--purple);
  z-index: -1;
  transition: all 0.35s ease-in-out;
}

.plan-btn:hover::after {
  left: 0;
}

.plan-btn:hover,
.plan-btn:focus {
  text-decoration: none;
  color: #fff;
}

/* Pills */
.pills-container {
  /* padding: 40px 0; */
  width: 100%;
  background-color: var(--blue-1, #150523);
  display: flex;
  justify-content: center;
}
.pills-container.variant {
  background-color: transparent;
}

.nav-pills {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  gap: 15px;
  width: 100%;
  margin-bottom: 30px;
}
.nav-pills .nav-item {
  flex: 1;
  max-width: 250px;
}
.nav-pills .nav-item .nav-link {
  width: 100%;
  padding: 14px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}
.nav-pills .nav-item .nav-link.active {
  background-color: var(--purple, #6e37fa);
  color: #fff;
  box-shadow: 0 4px 15px rgba(110, 55, 250, 0.3);
}
.nav-pills .nav-item .nav-link:hover:not(.active) {
  background-color: rgba(110, 55, 250, 0.2588235294);
  color: #fff;
}

/* Featured pricing card - Plano Performance */
.pricing-card.featured-card {
  border: 2px solid var(--purple, #8A4FFF);
  box-shadow: 0 0 30px rgba(138, 79, 255, 0.4);
  position: relative;
  background: linear-gradient(135deg, #1a1825 0%, #1f1c2e 100%);
}
.pricing-card.featured-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(138, 79, 255, 0.6);
}
.pricing-card .featured-badge {
  position: absolute;
  top: -13px;
  right: 17px;
  background: linear-gradient(135deg, #8A4FFF, #6C2BD9);
  color: white;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(138, 79, 255, 0.5);
}

/* Selectable pricing cards */
.pricing-card-selectable {
  transition: all 0.3s ease;
}
.pricing-card-selectable.pricing-card.featured-card {
  transform: scale(1) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pricing-card-selectable.pricing-card:hover {
  transform: scale(1) !important;
}

.pricing-card-selected {
  border: 3px solid var(--purple, #8A4FFF) !important;
  box-shadow: 0 0 35px rgba(138, 79, 255, 0.6) !important;
  transform: scale(1) !important;
}
.pricing-card-selected.featured-card {
  transform: scale(1) !important;
  box-shadow: 0 0 45px rgba(138, 79, 255, 0.8) !important;
}

.radio-label-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
}

.radio-label-card input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--purple, #8A4FFF);
}

.radio-label-card .radio-text {
  font-size: 14px;
  font-weight: 600;
  color: #E0E0FF;
}

.plans-selection-wrapper {
  margin-top: 30px;
}

.plans-selection-wrapper .plans-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-1);
  margin-bottom: 20px;
}

/* Contact form */
.contact-area {
  padding: 80px 0;
  background-color: rgb(29, 29, 33);
  background-image: url("/project/assets/images/contact/bg.png");
  background-image: url(http://sistemasclientes.com.br/projetos/astro/nutriflow/project/assets/images/contact/bg.png);
  background-size: cover;
  background-position: center;
  font-size: 1.2em;
}

.contact-title {
  font-size: 4em;
  font-weight: 600;
  padding: 0;
  line-height: 1.1;
}

.contact-subtitle {
  font-size: 1.5em;
}

.reasonsList {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reason-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.reason {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0px;
}

.general-info {
  padding: 20px 0;
  color: var(--white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 16px;
}

.contact-form-half-line {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 10px;
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-size: 16px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 12px;
  color: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #008a5e;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
  color: #999;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--white);
  text-decoration: underline;
}

.submit-btn {
  background: #008a5e;
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #00a36f;
}

/* FAQs */
.faq-area {
  padding: 80px 0;
  background-color: #121116;
  color: var(--white);
}

.faq-header {
  padding: 0;
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid var(--gray);
}

.faq-item:last-of-type summary {
  padding-bottom: 0;
}
.faq-item:last-of-type .answer-content {
  padding-top: 20px;
}

summary {
  list-style: none;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

:global(.faq-question-text) {
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
}

.icon-box {
  font-size: 1.8em;
  width: 32px;
  height: 32px;
  background: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

details[open] .plus {
  display: none;
}

details:not([open]) .minus {
  display: none;
}

.answer-content {
  padding-bottom: 40px;
  max-width: 85%;
}

.faq-answer-text {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.25em;
}

/* Footer */
.footer-area {
  padding: 100px 0 40px;
  background-color: var(--white);
  color: var(--black);
  border-top: 1px solid #111;
}

.footer-area p {
  color: var(--gray);
}

.footer-logo {
  height: 80px;
  width: auto;
}

:global(.footer-info-text) {
  color: #888;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 2px;
}

.footer-contact-info {
  display: flex;
  gap: 40px;
}

:global(.info-label) {
  font-size: 18px;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.info-link {
  color: var(--purple);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.info-link:hover {
  color: #008a5e;
}

:global(.footer-list-title) {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.topic-footer {
  margin-bottom: 40px;
}

.info-topic {
  color: var(--purple);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.info-topic:hover {
  color: #3030e7;
}

.footer-bottom {
  border-top: 1px solid #111;
  padding-top: 40px;
}

/* Validator */
.form-notification-wrapper {
  border-radius: 12px;
  font-family: "Jakarta", sans-serif;
  animation: slideDown 0.3s ease-out;
  color: #d63031;
}

.form-notification-wrapper.form-negative,
.form-notification-wrapper.form-error {
  background-color: #fff5f5;
  border-left: 5px solid #ff4d4d;
  color: #d63031;
}

.form-notification-wrapper.form-warning {
  background-color: #fffdf0;
  border-left: 5px solid #f1c40f;
  color: #b7950b;
}

.form-notification-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-notification {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.inline-error {
  color: #ff4d4d;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 6px;
  margin-left: 4px;
  display: block;
  animation: fadeIn 0.2s ease-in;
}

.copyright-text {
  margin-bottom: 0;
}

/* Media-queries */
:global(.copyright-text) {
  font-size: 13px;
  color: #444;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1368px) {
  .header-item,
  .header-button1,
  .header-button2 {
    font-size: 16px;
  }
  .prices-container,
  .testimonials-area,
  .infos-container,
  .faq-area,
  .contact-area,
  .footer-area,
  .services-container {
    padding: 50px 20px;
  }
  .nav-pills {
    padding: 0 20px;
  }
  .nav-link {
    font-size: 16px;
    padding: 12px 15px;
  }
}
/* Breakpoint para tablets - Services 2 colunas, Planos 1 coluna */
@media (max-width: 1024px) {
  .service-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
  }
  .price-sec-wrap {
    grid-template-columns: 1fr;
  }
  .tags-info {
    flex-direction: column;
    text-align: center;
  }
  .tags-item:not(:first-child)::before {
    display: none;
  }
  .service-text-box,
  .price-text-box {
    margin-bottom: 0px;
  }
}
@media (max-width: 700px) {
  /* header */
  .header-nav {
    justify-content: space-between;
    padding: 15px 30px;
    gap: 1em;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 100px 30px;
    transition: right 0.4s ease;
    z-index: 99;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  .side-menu.active {
    right: 0;
  }
  .overlay.active {
    display: block;
  }
  .header-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .buttons {
    flex-direction: column;
    width: 100%;
  }
  .buttons a,
  .buttons button {
    width: 100%;
  }
  /* hero */
  .background-hero-img {
    height: 60vh;
  }
  .background-hero-title {
    font-size: 3.5rem !important;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero-button {
    font-size: 1.5rem !important;
    padding: 12px 24px;
  }
  .tp-banner-cst-content {
    padding: 0 15px;
  }
  /* results - infos */
  .infos-container {
    background: linear-gradient(to bottom, var(--blue-1) 60%, var(--blue-2) 40%);
    gap: 24px;
  }
  .tags-info {
    flex-direction: column;
    text-align: center;
  }
  .tags-item {
    font-size: 18px;
  }
  .tags-item:not(:first-child)::before {
    display: none;
  }
  .infos-image {
    height: 30vh;
    width: 100%;
  }
  /* Services */
  .service-description,
  .price-description {
    width: 100%;
    font-size: 1.125rem;
  }
  .service-title,
  .price-title {
    font-size: 36px;
    text-align: center;
  }
  .service-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5em;
    padding: 0;
  }
  .service-card2 {
    width: 100%;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  /* prices */
  .prices-texts .tp-section-ai-title {
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .prices-texts .tp-section-ai-para {
    font-size: 16px !important;
    margin-bottom: 40px;
    width: 100%;
  }
  .price-sec-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .col-lg-3 {
    width: 100%;
    padding: 0;
  }
  .price-box {
    padding: 25px;
    margin: 0 auto;
  }
  .price {
    font-size: 38px;
    line-height: 1;
  }
  .plan-btn {
    padding: 15px 20px;
    font-size: 16px;
  }
  .price-value {
    font-size: 26px;
  }
  /* pills */
  .pills-container {
    padding: 0;
  }
  .nav-pills {
    flex-direction: column;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 10px;
    padding: 0;
    scrollbar-width: none;
    margin-bottom: 20px;
  }
  .nav-pills::-webkit-scrollbar {
    display: none;
  }
  .nav-pills .nav-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }
  .nav-link {
    font-size: 15px;
    white-space: nowrap;
  }
  /* contact */
  .contact-form {
    padding: 12px;
    border-radius: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea,
  .form-group label,
  .checkbox-label {
    font-size: 14px;
  }
  .form-group input {
    padding: 10px 12px;
  }
  .form-footer {
    flex-direction: column;
    margin-top: 16px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-form-half-line {
    flex-direction: column;
  }
  .label-full {
    width: 100%;
  }
  /* faq */
  .faq-header {
    padding: 0;
  }
  .icon-box {
    min-width: 32px;
  }
  .faq-question-text {
    font-size: 18px;
  }
  .faq-answer-text {
    font-size: 14px;
  }
  .plus,
  .minus {
    font-size: 1em;
  }
  .answer-content {
    padding-bottom: 16px;
  }
  /* footer */
  .footer-area {
    text-align: center;
    font-size: 12px;
  }
  .footer-top {
    margin-bottom: 24px;
  }
  .footer-logo {
    height: 60px;
    margin: 0 auto;
  }
  .footer-contact-info {
    gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .info-topic,
  .info-link,
  .info-label {
    font-size: 16px;
  }
  .topic-footer {
    width: 100%;
    margin-bottom: 16px;
  }
  .footer-list li {
    margin-bottom: 0;
  }
  .footer-bottom {
    margin-top: 24px;
  }
  /* validator */
  .form-notification {
    padding: 10px 0;
  }
  :global(.copyright-text) {
    font-size: 12px;
  }
}
.white-title {
  color: var(--white);
}

.black-title {
  color: var(--black);
}

.gray-title {
  color: var(--gray);
}

body {
  font-family: sans-serif;
}

.hero-terms {
  max-height: 50%;
}

.terms-container {
  background-color: var(--white);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

hr {
  clear: both;
  border: 0;
  height: 1px;
  width: 80%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.term-title {
  padding: 32px 0 48px 0;
}

.term-paragraph {
  font-weight: 300;
  text-align: justify;
}

@media (max-width: 700px) {
  .term-title {
    padding: 16px 0;
  }
  .term-paragraph {
    text-align: left;
  }
}
.white-title {
  color: var(--white);
}

.black-title {
  color: var(--black);
}

.gray-title {
  color: var(--gray);
}

body {
  font-family: sans-serif;
}

.wizard-section {
  padding: 50px 20px;
  background-color: var(--white);
}

.wizard-container {
  margin: 0 auto;
}

.form-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.register-form {
  width: 75%;
}

.register-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  color: black;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.register-form input:focus {
  border-color: var(--purple, #6f42c1);
  box-shadow: 0 0 0 2px rgba(111, 66, 193, 0.1);
}

.form-step-container {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-step-container label {
  color: var(--black);
}

.form-group-wizard {
  margin-bottom: 20px;
}

.form-group-wizard.has-error .form-input-wizard {
  border-color: #ff0000;
}

.control-label-wizard {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-input-wizard:-webkit-autofill,
.form-input-wizard:-webkit-autofill:hover,
.form-input-wizard:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #f9f9f9 inset;
  transition: background-color 5000s ease-in-out 0s;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-wizard-prev,
.btn-wizard-next,
.btn-wizard-success {
  margin-top: 10px;
  background-color: var(--purple, #6f42c1);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s;
}

.btn-wizard-next:hover,
.btn-wizard-success:hover {
  opacity: 0.9;
}

.btn-wizard-success {
  background-color: #28a745;
}

.btn-wizard-prev {
  background-color: #f3f4f6;
  color: #374151;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-wizard-prev:hover {
  background-color: #e5e7eb;
}

.stepper-item.active .stepper-icon {
  color: var(--purple);
}

.stepper-item.active .stepper-title {
  color: var(--purple);
}

.stepper-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.stepper-container {
  width: 75%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.stepper-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stepper-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  position: relative;
  color: #4b5563;
}

.stepper-item:not(:last-child) {
  border-right: 1px solid #e5e7eb;
}

.stepper-item.active {
  background-color: #f9fafb;
}

.stepper-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.stepper-content {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.stepper-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.stepper-desc {
  font-size: 12px;
  margin-top: 4px;
  color: #6b7280;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* radio */
.plans-radio-group {
  margin: 20px 0;
  font-family: "Jakarta", sans-serif;
}

.plans-label {
  color: var(--black);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 15px;
}

.plan-option input[type=radio] {
  display: none;
}

.plan-option {
  cursor: pointer;
  display: block;
  transition: all 0.3s ease;
}

.plan-card {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.plan-option.selected .plan-card {
  border-color: var(--purple);
  background: #f0ebff;
  box-shadow: 0 4px 12px rgba(110, 55, 250, 0.15);
  transform: translateY(-2px);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-name {
  color: var(--blue-1);
  font-weight: 700;
  font-size: 1rem;
}

.plan-category {
  background: var(--blue-2);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.plan-price {
  color: var(--purple);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
}

.discount-badge {
  color: #27ae60;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-period {
  color: var(--gray);
  font-size: 0.85rem;
}

.plan-option:not(.selected):hover .plan-card {
  border-color: var(--gray);
  background: #fafafa;
}

.plan-option.selected .plan-card::after {
  content: "✓";
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--purple);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* resumo - pt3 */
.form-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.summary-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
}

.summary-section h4 {
  color: var(--purple);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 8px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.summary-label {
  color: var(--gray);
  font-weight: 500;
}

.summary-value {
  color: var(--black);
  font-weight: 600;
  text-align: right;
}

.summary-section {
  border-left: 4px solid var(--purple);
}

@media (min-width: 641px) {
  .stepper-item.active::before,
  .stepper-item.active::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background-color: inherit;
    border: 1px solid #e5e7eb;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
  }
  .stepper-item.active::before {
    left: -9px;
    border-right: none;
    border-top: none;
  }
  .stepper-item.active::after {
    right: -9px;
    border-left: none;
    border-bottom: none;
    background-color: #f9fafb;
  }
}
@media (max-width: 700px) {
  .stepper-list {
    flex-direction: column;
  }
  .stepper-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .register-form {
    width: 100%;
  }
  .form-step-container {
    padding: 20px 15px;
  }
  .wizard-actions {
    flex-direction: column-reverse;
  }
  .btn-wizard-next,
  .btn-wizard-prev,
  .btn-wizard-success {
    width: 100%;
  }
  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  /* Tabela de planos - Mobile */
  .plans-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .plans-table {
    min-width: 600px;
  }
  .plans-table th {
    padding: 15px 10px;
    font-size: 14px;
  }
  .plans-table th.period-column {
    padding-left: 15px;
  }
  .plans-table .period-cell {
    padding: 15px;
    gap: 8px;
  }
  .period-name {
    font-size: 14px;
  }
  .period-discount {
    font-size: 10px;
    padding: 3px 8px;
  }
  .plan-option-table {
    padding: 15px 10px;
  }
  .plan-price-table {
    font-size: 20px;
  }
  .discount-badge-table {
    font-size: 10px;
    padding: 3px 8px;
  }
  .summary-item {
    flex-direction: column;
    gap: 2px;
  }
  .summary-value {
    text-align: left;
  }
}
/* Tabela de planos */
.plans-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}

.plans-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.plans-table thead {
  background: var(--purple);
}

.plans-table th {
  padding: 20px 15px;
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plans-table th.period-column {
  background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
  text-align: left;
  padding-left: 30px;
}

.plans-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.plans-table tbody tr:last-child {
  border-bottom: none;
}

.plans-table td {
  padding: 0;
  text-align: center;
  background: white;
}

.plans-table .period-cell {
  padding: 20px 30px;
  text-align: left;
  background: #f9fafb;
  font-weight: 600;
  color: var(--blue-1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.period-name {
  font-size: 16px;
}

.period-discount {
  display: inline-block;
  background: #27ae60;
  color: white;
  font-size: 11px;
  line-height: 1.25;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 700;
}

.plan-cell {
  position: relative;
}

.plan-option-table {
  display: block;
  cursor: pointer;
  padding: 20px 15px;
  transition: all 0.3s ease;
  position: relative;
}

.plan-option-table input[type=radio] {
  display: none;
}

.plan-option-table:hover {
  background: rgba(138, 79, 255, 0.05);
}

.plan-option-table.selected {
  background: rgba(138, 79, 255, 0.1);
}

.plan-option-table.selected::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--purple);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.plan-cell-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.plan-price-table {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-1);
}

.discount-badge-table {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Mensagem de resposta da API */
.api-response-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
}

.api-response-message.success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.api-response-message.error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.api-response-message p {
  margin: 0;
  line-height: 1.5;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   CUSTOM HEADER - Component específico do projeto
   ======================================== */
/* Header Container */
.custom-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.custom-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/* Logo */
.custom-header-logo {
  flex-shrink: 0;
}

.custom-header-logo-img {
  height: 55px;
  width: auto;
  display: block;
}

/* Navigation (Desktop) */
.custom-header-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.custom-header-nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.custom-header-nav-item {
  margin: 0;
}

.custom-header-nav-link {
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.custom-header-nav-link:hover {
  color: var(--purple);
}

.custom-header-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--purple);
  transition: width 0.3s ease;
}

.custom-header-nav-link:hover::after {
  width: 100%;
}

/* Buttons (Desktop) */
.custom-header-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.custom-header-btn {
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.custom-header-btn-outline {
  border: 2px solid var(--purple);
  color: var(--purple);
  background-color: transparent;
}

.custom-header-btn-outline:hover {
  background-color: var(--purple);
  color: var(--white);
  transform: translateY(-1px);
}

.custom-header-btn-primary {
  background-color: var(--purple);
  color: var(--white);
  border: 2px solid var(--purple);
}

.custom-header-btn-primary:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* Hamburger (Mobile) */
.custom-header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.custom-header-hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--black);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.custom-header-hamburger.active .custom-header-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.custom-header-hamburger.active .custom-header-hamburger-line:nth-child(2) {
  opacity: 0;
}

.custom-header-hamburger.active .custom-header-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Drawer (Mobile) */
.custom-header-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 100px 30px 40px;
}

.custom-header-drawer.active {
  right: 0;
}

.custom-header-drawer-nav {
  flex: 1;
}

.custom-header-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.custom-header-drawer-item {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.custom-header-drawer-link {
  display: block;
  padding: 20px 0;
  color: var(--black);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.custom-header-drawer-link:hover {
  color: var(--purple);
}

.custom-header-drawer-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.custom-header-drawer-buttons .custom-header-btn {
  width: 100%;
}

/* Overlay */
.custom-header-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.custom-header-overlay.active {
  display: block;
  opacity: 1;
}

/* ========================================
   RESPONSIVE - CUSTOM HEADER
   ======================================== */
/* Tablet e abaixo */
@media (max-width: 1024px) {
  .custom-header-nav-list {
    gap: 24px;
  }
  .custom-header-nav-link {
    font-size: 15px;
  }
  .custom-header-btn {
    padding: 8px 20px;
    font-size: 15px;
  }
  .stepper-container {
    width: 100%;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .tags-info {
    margin-bottom: 0;
  }
  .tags-item:last-of-type {
    margin-bottom: 0;
  }
  .custom-header-logo-img {
    height: 45px;
  }
  /* Hide desktop navigation and buttons */
  .custom-header-nav,
  .custom-header-buttons {
    display: none;
  }
  /* Show hamburger */
  .custom-header-hamburger {
    display: flex;
  }
  /* Drawer adjustments for smaller screens */
  .custom-header-drawer {
    width: 280px;
  }
}
/* Very small mobile */
@media (max-width: 640px) {
  .custom-header-logo-img {
    height: 40px;
  }
  .custom-header-drawer {
    width: 100%;
    max-width: 280px;
  }
}
.whatsapp-wrapper.with-background {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 10px;
  border-radius: 50%;
  background-color: #64d467;
}

.whatsapp-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-wrapper.with-background:hover {
  background-color: #128c7e;
}

.whatsapp-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
}

/*# sourceMappingURL=custom.css.map */
