:root {
  /* Roxo – CTAs, bordas, destaques */
  --flow-primary:       #631f9a;
  --flow-primary-600:   #591a8d;
  --flow-primary-soft:  #efe8ff;

  /* Navy – hero escuro, footer, texto principal */
  --flow-dark:          #002d5d;

  /* Amarelo – hero CTA, números dos passos, banner CTA */
  --flow-yellow:        #FBBF24;
  --flow-yellow-600:    #d97706;

  /* Neutros */
  --flow-text:          #1c2b3a;
  --flow-gray:          #64748b;
  --flow-light:         #f4f7fb;

  /* Green – CTAs, botões, destaques */
  --flow-green:         #D2CE0B;
}

html,
body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Navbar ───────────────────────────────────────────── */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.nav-stoq {
  color: var(--flow-dark);
  font-weight: 500;
  padding-left: .75rem !important;
  padding-right: .75rem !important;
  transition: color .2s;
}

.nav-stoq:hover,
.navbar-nav .nav-link.nav-stoq.active {
  color: var(--flow-green);
}

.btn-outline-stoq {
  color: var(--flow-green);
  border: 2px solid var(--flow-green);
  border-radius: 30px;
  font-size: .875rem;
  letter-spacing: .04em;
  transition: background-color .2s, color .2s;
}

.btn-outline-stoq:hover {
  background-color: var(--flow-green);
  color: #fff;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active, .btn:active {
  background-color: var(--flow-green);
  border: 2px solid var(--flow-green);
  color: #fff;
}

.header-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0 .5rem;
  }

  .nav-stoq {
    padding-top: .6rem !important;
    padding-bottom: .6rem !important;
  }
}

/* ── Main background ──────────────────────────────────── */
.site-main {
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 48%, rgba(0, 45, 93, 1) 48%, rgba(0, 45, 93, 1) 100%);
}

/* ── Hero ─────────────────────────────────────────────── */

/* Wrapper cria as margens laterais e o gap abaixo da navbar */
.hero-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0rem 1rem 0;
}

.hero-stoq {
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3.5rem 3rem 7rem;
  min-height: 380px;
}

/* Puxa o card para cima, sobre a imagem do hero */
.features-pull {
  margin-top: -7rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 490px;
}

.hero-title-box {
  display: inline-block;
  background-color: var(--flow-dark);
  padding: .8rem 1.25rem;
}

.hero-title {
  color: var(--flow-green);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

/* Botão pill branco com ícone circular à esquerda */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background-color: #fff;
  color: var(--flow-dark);
  border-radius: 30px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: .35rem 1.4rem .35rem .35rem;
  border: none;
  transition: background-color .2s;
}

.hero-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--flow-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.btn-hero-cta:hover {
  background-color: var(--flow-light);
}

.hero-desc {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.75;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
}

/* ── Seção escura (diferenciais + passos) ─────────────── */
.section-dark {
  background-color: var(--flow-dark);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.features-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
}

.feature-icon-wrap {
  font-size: 1.8rem;
  color: var(--flow-green);
  line-height: 1;
}

.feature-title {
  font-weight: 700;
  font-size: .85rem;
  color: var(--flow-text);
  margin-bottom: .4rem;
}

.feature-desc {
  font-size: .78rem;
  color: var(--flow-gray);
  margin: 0;
}

.steps-label {
  color: var(--flow-green);
  font-size: 1rem;
  font-weight: 600;
}

.step-number {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--flow-green);
  line-height: 1;
}

.step-text {
  color: #fff;
  font-size: .875rem;
  line-height: 1.6;
  margin: 0;
}

.step-arrow {
  color: var(--flow-green);
  font-size: 2.6rem;
  animation: arrow-nudge 1.2s ease-in-out infinite;
}

@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}

@media (max-width: 991.98px) {
  .hero-wrapper {
    padding: .75rem .75rem 0;
  }

  .hero-stoq {
    padding: 2.5rem 1.5rem 5rem;
    min-height: unset;
  }

  .features-pull {
    margin-top: -3rem;
  }

  .step-number {
    font-size: 3rem;
  }
}

/* ── Página Como Funciona ─────────────────────────────── */
.site-main.how-page {
  background: #fff;
}


.badge-pill-outline {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 30px;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .4rem 1.1rem;
}

.badge-pill-outline-dark {
  display: inline-block;
  border: 1px solid rgba(0, 45, 93, .25);
  border-radius: 30px;
  color: var(--flow-dark);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .4rem 1.1rem;
}

.how-intro-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.25;
}

.how-intro-title-strong {
  color: var(--flow-green);
  font-weight: 800;
}

.how-intro-title-light {
  color: rgba(251, 191, 36, .55);
  font-weight: 300;
}

.sec-intro-title-light {
  color: var(--flow-green);
  font-weight: 800;
}

.sec-intro-title-strong {
  color: rgba(251, 191, 36, .55);
  font-weight: 300;
}

.security-icon {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
}

.how-intro-desc {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
}

.how-steps {
  background-color: var(--flow-green);
  padding: 5rem 0;
}

.how-step-img-placeholder {
  width: 100%;
  min-height: 280px;
  border-radius: 16px;
  background-color: rgba(0, 45, 93, .12);
  border: 1px dashed rgba(0, 45, 93, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flow-dark);
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
}

.how-step-number {
  flex-shrink: 0;
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.how-step-title {
  color: var(--flow-dark);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.how-step-desc {
  color: var(--flow-dark);
  font-size: .9rem;
  line-height: 1.6;
}

.how-step-checklist li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--flow-dark);
  font-size: .875rem;
  margin-bottom: .5rem;
}

.how-step-checklist i {
  color: var(--flow-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.how-step-divider {
  border-top: 1px solid rgba(0, 45, 93, .2);
  margin: 3rem 0;
}

@media (max-width: 991.98px) {
  .how-step-number {
    font-size: 2.5rem;
  }
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-title {
  color: var(--flow-dark);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
}

.faq-desc {
  color: var(--flow-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item {
  border-bottom: 1px solid rgba(210, 206, 11, .4);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--flow-dark);
  font-weight: 700;
  font-size: 1rem;
}

.faq-question i {
  color: var(--flow-dark);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer p {
  color: var(--flow-gray);
  font-size: .9rem;
  line-height: 1.6;
  padding-bottom: 1.25rem;
}

/* ── Página Contato ───────────────────────────────────── */
.contact-form-card {
  background-color: var(--flow-green);
  border-radius: 24px;
  padding: 2.5rem;
}

.contact-form-title {
  color: var(--flow-dark);
  font-weight: 800;
  font-size: 1.8rem;
}

.contact-form-sub {
  color: var(--flow-dark);
  opacity: .8;
  font-size: .9rem;
}

.form-label-contact {
  display: block;
  color: var(--flow-dark);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .4rem;
}

.form-control-contact {
  width: 100%;
  border: none;
  border-radius: 30px;
  padding: .75rem 1.25rem;
  font-size: .9rem;
  color: var(--flow-dark);
}

.form-control-contact:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 45, 93, .2);
}

textarea.form-control-contact {
  border-radius: 18px;
  resize: none;
}

.form-check-contact {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--flow-dark);
  font-size: .9rem;
  font-weight: 500;
}

.form-check-contact input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--flow-dark);
}

.btn-submit-contact {
  background-color: var(--flow-dark);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  padding: .75rem 2.25rem;
  transition: opacity .2s;
}

.btn-submit-contact:hover {
  opacity: .85;
}

.contact-info-card {
  border: 1px solid rgba(0, 45, 93, .15);
  border-radius: 20px;
  padding: 2rem;
}

.contact-info-title {
  color: var(--flow-dark);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.25;
}

.contact-info-desc {
  color: var(--flow-gray);
  font-size: .9rem;
  line-height: 1.6;
}

.btn-pill-yellow {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background-color: var(--flow-green);
  color: var(--flow-dark);
  border-radius: 30px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: .6rem 1.5rem;
  text-decoration: none;
  border: none;
  transition: background-color .2s, color .2s;
}

.btn-pill-yellow:hover {
  background-color: var(--flow-dark);
  color: #fff;
}

.contact-intro-title-light {
  color: var(--flow-green);
  font-weight: 800;
}

.contact-intro-title-strong {
  color: rgba(251, 191, 36, .55);
  font-weight: 300;
}

/* ── Página Espaços & Planos ───────────────────────────── */
.espacos-intro-title {
  color: var(--flow-green);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.25;
}

.espacos-intro-title strong {
  font-weight: 800;
}

.espacos-intro-title span {
  color: rgba(251, 191, 36, .55);
  font-weight: 300;
}

.plans-section {
  background-color: var(--flow-green);
  padding: 5rem 0;
}

.plans-section-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.35;
}

.plan-title {
  color: var(--flow-dark);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: .75rem;
}

.plan-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.plan-card-img-placeholder {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  background-color: rgba(0, 45, 93, .12);
  border: 1px dashed rgba(0, 45, 93, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flow-dark);
  font-weight: 600;
  font-size: .8rem;
  text-align: center;
  padding: .5rem;
}

.plan-subtitle {
  color: var(--flow-dark);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.plan-options-label {
  color: var(--flow-dark);
  font-size: .8rem;
}

.plan-size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.plan-size-pill {
  border: 1.5px solid var(--flow-dark);
  border-radius: 30px;
  color: var(--flow-dark);
  font-weight: 700;
  font-size: .78rem;
  padding: .3rem .9rem;
}

.plan-divider {
  border: none;
  border-top: 1px solid rgba(0, 45, 93, .25);
  margin: 1rem 0;
}

.plan-desc {
  color: var(--flow-dark);
  font-size: .82rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.plan-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.plan-checklist li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
  color: var(--flow-dark);
  font-size: .82rem;
  margin-bottom: .5rem;
}

.plan-checklist i {
  color: var(--flow-dark);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.plan-checklist li:last-child {
  margin-bottom: 0;
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #fff;
  color: var(--flow-dark);
  border-radius: 30px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: .7rem 1rem;
  text-decoration: none;
  border: none;
  transition: background-color .2s, color .2s;
  margin-top: auto;
}

.btn-plan:hover {
  background-color: var(--flow-dark);
  color: #fff;
}

.plan-modal-content {
  border: none;
  border-radius: 20px;
  padding: 2.5rem;
}

.plan-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--flow-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.plan-modal-title {
  color: var(--flow-green);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-modal-table {
  width: 100%;
  border-collapse: collapse;
}

.plan-modal-table th {
  color: var(--flow-dark);
  font-weight: 700;
  font-size: .85rem;
  line-height: 1.3;
  text-align: center;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--flow-green);
}

.plan-modal-table td {
  color: var(--flow-dark);
  font-size: .95rem;
  text-align: center;
  padding: .9rem .5rem;
}

.plan-modal-table td:first-child {
  text-align: left;
}

.plan-modal-size-pill {
  display: inline-block;
  border: 1.5px solid var(--flow-green);
  border-radius: 30px;
  color: var(--flow-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: .35rem 1rem;
}

@media (max-width: 575.98px) {
  .plan-modal-content {
    padding: 1.75rem 1.25rem;
  }

  .plan-modal-close {
    top: 1rem;
    right: 1rem;
  }

  .plan-modal-title {
    font-size: 1.15rem;
    padding-right: 2rem;
  }

  .plan-modal-table thead {
    display: none;
  }

  .plan-modal-table,
  .plan-modal-table tbody,
  .plan-modal-table tr,
  .plan-modal-table td {
    display: block;
    width: 100%;
  }

  .plan-modal-table tr {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 45, 93, .15);
  }

  .plan-modal-table tr:first-child {
    padding-top: 0;
  }

  .plan-modal-table td {
    text-align: right;
    padding: .35rem 0;
  }

  .plan-modal-table td:first-child {
    text-align: left;
    padding-bottom: .75rem;
  }

  .plan-modal-table td[data-label] {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .plan-modal-table td[data-label]::before {
    content: attr(data-label);
    color: var(--flow-dark);
    font-weight: 700;
    font-size: .85rem;
    text-align: left;
  }
  
  .hero-desc {
    font-size: .9rem;
    line-height: 1.55;
  }
}

/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
  background-color: var(--flow-green);
}

.cta-banner__title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.cta-banner__sub {
  color: var(--flow-dark);
  opacity: .75;
  font-size: 1rem;
}

.btn-cta-banner {
  color: var(--flow-dark);
  border: 2px solid #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: background-color .2s, color .2s;
  background-color: #fff;
}

.btn-cta-banner:hover {
  background-color: var(--flow-dark);
  color: #fff;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active, .btn:active {
  background-color: var(--flow-dark);
  color: #fff;
  border-color: var(--flow-dark);
}

/* ── Footer ───────────────────────────────────────────── */
.footer-stoq {
  background-color: var(--flow-dark);
}

.footer-desc {
  color: rgba(255, 255, 255, .55);
  font-size: .875rem;
  line-height: 1.65;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: .8rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .875rem;
}

.footer-links li,
.footer-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--flow-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-copy {
  color: rgba(255, 255, 255, .35);
  font-size: .8rem;
}