:root {
  --fc-navy: #1c2b39;
  --fc-lime: #8cc63f;
  --fc-sky: #2e7db2;
  --fc-page: #f0f2f5;
  --fc-white: #ffffff;
  --fc-muted: #5c6b7a;
  --fc-hero-tint: rgba(28, 43, 57, 0.82);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--fc-page);
  color: var(--fc-navy);
  font-family: Arial, Helvetica, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* Tabelas largas em telemóvel: scroll horizontal sem partir o layout */
.mobile-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.mobile-table-scroll > table {
  width: 100%;
  min-width: 520px;
}

.mobile-table-scroll--narrow > table {
  min-width: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.top-strip {
  background: var(--fc-white);
  border-bottom: 1px solid #dbe1e8;
}

.top-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.top-strip-search {
  flex: 1 1 200px;
  min-width: 0;
  max-width: min(420px, 100%);
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  border-radius: 999px;
  border: 1px solid #cad3de;
  background: #eef2f6;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.top-strip-search:focus-within {
  border-color: var(--fc-sky);
  box-shadow: 0 0 0 2px rgba(46, 125, 178, 0.22);
  background: #fff;
}

.top-strip-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 10px 8px 10px 14px;
  font-size: 14px;
  color: var(--fc-navy);
}

.top-strip-search-input::placeholder {
  color: #8a97a4;
}

.top-strip-search-input:focus {
  outline: none;
}

.top-strip-search-submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border: none;
  background: var(--fc-sky);
  color: #fff;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.top-strip-search-submit:hover {
  filter: brightness(1.06);
}

.top-strip-search-submit:focus-visible {
  outline: 2px solid var(--fc-navy);
  outline-offset: 2px;
}

.top-strip-search-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

@media (max-width: 720px) {
  .top-strip-search {
    order: 5;
    flex-basis: 100%;
    max-width: none;
  }

  .brand {
    order: 1;
  }

  .top-actions {
    order: 2;
    margin-left: auto;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 44px);
  min-height: 44px;
}

.brand-logo-link:focus-visible {
  outline: 2px solid var(--fc-sky);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Logo cabeçalho: maior em telemóvel/tablet, teto em desktop — mantém proporção da página */
.brand-logo {
  width: clamp(52px, min(22vw, 14vh), 92px);
  height: clamp(52px, min(22vw, 14vh), 92px);
  max-width: min(92px, 38vw);
  max-height: min(92px, 38vw);
  border-radius: 12px;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .brand-logo {
    width: clamp(64px, 12vw, 96px);
    height: clamp(64px, 12vw, 96px);
    max-width: 96px;
    max-height: 96px;
  }
}

@media (min-width: 1200px) {
  .brand-logo {
    width: clamp(72px, 8vw, 104px);
    height: clamp(72px, 8vw, 104px);
    max-width: 104px;
    max-height: 104px;
  }
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-actions .header-sair-form {
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.hint {
  color: var(--fc-muted);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 11px 16px;
}

.btn-primary {
  background: var(--fc-sky);
  color: #fff;
}

.btn-light {
  background: #eef2f6;
  border-color: #cad3de;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.btn-lime {
  background: var(--fc-lime);
  color: var(--fc-navy);
}

.block {
  width: 100%;
}

.main-nav {
  background: var(--fc-navy);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.nav-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.nav-item {
  min-width: 84px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #d7e0eb;
}

.nav-item.active {
  color: var(--fc-lime);
}

.nav-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.nav-item.active .nav-icon {
  border-color: var(--fc-sky);
  background: rgba(46, 125, 178, 0.22);
}

.hero {
  background-image:
    linear-gradient(105deg, var(--fc-hero-tint) 0%, rgba(28, 43, 57, 0.88) 42%, rgba(28, 43, 57, 0.55) 100%),
    url("/assets/banner%20home.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .hero {
    background-image:
      linear-gradient(105deg, var(--fc-hero-tint) 0%, rgba(28, 43, 57, 0.88) 42%, rgba(28, 43, 57, 0.55) 100%),
      url("/assets/banner%20home%20mobile.png");
  }
}

.hero-grid {
  display: grid;
  gap: 40px;
  padding: 58px 0;
}

.hero-copy {
  color: #fff;
}

.hero-kicker {
  margin: 0;
  font-size: 20px;
}

.hero-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(33px, 5vw, 54px);
  line-height: 1.12;
}

.hero-copy .hl {
  color: var(--fc-lime);
  display: inline-block;
  margin: 0 4px;
}

.hero-text {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-actions.center {
  justify-content: center;
}

.hero-card {
  background: var(--fc-lime);
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero-card h2 {
  margin: 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.hero-card p {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.form-preview {
  margin: 18px 0;
  display: grid;
  gap: 10px;
}

.form-preview div {
  border-radius: 8px;
  background: #fff;
  color: #6c7885;
  padding: 12px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.inline-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #9cb0c4;
  color: #5f7488;
  margin-right: 8px;
}

.hero-card-login {
  margin: 12px 0 0;
  font-size: 12px;
}

.hero-card-login a {
  text-decoration: underline;
  font-weight: 700;
}

.features {
  background: var(--fc-white);
  color: var(--fc-navy);
  padding: 62px 0;
}

.cards-3 {
  display: grid;
  gap: 28px;
}

.feature-card {
  text-align: left;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #8cc63f;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  margin: 0 0 14px;
  background: none;
  border: 2px solid #8cc63f;
  color: #8cc63f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
}

.feature-card h3 {
  color: var(--fc-navy);
}

.feature-card p {
  color: var(--fc-muted);
  line-height: 1.6;
}

.highlights {
  background: #fff;
  border: none;
  box-shadow: none;
  padding-bottom: 32px;
}

.zero-gap {
  gap: 0;
}

.hl-carousel {
  overflow: hidden;
  width: 100%;
}

.hl-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.hl-card {
  width: 33.3333%;
  min-width: 33.3333%;
  flex-shrink: 0;
}

.hl-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  min-height: 0;
}

.hl-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 600px) {
  .hl-card {
    min-width: 100%;
  }
  .hl-photo {
    aspect-ratio: 4 / 3;
  }
}

.hl-copy {
  padding: 22px 16px;
  line-height: 1.6;
  font-size: 14px;
}

.hl-copy strong {
  font-size: 22px;
}

.hl-copy.navy {
  background: var(--fc-navy);
  color: #fff;
}

.hl-copy.navy strong {
  color: var(--fc-lime);
}

.hl-copy.lime {
  background: var(--fc-lime);
  color: var(--fc-navy);
}

.hl-copy.sky {
  background: var(--fc-sky);
  color: #fff;
}

.hl-copy.sky strong {
  color: var(--fc-lime);
}

.plans {
  background: var(--fc-page);
  padding: 62px 0;
}

.plans h2 {
  margin: 0;
  text-align: center;
  font-size: 34px;
}

.plans-subtitle {
  text-align: center;
  color: var(--fc-muted);
  max-width: 640px;
  margin: 8px auto 0;
}

.plans-grid {
  margin-top: 30px;
}

/* Página /cursos: uma única oferta, centrada (mesma skin da landing) */
.plans-grid--single {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 980px) {
  .plans-grid--single.cards-3 {
    grid-template-columns: 1fr;
  }
}

.plan-card {
  background: #fff;
  border: 1px solid #dbe1e8;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.plan-card h3 {
  margin: 0;
}

.plan-small {
  margin: 4px 0 0;
  color: var(--fc-muted);
}

.session-info-sheet {
  margin-bottom: 18px;
}

.session-info-sheet-inner {
  background: #fff;
  border: 1px solid #dbe1e8;
  border-radius: 12px;
  padding: 16px 18px;
}

.session-info-sheet-grid {
  display: grid;
  gap: 12px 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .session-info-sheet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-info-sheet-field--wide {
    grid-column: 1 / -1;
  }
}

.session-info-sheet-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fc-muted);
}

.session-info-sheet-value {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  color: var(--fc-navy);
  word-break: break-word;
}

.session-info-sheet-actions {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eef2f6;
}

.plan-card ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  line-height: 1.8;
  color: #4f5f70;
  flex: 1;
}

.plan-pro {
  border: 2px solid var(--fc-sky);
  position: relative;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* Página /planos — cards separados, cores Argus */
.plans-hero {
  padding-bottom: 1rem;
}

.plans-hero-inner {
  text-align: center;
}

.plans-hero-text {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.plans-hero-alert {
  margin: 0.75rem auto 0;
  max-width: 520px;
  color: var(--fc-sky);
  font-weight: 600;
}

.plans-hero-ok {
  margin: 0.75rem auto 0;
  color: #1a7f37;
  font-weight: 600;
}

.plans-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  margin-top: 14px;
  box-shadow: 0 8px 24px rgba(28, 43, 57, 0.08);
}

.plan-card--free {
  border-top: 4px solid var(--fc-navy);
}

.plan-card--premium {
  border-top: 4px solid var(--fc-lime);
}

.plan-card-form {
  margin: 0;
}

.plan-card-trial {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--fc-lime);
  color: var(--fc-navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
}

.plan-card ul li {
  position: relative;
  padding-left: 1.35rem;
}

.plan-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fc-sky);
  font-weight: 700;
}

.plan-li-limit::before {
  content: "●";
  color: var(--fc-navy);
}

.plan-li-limit {
  color: var(--fc-navy);
  font-weight: 600;
}

.plan-li-highlight {
  color: var(--fc-sky);
  font-weight: 600;
}

.btn-outline-navy {
  border: 2px solid var(--fc-navy);
  color: var(--fc-navy);
  background: #fff;
}

.btn-outline-navy:hover {
  background: var(--fc-navy);
  color: #fff;
}

.plan-btn-disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: default;
}

.plans-cta {
  padding-top: 2rem;
}

.plans-cta-inner {
  text-align: center;
}

.plans-page .plans-hero {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: 1.5rem;
}

.plans-page .plans-hero-kicker {
  margin: 0 0 0.65rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.plans-page .plans-hero-inner h1 {
  margin: 0 auto 1rem;
  max-width: 720px;
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  line-height: 1.2;
  color: #fff;
}

.plans-page .plans-hero-text {
  color: rgba(255, 255, 255, 0.92);
}

.plans-page .plans-why {
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: var(--fc-page);
}

.plans-page .plans-why-title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--fc-navy);
}

.plans-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .plans-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .plans-why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.plans-page .plans-why-card {
  background: #fff;
  border: 2px solid #2e7db2;
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 4px 14px rgba(46, 125, 178, 0.12);
}

.plans-why-card h3 {
  margin: 0 0 0.45rem;
  font-size: 15px;
  font-weight: 800;
  color: var(--fc-navy);
}

.plans-why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fc-muted);
}

.plans-grid-intro {
  margin: 0 auto 0.5rem;
  max-width: 520px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--fc-navy);
}

.plans-pricewave-section .plans-grid-intro--below {
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
}

.plans-pricewave-section .plans-trust-line {
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
}

.plan-card-pitch {
  margin: 0.35rem 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fc-muted);
  min-height: 3em;
}

.plan-card-pitch--highlight {
  color: var(--fc-sky);
  font-weight: 600;
}

.plan-card-footnote {
  margin: 0 0 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eef2f6;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fc-muted);
  flex: 1;
}

.plan-card-note {
  margin: 0.65rem 0 0;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  color: var(--fc-muted);
}

.plans-trust-line {
  margin: clamp(1.75rem, 4vw, 2.25rem) auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fc-muted);
}

.plans-cta .plans-cta-text {
  max-width: 640px;
  margin: 0.75rem auto 1.25rem;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.plans-cta h2 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.plan-card--premium.plan-pro {
  border-width: 2px;
  box-shadow: 0 14px 36px rgba(46, 125, 178, 0.18);
}

@media (max-width: 640px) {
  .plan-card-trial {
    top: 52px;
    right: 14px;
    font-size: 10px;
  }

  .plan-card-pitch {
    min-height: 0;
    padding-right: 0;
  }
}

/* /planos — cards pricewave (3 planos, cores Argus, responsivo) */
.plans-pricewave-section {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.pricewave-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 36px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 900px) {
  .pricewave-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  .pricewave-card--free {
    order: 1;
  }

  .pricewave-card--annual {
    order: 2;
  }

  .pricewave-card--monthly {
    order: 3;
  }
}

.pricewave-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(28, 43, 57, 0.12);
  background: #fff;
  min-height: 100%;
  border: 2px solid transparent;
}

.pricewave-card--featured {
  border-color: var(--fc-lime);
  box-shadow: 0 20px 48px rgba(140, 198, 63, 0.35), 0 0 0 1px rgba(140, 198, 63, 0.4);
  z-index: 2;
}

@media (min-width: 900px) {
  .pricewave-card--featured {
    transform: scale(1.05) translateY(-10px);
  }
}

.pricewave-card__head {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 148px;
  padding: 1.75rem 1.25rem 1.25rem;
  text-align: center;
  background: var(--fc-sky);
  box-sizing: border-box;
}

.pricewave-card--free .pricewave-card__head {
  background: var(--fc-sky);
}

.pricewave-card--monthly .pricewave-card__head {
  background: linear-gradient(160deg, var(--fc-sky) 0%, #4a9fd4 100%);
}

.pricewave-card--annual .pricewave-card__head {
  background: #8cc63f;
}

.pricewave-card--annual .pricewave-card__title {
  color: var(--fc-navy);
}

.pricewave-card--annual .pricewave-card__head .btn-primary {
  background: #2e7db2;
  color: #fff;
  border-color: #2e7db2;
}

.pricewave-card--annual .pricewave-card__head .btn-primary:hover {
  filter: brightness(1.08);
}

.pricewave-card__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.pricewave-card__form {
  margin: 0;
}

.pricewave-card__head .btn {
  border-radius: 8px;
  min-width: 140px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 13px;
}

.pricewave-card__head .btn-lime {
  background: var(--fc-lime);
  color: var(--fc-navy);
  border: 1px solid transparent;
}

.pricewave-card__head .btn-lime:hover {
  filter: brightness(1.05);
}

.pricewave-card__head .btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--fc-navy);
  border-color: rgba(255, 255, 255, 0.5);
}

.pricewave-wave {
  display: block;
  width: 100%;
  height: 28px;
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.pricewave-wave--to-foot {
  margin-top: auto;
}

.pricewave-wave__svg {
  display: block;
  width: 100%;
  height: 28px;
}

.pricewave-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.25rem 1rem 0;
  background: #fff;
}

.pricewave-feat-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0.75rem;
  flex: 1;
}

.pricewave-feat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  padding: 0.45rem 0.75rem;
  background: #f2f6fa;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--fc-navy);
}

.pricewave-feat__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.pricewave-feat__icon--yes {
  background: rgba(140, 198, 63, 0.35);
  color: var(--fc-navy);
}

.pricewave-feat__icon--no {
  background: rgba(220, 80, 70, 0.12);
  color: #b53a32;
}

.pricewave-feat__text {
  flex: 1;
}

.pricewave-card__foot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 118px;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
  background: var(--fc-sky);
  color: #fff;
  box-sizing: border-box;
}

.pricewave-card--annual .pricewave-card__foot {
  background: #2e7db2;
}

.pricewave-card__price-wrap {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 4.25rem;
}

.pricewave-card__price-old {
  display: block;
  min-height: 1.25rem;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25rem;
  text-decoration: line-through;
  opacity: 0.65;
}

.pricewave-card__price-old:empty {
  visibility: hidden;
}

.pricewave-card__price {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.1;
}

.pricewave-card__period {
  margin: 0.35rem 0 0;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.88;
}

@media (max-width: 899px) {
  .pricewave-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricewave-card--featured {
    transform: none;
    order: -1;
  }

  .pricewave-feat {
    font-size: 12px;
  }
}

.tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fc-lime);
  color: var(--fc-navy);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
}

.tag--navy {
  background: var(--fc-navy);
  color: #fff;
}

.tag--sky {
  background: var(--fc-sky);
  color: #fff;
}

.tag--lime {
  background: var(--fc-lime);
  color: var(--fc-navy);
}

.price {
  margin: 14px 0 0;
  font-size: 42px;
  font-weight: 800;
  color: var(--fc-navy);
}

.price span {
  font-size: 16px;
  color: var(--fc-muted);
  font-weight: 400;
}

.note {
  font-size: 11px;
  color: var(--fc-muted);
  text-align: center;
}

/* Sobre nós — split imagem + texto */
.sobre-nos-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.sobre-nos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre-nos-texto {
  padding: 24px 24px 24px 0;
}

.sobre-nos-titulo {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--fc-navy);
  margin: 0 0 8px;
  line-height: 1.25;
}

.sobre-nos-texto p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5c6e;
  margin: 0 0 16px;
}

.btn-cta-sobre {
  display: inline-block;
  background: #8cc63f;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
}

.btn-cta-sobre:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .sobre-nos-split {
    grid-template-columns: 1fr;
  }
  .sobre-nos-texto {
    padding: 24px 20px 28px;
  }
}

/* Timeline pillars */
.timeline-pillars {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 28px rgba(28, 43, 57, 0.08);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.timeline-badge {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #8cc63f;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-connector {
  position: absolute;
  left: 21px;
  top: 44px;
  width: 2px;
  height: calc(100% - 44px);
  border-left: 2px dashed #8cc63f;
}

.timeline-content {
  margin-left: 20px;
  padding-bottom: 32px;
}

.timeline-item:last-child .timeline-content {
  padding-bottom: 0;
}

.timeline-content h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--fc-navy);
  line-height: 44px;
}

.timeline-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5c6e;
}

.landing-valor-banner-final {
  margin: 28px 0 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  border-radius: 0;
}

.landing-valor-banner-final__link {
  display: block;
  line-height: 0;
  border-radius: 0;
  text-decoration: none;
}

.landing-valor-banner-final__link:focus-visible {
  outline: 2px solid var(--fc-lime);
  outline-offset: 2px;
}

.landing-valor-banner-final img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  border-radius: 0;
}

.landing-valor-banner-final--full {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(20px, 4vw, 32px);
  margin-bottom: clamp(32px, 5vw, 56px);
  border-radius: 0;
}

.landing-valor-banner-final--full + .container.landing-valor-inner {
  margin-top: clamp(8px, 2vw, 16px);
}

.landing-valor-banner-final--full img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

@media (max-width: 768px) {
  .landing-valor-banner-final--full {
    margin-top: 18px;
    margin-bottom: clamp(24px, 6vw, 40px);
  }

  .landing-valor-banner-final--full + .container.landing-valor-inner {
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .timeline-pillars {
    padding: 24px 18px;
  }
  .timeline-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 15px;
  }
  .timeline-connector {
    left: 17px;
    top: 36px;
    height: calc(100% - 36px);
  }
  .timeline-content h3 {
    line-height: 36px;
  }
  .timeline-content {
    margin-left: 14px;
    padding-bottom: 24px;
  }
}

.landing-valor-divisor {
  border: none;
  border-top: 1px solid #dbe1e8;
  margin: -20px 0 16px;
}

/* Landing — O Argos (split tipo registar/entrar) + depoimentos */
.landing-valor {
  background: var(--fc-page);
  padding: clamp(48px, 7vw, 72px) 0;
  overflow-x: clip;
}

.landing-valor-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.landing-valor-page-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fc-navy);
}

.landing-valor-lead {
  margin: -34px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fc-muted);
}

.landing-valor-split {
  margin: 0;
}

.landing-valor-split .landing-valor-split-main {
  padding-top: clamp(28px, 5vw, 44px);
  padding-bottom: clamp(28px, 5vw, 44px);
}

.landing-valor-exec {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: #3d4f61;
}

.landing-valor-pillars {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .landing-valor-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.landing-valor-pillar {
  margin: 0;
  border-radius: 16px;
  padding: clamp(22px, 4vw, 28px) clamp(22px, 4vw, 30px);
  box-shadow: 0 14px 36px rgba(28, 43, 57, 0.1), 0 4px 12px rgba(28, 43, 57, 0.05);
  border: 1px solid #dbe1e8;
  border-top-width: 5px;
}

.landing-valor-pillar p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

.landing-valor-pillar--lime {
  background: #fff;
  border-top-color: var(--fc-lime);
}

.landing-valor-pillar--lime .landing-valor-pillar-title {
  color: color-mix(in srgb, var(--fc-lime) 72%, var(--fc-navy));
}

.landing-valor-pillar--lime p {
  color: #4a5c6e;
}

.landing-valor-pillar--navy {
  background: linear-gradient(165deg, #fff 0%, #f6f8fb 100%);
  border-top-color: var(--fc-navy);
}

.landing-valor-pillar--navy .landing-valor-pillar-title {
  color: var(--fc-navy);
}

.landing-valor-pillar--navy p {
  color: #4a5c6e;
}

.landing-valor-pillar--sky {
  background: #fff;
  border-top-color: var(--fc-sky);
}

.landing-valor-pillar--sky .landing-valor-pillar-title {
  color: var(--fc-sky);
}

.landing-valor-pillar--sky p {
  color: #4a5c6e;
}

.landing-valor-pillar-title {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-valor-inner > .auth-split-card {
  width: 100%;
  max-width: 100%;
}

.landing-valor-split--steps.auth-split-card {
  grid-template-columns: 1fr;
  min-height: 0;
}

.landing-valor-steps-wrap {
  padding: clamp(28px, 5vw, 44px) clamp(24px, 5vw, 48px);
  width: 100%;
}

.landing-valor-steps-heading {
  margin: 0 0 22px;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fc-navy);
}

.landing-valor-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .landing-valor-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
  }
}

.landing-valor-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #f4f7fa;
  border-radius: 14px;
  border: 1px solid #e2e8ef;
}

.landing-valor-step-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: var(--fc-sky);
  box-shadow: 0 4px 12px rgba(46, 125, 178, 0.35);
}

.landing-valor-steps li strong {
  display: block;
  font-size: 15px;
  color: var(--fc-navy);
}

.landing-valor-step-desc {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fc-muted);
}

.landing-depoimentos {
  background: transparent;
}

.landing-depoimentos-hero {
  border-bottom: none;
  background: none;
  padding: clamp(28px, 5vw, 44px) 0 clamp(8px, 2vw, 16px);
}

.landing-depoimentos-title {
  margin: 0;
  text-align: center;
  font-family: inherit;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fc-navy);
  text-shadow: none;
}

.landing-depoimentos-sub {
  margin: 10px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fc-muted);
}

.landing-depoimentos-body {
  margin-top: 0;
  padding: 0 0 clamp(40px, 7vw, 72px);
  position: relative;
  z-index: 1;
}

.landing-depo-grid--feedback {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: 1fr;
  justify-items: stretch;
}

@media (min-width: 900px) {
  .landing-depo-grid--feedback {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 680px) and (max-width: 899px) {
  .landing-depo-grid--feedback {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

.landing-feedback-card {
  margin: 0;
  width: 100%;
  max-width: none;
}

.landing-feedback-card-inner {
  position: relative;
  margin: 0;
  padding: clamp(22px, 3vw, 28px) clamp(20px, 3vw, 26px) 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 28px rgba(28, 43, 57, 0.07);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.landing-feedback-card-inner::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  line-height: 1;
  color: rgba(28, 43, 57, 0.08);
  pointer-events: none;
}

.landing-feedback-card--accent-lime .landing-feedback-card-inner {
  border-left: 4px solid var(--fc-lime);
}

.landing-feedback-card--accent-sky .landing-feedback-card-inner {
  border-left: 4px solid var(--fc-sky);
}

.landing-feedback-card:hover .landing-feedback-card-inner {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(28, 43, 57, 0.12);
}

.landing-feedback-quote-text {
  margin: 0 0 20px;
  padding-right: 28px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: #3d4f61;
  flex: 1;
}

.landing-feedback-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid #eef2f6;
}

.landing-feedback-who {
  min-width: 0;
}

.landing-feedback-avatar {
  position: static;
  flex-shrink: 0;
  transform: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #eef2f6;
  box-shadow: 0 4px 12px rgba(28, 43, 57, 0.1);
  background:
    linear-gradient(145deg, #e8ecf1 0%, #dce2ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-feedback-avatar span {
  font-size: 14px;
  font-weight: 800;
  color: var(--fc-navy);
  letter-spacing: 0.02em;
  text-shadow: none;
}

.landing-feedback-name {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--fc-navy);
}

.landing-feedback-role {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--fc-muted);
  opacity: 1;
  max-width: none;
}

.landing-feedback-stars {
  margin-top: 14px;
  line-height: 1;
}

.landing-feedback-stars span {
  font-size: 14px;
  letter-spacing: 3px;
  color: #eab308;
}

@media (prefers-reduced-motion: reduce) {
  .landing-feedback-card:hover .landing-feedback-card-inner {
    transform: none;
  }
}

.cta {
  background: var(--fc-navy);
  color: #fff;
  text-align: center;
  padding: 54px 0;
}

.cta h2 {
  margin: 0;
  font-size: 38px;
}

.cta p {
  color: #d9e3ef;
  margin: 12px auto 0;
  max-width: 700px;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 16px 0;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  background: #fff;
  border-top: 1px solid #dbe1e8;
  box-shadow: 0 -8px 28px rgba(28, 43, 57, 0.12);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
}

.cookie-consent-text {
  margin: 0;
  flex: 1 1 280px;
  max-width: min(100%, 720px);
  font-size: 14px;
  line-height: 1.55;
  color: #3d4f61;
}

.cookie-consent-text a {
  color: var(--fc-sky);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-text a:hover {
  color: var(--fc-navy);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent-btn {
  min-width: 120px;
}

.cookie-consent-decline {
  border: 1px solid #cad3de;
  color: var(--fc-navy);
  background: #f4f7fa;
}

.cookie-consent-decline:hover {
  background: #eef2f6;
}

@media (max-width: 520px) {
  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-btn {
    flex: 1;
    min-width: 0;
  }
}

.footer {
  border-top: 1px solid #dbe1e8;
  background: #e6ebf0;
  padding: 22px 0;
  color: #5f6b77;
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.brand.mini .brand-logo {
  width: clamp(40px, 10vw, 52px);
  height: clamp(40px, 10vw, 52px);
  max-width: 52px;
  max-height: 52px;
}

.footer-links {
  display: flex;
  gap: 14px;
  color: var(--fc-sky);
}

/* Rodapé estilo grelha (referência multicamadas) — apenas cores Argus */
.site-footer {
  background: var(--fc-navy);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
  width: 100%;
  max-width: none;
  flex: 0 0 100%;
  align-self: stretch;
}

.site-footer-contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 2rem;
}

@media (min-width: 900px) {
  .site-footer-contact-row {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  }
}

.site-footer-logo-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-decoration: none;
  color: #fff;
  line-height: 0;
  justify-self: center;
}

.site-footer-logo-block:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
  border-radius: 12px;
}

.site-footer-logo {
  width: clamp(64px, min(24vw, 16vh), 120px);
  height: clamp(64px, min(24vw, 16vh), 120px);
  max-width: min(120px, 48vw);
  max-height: min(120px, 48vw);
  border-radius: 14px;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .site-footer-logo {
    width: clamp(80px, 14vw, 128px);
    height: clamp(80px, 14vw, 128px);
    max-width: 128px;
    max-height: 128px;
  }
}

@media (min-width: 1200px) {
  .site-footer-logo {
    width: clamp(96px, 10vw, 140px);
    height: clamp(96px, 10vw, 140px);
    max-width: 140px;
    max-height: 140px;
  }
}

@media (min-width: 900px) {
  .site-footer-logo-block {
    justify-self: start;
  }
}

.site-footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .site-footer-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.site-footer-contact-cell {
  text-align: left;
}

@media (min-width: 900px) {
  .site-footer-contact-cell {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.site-footer-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-lime);
}

.site-footer-svg {
  width: 26px;
  height: 26px;
}

.site-footer-kicker {
  margin: 0.4rem 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--fc-lime);
}

.site-footer-contact-text {
  margin: 0.35rem 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-contact-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-contact-text a:hover {
  color: var(--fc-lime);
}

.site-footer-rule-wrap {
  background: var(--fc-navy);
}

.site-footer-rule {
  margin: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-strip--main {
  background: var(--fc-navy);
}

.site-footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0 2.75rem;
}

@media (min-width: 992px) {
  .site-footer-columns {
    grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    align-items: start;
  }
}

.site-footer-heading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.site-footer-text {
  margin: 0 0 1rem;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid var(--fc-lime);
  background: rgba(140, 198, 63, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

a.site-footer-social-btn:hover {
  background: rgba(140, 198, 63, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.site-footer-social-svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer-social-btn--inactive {
  opacity: 0.55;
  cursor: default;
}

.site-footer-mp-seal-wrap {
  margin-top: 1.125rem;
  max-width: 100%;
}

.site-footer-mp-seal {
  display: block;
  width: 100%;
  max-width: min(260px, 88vw);
  height: auto;
  object-fit: contain;
}

@media (min-width: 576px) {
  .site-footer-mp-seal {
    max-width: 280px;
  }
}

@media (min-width: 992px) {
  .site-footer-mp-seal-wrap {
    margin-top: 1.25rem;
  }

  .site-footer-mp-seal {
    max-width: 240px;
  }
}

@media (max-width: 575px) {
  .site-footer-mp-seal-wrap {
    display: flex;
    justify-content: center;
  }

  .site-footer-mp-seal {
    max-width: min(240px, 82vw);
  }
}

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

.site-footer-list li {
  margin: 0.35rem 0;
}

.site-footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer-list a:hover {
  color: var(--fc-lime);
}

.site-footer-bullet {
  color: var(--fc-lime);
  font-weight: 700;
  font-size: 1.05em;
}

.site-footer-news {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer-news-input {
  flex: 1;
  min-width: 160px;
  padding: 11px 14px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: var(--fc-navy);
}

.site-footer-news-input:disabled {
  opacity: 0.65;
}

.site-footer-news-btn {
  padding: 11px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: var(--fc-lime);
  color: var(--fc-navy);
  cursor: not-allowed;
  opacity: 0.75;
}

.site-footer-news-hint {
  margin: 0.5rem 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer-strip--legal {
  background: var(--fc-navy);
  padding: 0 0 2.25rem;
}

.site-footer-legal {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.site-footer-legal-line {
  margin: 0.35rem 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.auth-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.auth-form label {
  font-size: 14px;
  color: var(--fc-muted);
}

.auth-form input {
  width: 100%;
  border: 1px solid #cad3de;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 15px;
}

.auth-form select,
.auth-form textarea {
  width: 100%;
  border: 1px solid #cad3de;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 15px;
  font-family: inherit;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4f5f70;
}

.auth-form button {
  margin-top: 8px;
}

.form-error {
  background: #fff4f4;
  border: 1px solid #f0c2c2;
  color: #b42318;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}

/* Auth cadastro/login — formato split-card (referência maxresdefault), cores Argus */
.auth-page {
  flex: 1;
  padding: clamp(28px, 5vw, 56px) 0 clamp(48px, 8vw, 72px);
  background: var(--fc-page);
}

.auth-page-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-split-card {
  width: min(920px, 100%);
  display: grid;
  /* ~40% / 60% como na referência */
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  min-height: min(520px, calc(100dvh - 280px));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(28, 43, 57, 0.14), 0 6px 16px rgba(28, 43, 57, 0.07);
  background: var(--fc-white);
}

.auth-split-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: clamp(36px, 7vw, 56px) clamp(26px, 4vw, 44px);
}

/* Cadastro: bloco sólido verde-lima (equivalente ao teal da referência) */
.auth-split-aside--register {
  background: var(--fc-lime);
  color: var(--fc-navy);
}

/* Login: bloco sólido navy (barra principal do site) */
.auth-split-aside--login {
  background: var(--fc-navy);
  color: #fff;
}

.auth-aside-title {
  margin: 0;
  font-size: clamp(1.6rem, 3.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.auth-split-aside--register .auth-aside-title {
  color: var(--fc-navy);
}

.auth-aside-text {
  margin: 0;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.55;
}

.auth-split-aside--register .auth-aside-text {
  color: rgba(28, 43, 57, 0.88);
}

.auth-split-aside--login .auth-aside-text {
  color: rgba(255, 255, 255, 0.92);
}

.auth-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 40px;
  border-radius: 999px;
  border: 2px solid currentColor;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease;
}

/* Sobre fundo navy (login): contorno claro */
.auth-split-aside--login .auth-btn-ghost {
  border-color: rgba(255, 255, 255, 0.92);
  color: #fff;
}

.auth-split-aside--login .auth-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Sobre fundo lima (registo): contorno navy */
.auth-btn-ghost--dark {
  border-color: var(--fc-navy);
  color: var(--fc-navy);
}

.auth-btn-ghost--dark:hover {
  background: rgba(28, 43, 57, 0.08);
}

.auth-split-form {
  padding: clamp(32px, 6vw, 52px) clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-form-title {
  margin: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Título alinhado à cor de destaque do painel esquerdo (referência) */
.auth-form-title--register {
  color: #6f9a3a;
  color: color-mix(in srgb, var(--fc-lime) 78%, var(--fc-navy));
}

.auth-form-title--login {
  color: var(--fc-sky);
}

.auth-form-sub {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--fc-muted);
}

.auth-form-sub--rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.auth-form-sub--rule > span:not(.auth-form-divider-line) {
  flex-shrink: 0;
  white-space: nowrap;
}

.auth-form-divider-line {
  flex: 1;
  height: 1px;
  background: #dbe1e8;
  min-width: 12px;
}

.auth-form-error {
  margin-top: 16px;
}

.auth-form-modern {
  margin-top: 22px;
  gap: 16px;
}

.auth-form-modern .auth-field {
  margin: 0;
}

.auth-form-modern input {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  background: #eef2f6;
  color: var(--fc-navy);
}

.auth-form-modern input::placeholder {
  color: #8a97a4;
}

.auth-form-modern input:focus {
  outline: 2px solid var(--fc-sky);
  outline-offset: 0;
  background: #fff;
}

.auth-btn-submit {
  margin-top: 10px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.1s ease;
}

.auth-btn-submit:not(.auth-btn-submit--lime) {
  color: #fff;
  background: var(--fc-sky);
  box-shadow: 0 4px 14px rgba(46, 125, 178, 0.35);
}

.auth-btn-submit:not(.auth-btn-submit--lime):hover {
  filter: brightness(1.06);
}

/* Botão principal do registo: lima + texto navy (referência SIGN UP verde sólido) */
.auth-btn-submit--lime {
  color: var(--fc-navy);
  background: var(--fc-lime);
  box-shadow: 0 4px 16px rgba(140, 198, 63, 0.45);
}

.auth-btn-submit--lime:hover {
  filter: brightness(0.97);
}

.auth-btn-submit:active {
  transform: scale(0.99);
}

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

@media (max-width: 760px) {
  .auth-split-card {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .auth-split-form {
    order: 1;
    padding: 28px 22px 32px;
  }

  .auth-split-aside {
    order: 2;
    padding: 32px 22px 40px;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.9fr;
    align-items: center;
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1100px, 94vw);
  }

  .top-strip-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
  }

  .hint {
    display: none;
  }

  .top-actions {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
  }

  .btn {
    padding: 10px 12px;
    font-size: 13px;
    min-height: 40px;
  }

  .hero-grid {
    padding: 36px 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .auth-page-inner {
    padding: 14px 0 22px;
  }

  .auth-split-card {
    overflow: hidden;
  }

  .auth-split-form,
  .auth-split-aside {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer-contact-row {
    gap: 1.25rem;
    padding: 1.75rem 0 1.25rem;
  }

  .site-footer-columns {
    gap: 1.2rem;
    padding: 1.4rem 0 2rem;
  }

  .site-footer-col {
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  }

  .site-footer-col:last-child {
    border-bottom: 0;
  }

  .site-footer-news {
    flex-direction: column;
  }

  .site-footer-news-input,
  .site-footer-news-btn {
    width: 100%;
  }

  .radar-list-item {
    flex-direction: column;
    align-items: stretch;
  }

  .radar-delete-btn {
    width: 100%;
  }

  .hero-kicker {
    font-size: 16px;
  }

  .cta h2 {
    font-size: 30px;
  }
}

/* --- Painel tipo launcher (Arc / Jarvis-inspired, web) --- */
body.argus-launcher-page {
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #1e3a5f 0%, transparent 55%),
    linear-gradient(165deg, #0b1220 0%, #111827 40%, #0f172a 100%);
  color: #e2e8f0;
  min-height: 100vh;
}

body.argus-launcher-page .plans-subtitle,
body.argus-launcher-page .plan-small {
  color: #94a3b8;
}

.argus-launcher-main {
  padding: 28px 0 56px;
}

.launcher-shell {
  max-width: 920px;
}

.launcher-hero {
  margin-bottom: 28px;
}

.launcher-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  margin: 0 0 8px;
}

.launcher-title {
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: #f8fafc;
  line-height: 1.2;
}

.launcher-cargo {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.launcher-clock {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.launcher-clock-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.launcher-clock time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.1rem;
  color: #e2e8f0;
}

.launcher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.launcher-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 118px;
  padding: 16px 14px;
  border-radius: 16px;
  text-decoration: none;
  color: #f1f5f9;
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

a.launcher-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.launcher-tile--accent {
  background: linear-gradient(145deg, rgba(46, 125, 178, 0.35) 0%, rgba(15, 23, 42, 0.85) 100%);
  border-color: rgba(56, 189, 248, 0.35);
}

.launcher-tile--disabled {
  opacity: 0.55;
  cursor: default;
}

.launcher-tile-icon {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.35);
}

.icon-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon .icon-svg {
  width: 24px;
  height: 24px;
}

.inline-meta-icon .icon-svg,
.launcher-tile-icon .icon-svg {
  width: 16px;
  height: 16px;
}

.launcher-tile-label {
  font-weight: 800;
  font-size: 15px;
}

.launcher-tile-hint {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.35;
}

.launcher-details {
  scroll-margin-top: 24px;
}

.plan-card--launcher-detail {
  background: rgba(248, 250, 252, 0.97);
  color: var(--fc-navy);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.plan-card--launcher-detail .plan-small {
  color: var(--fc-muted);
}

.launcher-details-heading {
  margin-top: 0;
  font-size: 1.25rem;
}

.launcher-details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 520px) {
  .top-strip-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .mobile-chart-wrap {
    height: min(260px, 50vh) !important;
    min-height: 200px;
  }

  .grupo-head-stack {
    flex-direction: column;
    align-items: stretch !important;
  }

  .grupo-head-stack > div:last-child {
    text-align: left !important;
  }

  .top-actions {
    justify-content: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .top-actions .btn,
  .top-actions .header-sair-form {
    width: 100%;
  }

  .top-actions .header-sair-form .btn {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .hero-card {
    padding: 18px;
  }

  .plan-card {
    padding: 16px;
  }

  .site-footer-logo {
    width: 84px;
    height: 84px;
    max-width: 84px;
    max-height: 84px;
  }

  .launcher-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- Fase 6: voz (web) --- */
.voice-controls-box {
  margin-top: 1rem;
  padding: 14px;
  border-radius: 12px;
  background: #f7fbff;
  border: 1px solid #d6e3ef;
}

.voice-controls-title {
  margin: 0;
}

.voice-controls-help {
  margin: 8px 0 12px;
}

.voice-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.voice-rate-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fc-muted);
  margin-left: 4px;
}

.voice-rate-select {
  border: 1px solid #cad3de;
  border-radius: 8px;
  background: #fff;
  color: var(--fc-navy);
  padding: 6px 8px;
  font-size: 13px;
}

.voice-cmd-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #c7d4e2;
}

/* --- Fase 7: modos + pomodoro --- */
.mode-controls-box {
  margin-top: 1rem;
  padding: 14px;
  border-radius: 12px;
  background: #f5f8fc;
  border: 1px solid #d4deea;
}

.mode-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pomodoro-box {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #c7d4e2;
}

.pomodoro-title {
  margin: 0 0 6px;
}

.pomodoro-done-msg {
  margin: 0 0 8px;
  color: #0d6e3e;
  font-weight: 600;
}

.pomodoro-timer {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--fc-navy);
}

.recall-list {
  display: grid;
  gap: 12px;
}

.recall-item {
  padding: 12px;
  border: 1px solid #d9e2ec;
  border-radius: 10px;
  background: #fff;
}

.recall-q {
  margin: 0 0 8px;
  font-size: 15px;
}

.recall-answer {
  width: 100%;
  border: 1px solid #cad3de;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  color: var(--fc-navy);
  background: #fdfefe;
}

.recall-guided-controls {
  margin-bottom: 10px;
}

.recall-guided-interval {
  width: 88px;
}

.recall-guided-box {
  margin: 0 0 10px;
  padding: 10px;
  border: 1px dashed #64748b;
  border-radius: 8px;
  background: #f8fbff;
}

.recall-guided-title {
  margin: 0 0 6px;
}

.recall-guided-question {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--fc-navy);
}

.recall-guided-hint {
  margin: 0 0 8px;
}

.recall-anchor-box {
  margin-bottom: 12px;
  border-style: solid;
  border-color: #cfd8e3;
}

.recall-anchor-box.is-visible {
  display: block;
}

.recall-anchor-meta {
  margin: 0 0 6px;
}

.recall-anchor-snippet {
  margin: 0;
}

.onboarding-chat-form {
  gap: 12px;
}

.onboarding-chat-bubble {
  padding: 12px;
  border: 1px solid #d9e2ec;
  border-radius: 10px;
  background: #f8fbff;
}

.onboarding-chat-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--fc-sky);
  font-weight: 700;
}

.onboarding-chat-question {
  margin: 0;
  color: var(--fc-navy);
  font-weight: 600;
}

.onboarding-chat-input-row {
  display: grid;
  gap: 8px;
}

.onboarding-chat-input {
  width: 100%;
}

.onboarding-chat-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* --- Fase 12: Revisão espaçada (SRS sobre recall) --- */
.revisao-due-banner {
  margin: 1rem 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #b8dcc4;
  background: linear-gradient(145deg, #f5fcf7 0%, #eef5fb 100%);
}

.revisao-due-count {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.revisao-subheading {
  margin: 1.25rem 0 0.5rem;
  font-weight: 700;
}

.revisao-summary-list,
.revisao-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.revisao-summary-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #d9e2ec;
  border-radius: 10px;
  background: #fff;
}

.revisao-sessao-card .revisao-card-q {
  margin: 1rem 0;
}

.revisao-hint-details summary {
  cursor: pointer;
  color: var(--fc-sky);
}

.revisao-grade-intro {
  margin: 1rem 0 0.75rem;
}

.revisao-grade-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 440px;
}

@media (min-width: 520px) {
  .revisao-grade-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
  }
}

.revisao-btn-again {
  border-color: #fbbf24;
  color: #92400e;
}

.revisao-btn-hard {
  border-color: #fca5a5;
  color: #991b1b;
}

.revisao-btn-easy {
  border-color: #86efac;
  color: #166534;
}

/* Fase 12 — parte 2: meta, streak, relatório */
.revisao-routine-panel {
  margin: 0 0 1.35rem;
}

.revisao-routine-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .revisao-routine-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.revisao-routine-card {
  padding: 12px 14px;
  border: 1px solid #d9e2ec;
  border-radius: 10px;
  background: #fff;
}

.revisao-routine-stat {
  margin: 0 0 8px;
  font-size: 1rem;
}

.revisao-routine-hint {
  margin: 10px 0 0;
  color: var(--fc-muted);
  font-size: 13px;
  line-height: 1.4;
}

.revisao-code {
  font-size: 12px;
  background: #eef2f6;
  padding: 2px 6px;
  border-radius: 4px;
}

.revisao-goal-bar-wrap {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.revisao-goal-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fc-sky), var(--fc-lime));
  transition: width 0.25s ease;
}

.revisao-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  vertical-align: middle;
}

.revisao-badge--ok {
  background: #dcfce7;
  color: #166534;
}

.revisao-stats-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  margin-bottom: 0.5rem;
}

.revisao-stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.revisao-stats-table th,
.revisao-stats-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.revisao-stats-table th {
  font-weight: 700;
  color: var(--fc-navy);
  background: #f8fafc;
}

.revisao-sessao-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 12px 0 16px;
  padding: 10px 12px;
  border: 1px solid #d9e2ec;
  border-radius: 10px;
  background: #f8fafc;
}

.revisao-sessao-strip-meta {
  font-size: 14px;
}

.revisao-sessao-strip-bar {
  flex: 1;
  min-width: 100px;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.revisao-sessao-strip-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fc-sky), var(--fc-lime));
}

.revisao-sessao-strip-streak {
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-muted);
  white-space: nowrap;
}

/* --- Fase 13: interface camaleão (ônibus / mesa) --- */
.chameleon-mode-hints {
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eef6ff;
  border: 1px solid #cfe1f5;
}

.chameleon-hint--bus {
  display: none;
}

.chameleon-hint--desk {
  display: block;
}

body.study-mode-bus .chameleon-hint--desk {
  display: none;
}

body.study-mode-bus .chameleon-hint--bus {
  display: block;
}

.chameleon-btn-big {
  min-height: 44px;
  padding-left: 16px;
  padding-right: 16px;
}

.chameleon-smart-audio {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.chameleon-smart-label {
  font-weight: 600;
  color: var(--fc-navy);
}

.chameleon-rate-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chameleon-rate-presets .btn {
  min-height: 40px;
  min-width: 52px;
}

.chameleon-micro-row,
.chameleon-desk-focus-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #c7d4e2;
}

.chameleon-preset-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--fc-navy);
}

.chameleon-preset-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chameleon-micro-btn {
  min-height: 44px;
}

/* Antes do JS: assume Mesa (só blocos de mesa visíveis) */
.mode-only-bus {
  display: none;
}

.mode-only-desk {
  display: block;
}

body.study-mode-bus .mode-only-bus {
  display: block;
}

body.study-mode-bus .mode-only-desk {
  display: none !important;
}

body.study-mode-desk .mode-only-desk {
  display: block;
}

body.study-mode-desk .mode-only-bus {
  display: none !important;
}

.chameleon-deep-read {
  margin-top: 1.25rem;
}

.chameleon-collapsible {
  margin-bottom: 10px;
  border: 1px solid #d4deea;
  border-radius: 10px;
  background: #fafbfd;
  padding: 0 12px 10px;
}

.chameleon-collapsible-summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  color: var(--fc-navy);
}

.chameleon-pre {
  white-space: pre-wrap;
  word-break: break-word;
  background: #eef2f6;
  padding: 14px;
  border-radius: 8px;
  font-size: 13px;
  margin: 0;
  overflow: auto;
}

.chameleon-pre--outline {
  max-height: 480px;
}

.chameleon-collapsible-empty {
  margin: 0 0 8px;
}

body.study-mode-bus .chameleon-zone--audio {
  box-shadow: 0 2px 12px rgba(28, 43, 57, 0.08);
}

body.study-mode-bus .chameleon-pre,
body.study-mode-bus pre.chameleon-pre {
  max-height: 180px !important;
  font-size: 12px !important;
}

body.study-mode-bus .plan-small {
  font-size: 12px;
}

@media (max-width: 640px) {
  body.study-mode-bus .chameleon-zone--audio {
    position: sticky;
    bottom: 0;
    z-index: 20;
    margin-top: 8px;
    padding-bottom: 16px;
    background: linear-gradient(180deg, rgba(247, 251, 255, 0) 0%, #f7fbff 12%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}

/* --- Fase 14: TAF / plano físico --- */
.taf-disclaimer {
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  background: #fffbeb;
}

.taf-section {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed #c7d4e2;
}

.taf-subheading {
  font-weight: 700;
  margin-bottom: 8px;
}

.taf-form label.plan-small {
  display: block;
  margin-top: 10px;
  margin-bottom: 4px;
}

.taf-form .radar-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.taf-inline-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 8px;
}

.taf-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.taf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.taf-table th,
.taf-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.taf-table th {
  font-weight: 700;
  background: #f8fafc;
}

/* --- Fase 8: Radar (concursos / links oficiais + mapa) --- */
.radar-loc-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed #c7d4e2;
}

.radar-consent-text {
  margin-top: 0;
}

.radar-prefs-form {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.radar-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fc-navy);
  cursor: pointer;
}

.radar-consent-label input {
  margin-top: 3px;
  flex-shrink: 0;
}

.radar-field--slider {
  max-width: 100%;
}

.radar-slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.radar-range {
  flex: 1;
  min-width: 160px;
  height: 10px;
  accent-color: #0284c7;
  cursor: pointer;
}

.radar-radius-output {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--fc-navy);
  min-width: 4.5rem;
  text-align: right;
}

.radar-select {
  width: 100%;
}

.radar-loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.radar-map {
  width: 100%;
  height: min(52vh, 420px);
  min-height: 220px;
  margin-top: 14px;
  border-radius: 12px;
  border: 1px solid #d6e3ef;
  background: #e8eef5;
  z-index: 0;
}

.radar-coord-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 560px) {
  .radar-coord-row {
    grid-template-columns: 1fr 1fr;
  }
}

.radar-dist {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}

.radar-dist--in {
  background: #e8f8ef;
  color: #0d5c2e;
}

.radar-dist--out {
  background: #fff4e5;
  color: #9a5b00;
}

.radar-page .radar-section-title {
  margin: 1.25rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fc-navy);
}

.radar-auto-section .radar-auto-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  max-width: 560px;
}

.radar-auto-q-wrap {
  flex: 1;
  min-width: 200px;
}

.radar-auto-actions {
  flex-shrink: 0;
}

.radar-auto-warnings {
  list-style: disc;
  margin: 8px 0 0;
  padding-left: 1.35rem;
  color: var(--fc-muted);
  font-size: 13px;
  line-height: 1.45;
}

.radar-auto-warnings li {
  margin: 4px 0;
}

.radar-auto-results {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.radar-auto-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed #c7d4e2;
  background: #fafcfe;
}

.radar-auto-item-main {
  flex: 1;
  min-width: 200px;
  display: grid;
  gap: 6px;
}

.radar-auto-title {
  font-size: 15px;
}

.radar-auto-src {
  color: var(--fc-muted);
}

.radar-auto-pub {
  display: block;
}

.radar-auto-add-form {
  flex-shrink: 0;
  align-self: center;
}

.radar-app-theme .radar-auto-item {
  border-color: rgba(56, 189, 248, 0.22);
  background: rgba(15, 23, 42, 0.45);
}

.radar-app-theme .radar-auto-src {
  color: #94a3b8 !important;
}

.radar-form-section {
  margin-top: 0.5rem;
}

.radar-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.radar-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fc-muted);
  margin-bottom: 6px;
}

.radar-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #cad3de;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 15px;
  color: var(--fc-navy);
  background: #fff;
}

.radar-list-section {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px dashed #c7d4e2;
}

.radar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.radar-list-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #d6e3ef;
  background: #f8fafc;
}

.radar-list-main {
  flex: 1;
  min-width: min(100%, 240px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.radar-list-title {
  font-size: 16px;
  color: var(--fc-navy);
}

.radar-list-area {
  display: block;
}

.radar-list-link {
  color: var(--fc-sky);
  font-weight: 700;
  font-size: 14px;
  word-break: break-word;
}

.radar-delete-form {
  margin: 0;
  align-self: center;
}

.radar-delete-btn {
  white-space: nowrap;
}

/* --- Dashboard de serviços (radar) --- */
.service-dashboard {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-sidebar {
  background: #fff;
  border: 1px solid #dbe1e8;
  border-radius: 14px;
  padding: 18px;
  position: sticky;
  top: 14px;
}

.service-brand {
  display: block;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.service-brand small {
  display: block;
  font-weight: 700;
  font-size: 11px;
  color: #64748b;
}

.service-nav {
  display: grid;
  gap: 8px;
}

.service-nav-item {
  display: block;
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  background: #f8fafc;
}

.service-nav-item.is-active {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

.service-content {
  min-width: 0;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
}

.service-header h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
}

.service-breadcrumb {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 14px;
}

.service-api-badge {
  margin: 0;
  border-radius: 999px;
  border: 1px solid #86efac;
  background: #ecfdf3;
  color: #14532d;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.service-ok {
  margin: 0 0 12px;
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #166534;
  border-radius: 10px;
  padding: 10px 12px;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: #fff;
  border: 1px solid #dbe1e8;
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.service-card-head h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.service-dropzone {
  border: 1px dashed #9fb3c8;
  border-radius: 12px;
  background: #f8fafc;
  padding: 20px 14px;
  text-align: center;
}

.service-dropzone p {
  margin: 0;
  font-weight: 700;
}

.service-dropzone span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
}

.service-textarea {
  resize: vertical;
  min-height: 96px;
  border: 1px solid #cad3de;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.service-inline-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-preview-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 8px;
}

.service-pill {
  border: 1px solid #dbe1e8;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  color: #334155;
  font-size: 13px;
  background: #f8fafc;
}

.service-map-wire {
  display: block;
  border-radius: 10px;
  border: 1px solid #dbe1e8;
  background:
    radial-gradient(circle at 18% 28%, #93c5fd 0 2px, transparent 3px),
    radial-gradient(circle at 38% 50%, #93c5fd 0 2px, transparent 3px),
    radial-gradient(circle at 68% 40%, #60a5fa 0 2px, transparent 3px),
    linear-gradient(24deg, transparent 27%, #bfd7f4 28% 30%, transparent 31%),
    linear-gradient(-21deg, transparent 45%, #bfd7f4 46% 48%, transparent 49%),
    #f8fafc;
  min-height: 58px;
}

.service-audio-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.service-audio-row label {
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
}

.service-radar-prefs {
  max-width: none;
}

.service-radar-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 10px;
  align-items: start;
}

.service-radar-side {
  display: grid;
  gap: 8px;
}

.service-radar-side label {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.service-card-wide {
  margin-top: 14px;
}

.service-card-wide .radar-form {
  max-width: 100%;
}

@media (max-width: 980px) {
  .service-dashboard {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-inline-buttons {
    grid-template-columns: 1fr;
  }

  .service-preview-row {
    grid-template-columns: 1fr;
  }

  .service-radar-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .radar-list-item {
    flex-direction: column;
    align-items: stretch;
  }

  .radar-delete-btn {
    width: 100%;
  }
}

/* --- Materiais: editar / eliminar --- */
.study-material-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.study-delete-form {
  display: inline-flex;
  margin: 0;
}

.study-delete-btn {
  color: #9b2c2c;
  border-color: #e8bcbc;
  background: #fff5f5;
}

.study-list-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 12px;
}

.study-list-main {
  flex: 1;
  min-width: min(100%, 200px);
}

.study-list-edit {
  font-size: 13px;
  font-weight: 700;
  color: var(--fc-sky);
  white-space: nowrap;
}

/* --- Fase 11 — Tutor IA (/conta/estudo/{id}/tutor) --- */
.tutor-chat-card {
  max-width: 720px;
  margin-inline: auto;
}

.tutor-thread {
  margin-top: 1rem;
  max-height: min(55vh, 520px);
  overflow-y: auto;
  padding: 12px;
  border: 1px solid #dbe1e8;
  border-radius: 12px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tutor-msg {
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid #cad3de;
}

.tutor-msg--user {
  background: #eef4fb;
  margin-left: clamp(12px, 8vw, 48px);
}

.tutor-msg--assistant {
  background: #ffffff;
  margin-right: clamp(12px, 8vw, 48px);
}

.tutor-msg-role {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fc-muted);
  margin-bottom: 6px;
}

.tutor-msg-body {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fc-navy);
}

.tutor-compose {
  margin-top: 1rem;
  display: grid;
  gap: 8px;
}

.tutor-compose-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--fc-muted);
}

.tutor-input {
  resize: vertical;
  min-height: 72px;
  font-family: inherit;
}

.tutor-clear-wrap {
  margin: 0 0 1rem;
}

.tutor-quota-line {
  margin-bottom: 0.6rem !important;
}

.tutor-footnote {
  margin-top: 14px !important;
}

/* ========== Radar (/conta/radar) — tema escuro só no <main> (header/footer = landing) ========== */
main.radar-app-theme {
  display: block;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(56, 189, 248, 0.12), transparent 52%),
    linear-gradient(168deg, #070b10 0%, #0f172a 38%, #0a0e14 100%);
  color: #e2e8f0;
  min-height: calc(100vh - 120px);
}

.radar-app-theme a {
  color: inherit;
}

.radar-app-theme.radar-plans {
  background: transparent;
  padding: 28px 0 56px;
}

.radar-app-theme .plan-card.radar-page {
  background: linear-gradient(155deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 23, 42, 0.92) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.radar-app-theme .plan-card.radar-page > h1 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 4.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f8fafc;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.radar-app-theme .plan-card.radar-page > .plan-small {
  color: #94a3b8;
  line-height: 1.55;
  max-width: 56ch;
}

.radar-app-theme .form-error {
  color: #fecaca;
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(248, 113, 113, 0.4);
  border-radius: 10px;
  padding: 10px 12px;
}

/* Ficha de sessão — bloco prateado (estilo “agenda” do mockup) */
.radar-app-theme .session-info-sheet-inner {
  background: linear-gradient(175deg, #e2e8f0 0%, #cbd5e1 45%, #94a3b8 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  border-radius: 14px;
}

.radar-app-theme .session-info-sheet-label {
  color: #475569;
}

.radar-app-theme .session-info-sheet-value {
  color: #0f172a;
  font-weight: 700;
}

.radar-app-theme .session-info-sheet-actions {
  border-top-color: rgba(15, 23, 42, 0.12);
}

.radar-app-theme .session-info-sheet-actions .btn-light {
  background: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}

.radar-app-theme .session-info-sheet-actions .btn-light:hover {
  background: #334155;
}

/* Secção localização — painel escuro com contorno azul */
.radar-app-theme .radar-loc-section {
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding: 18px;
  padding-bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-bottom: 1px solid rgba(56, 189, 248, 0.45);
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.08), 0 12px 32px rgba(0, 0, 0, 0.35);
}

.radar-app-theme .radar-section-title {
  color: #f1f5f9 !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem !important;
}

.radar-app-theme .radar-consent-text {
  color: #94a3b8;
}

.radar-app-theme .radar-consent-label {
  color: #cbd5e1;
}

.radar-app-theme .radar-prefs-form .btn-light {
  background: rgba(30, 41, 59, 0.85);
  border-color: rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
}

.radar-app-theme .radar-prefs-form .btn-primary {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  border-color: rgba(56, 189, 248, 0.55);
  color: #0f172a;
  font-weight: 800;
}

.radar-app-theme .radar-map {
  border-color: rgba(56, 189, 248, 0.35);
  background: #0f172a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.radar-app-theme .leaflet-container {
  border-radius: 12px;
  font-family: inherit;
}

.radar-app-theme .leaflet-container a {
  color: #64748b;
}

/* Form adicionar — cartão médio */
.radar-app-theme .radar-form-section {
  margin-top: 1.75rem;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(51, 65, 85, 0.55) 0%, rgba(30, 41, 59, 0.85) 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.radar-app-theme .radar-field label {
  color: #cbd5e1;
}

.radar-app-theme .radar-input,
.radar-app-theme .radar-select {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(56, 189, 248, 0.22);
  color: #f1f5f9;
}

.radar-app-theme .radar-range {
  accent-color: #38bdf8;
}

.radar-app-theme .radar-radius-output {
  color: #38bdf8;
}

.radar-app-theme .radar-input::placeholder {
  color: #64748b;
}

.radar-app-theme .radar-input:focus,
.radar-app-theme .radar-select:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.radar-app-theme .radar-range:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
  border-radius: 8px;
}

.radar-app-theme .radar-form .btn-primary {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  border-color: rgba(56, 189, 248, 0.55);
  color: #0f172a;
  font-weight: 800;
}

/* Lista */
.radar-app-theme .radar-list-section {
  border-top-color: rgba(56, 189, 248, 0.18);
}

.radar-app-theme .radar-list-item {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(56, 189, 248, 0.15);
}

.radar-app-theme .radar-list-title {
  color: #f8fafc;
}

.radar-app-theme .radar-list-area,
.radar-app-theme .radar-list-main .plan-small {
  color: #94a3b8 !important;
}

.radar-app-theme .radar-list-link {
  color: #38bdf8;
}

.radar-app-theme .radar-dist--in {
  background: rgba(22, 101, 52, 0.45);
  color: #bbf7d0;
}

.radar-app-theme .radar-dist--out {
  background: rgba(120, 53, 15, 0.45);
  color: #fde68a;
}

.radar-app-theme .radar-delete-btn {
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(127, 29, 29, 0.35);
}

.radar-app-theme .radar-page-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radar-app-theme .radar-page-actions .btn-light {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
}

@media (max-width: 520px) {
  .radar-app-theme .radar-loc-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .radar-app-theme .radar-loc-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Páginas legais (LGPD / termos) --- */
.legal-page {
  background: var(--fc-page);
  padding: 2rem 0 3.5rem;
  min-height: 48vh;
}

.legal-page-inner {
  max-width: 46rem;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(1.45rem, 4.2vw, 1.95rem);
  color: var(--fc-navy);
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.6rem;
  color: var(--fc-navy);
  line-height: 1.3;
}

.legal-page h3 {
  font-size: 1rem;
  margin: 1.35rem 0 0.45rem;
  color: var(--fc-navy);
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.68;
  color: #334155;
}

@media (max-width: 760px) {
  .legal-page p,
  .legal-page li {
    font-size: 14px;
  }
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.35rem;
  margin: 0.35rem 0 0.85rem;
}

.legal-page .legal-meta {
  font-size: 13px;
  color: var(--fc-muted);
  margin: 0 0 0.35rem;
  line-height: 1.55;
}

.legal-page .legal-highlight {
  border-left: 4px solid var(--fc-lime);
  padding: 0.85rem 1rem;
  background: var(--fc-white);
  margin: 1rem 0 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 1px 0 rgba(28, 43, 57, 0.06);
}

.legal-page .legal-highlight p {
  color: #334155;
}

.legal-page a {
  color: var(--fc-sky);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  color: var(--fc-navy);
}

/* --- Página Suporte --- */
.suporte-page {
  background: var(--fc-page);
  color: var(--fc-navy);
  padding-bottom: 3rem;
}

/* Verde só em negrito (#8cc63f); resto igual ao texto principal da landing (--fc-navy) */
.suporte-aside strong,
.suporte-aside b,
.suporte-form-card strong,
.suporte-form-card b {
  color: #8cc63f;
  font-weight: 800;
}

.suporte-hero .suporte-lead strong,
.suporte-hero .suporte-lead b {
  color: #8cc63f;
  font-weight: 800;
}

/* Banner promocional — Suporte (gradiente azul + verde, duas colunas) */
.suporte-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  background:
    linear-gradient(
      118deg,
      #0f1f2d 0%,
      #163652 26%,
      #1a5580 48%,
      #1f5c42 72%,
      #142a22 100%
    );
}

.suporte-hero-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 65% at 88% 42%, rgba(140, 198, 63, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 12% 78%, rgba(46, 125, 178, 0.35) 0%, transparent 48%),
    radial-gradient(circle 38% at 72% 38%, rgba(255, 255, 255, 0.14) 0%, transparent 100%);
}

.suporte-hero-stripes {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  opacity: 0.13;
  background: repeating-linear-gradient(
    -28deg,
    transparent,
    transparent 38px,
    rgba(255, 255, 255, 0.55) 38px,
    rgba(255, 255, 255, 0.55) 40px
  );
}

.suporte-hero-inner {
  position: relative;
  z-index: 2;
}

.suporte-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .suporte-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .suporte-hero-visual {
    order: -1;
    min-height: 180px;
    max-width: 420px;
    margin: 0 auto;
  }
}

.suporte-hero-copy {
  max-width: 34rem;
}

.suporte-banner-headline {
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(46, 125, 178, 0.18);
}

/* Chip verde como na referência — texto escuro sobre #8cc63f */
.suporte-banner-chip {
  margin: 0.85rem 0 0;
  display: inline-block;
  padding: 0.45rem 1.15rem;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fc-navy);
  background: #8cc63f;
  border-radius: 6px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 24px rgba(0, 0, 0, 0.22);
}

.suporte-lead {
  margin: 1.15rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.suporte-hero-line {
  margin-top: 1.35rem;
  height: 4px;
  max-width: 10rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #8cc63f 0%, #2e7db2 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Coluna direita — forma abstracta + halo (sem imagem) */
.suporte-hero-visual {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suporte-hero-visual-glow {
  position: absolute;
  width: min(92%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 36%, rgba(255, 255, 255, 0.35) 0%, transparent 52%);
  filter: blur(2px);
  opacity: 0.85;
}

.suporte-hero-visual-ring {
  position: absolute;
  width: min(78%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.suporte-hero-visual-mesh {
  position: absolute;
  inset: 10%;
  border-radius: 22px;
  opacity: 0.22;
  background: repeating-linear-gradient(
    -35deg,
    transparent,
    transparent 24px,
    rgba(255, 255, 255, 0.9) 24px,
    rgba(255, 255, 255, 0.9) 25px
  );
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 30%, transparent 75%);
}

.suporte-shell {
  margin-top: -1.75rem;
  position: relative;
  z-index: 3;
}

.suporte-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

@media (max-width: 980px) {
  .suporte-grid {
    grid-template-columns: 1fr;
  }
}

.suporte-section-heading {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fc-navy);
}

.suporte-section-intro {
  margin: 0.45rem 0 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--fc-navy);
}

.suporte-aside {
  background: var(--fc-white);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  color: var(--fc-navy);
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.suporte-aside:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 8px 12px rgba(0, 0, 0, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.1),
    0 32px 56px rgba(0, 0, 0, 0.08);
}

@media (min-width: 981px) {
  .suporte-aside {
    position: sticky;
    top: 1rem;
  }
}

.suporte-rule {
  border: none;
  border-top: 1px solid #dbe4ec;
  margin: 1.25rem 0;
}

.suporte-rule--inset {
  margin: 1rem 0;
  opacity: 0.85;
}

.suporte-tile {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

/* Ícone só em verde — sem caixa / fundo */
.suporte-tile-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
  width: 28px;
  color: #8cc63f;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.suporte-svg {
  width: 24px;
  height: 24px;
}

.suporte-tile-body {
  min-width: 0;
}

.suporte-tile-title {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fc-navy);
}

.suporte-tile-value {
  margin: 0.3rem 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--fc-navy);
  word-break: break-word;
}

.suporte-tile-value.suporte-multiline {
  font-weight: 500;
  line-height: 1.55;
  color: var(--fc-navy);
}

.suporte-tile-copy {
  margin: 0.3rem 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--fc-navy);
}

.suporte-tile-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--fc-muted);
}

.suporte-tile-link {
  color: var(--fc-navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(46, 125, 178, 0.35);
}

.suporte-tile-link:hover {
  color: var(--fc-sky);
  border-bottom-color: var(--fc-lime);
}

.suporte-muted {
  font-weight: 500;
  color: var(--fc-muted) !important;
}

.suporte-fine-print {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--fc-muted);
}

.suporte-fine-print a {
  color: var(--fc-sky);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 125, 178, 0.35);
}

.suporte-fine-print a:hover {
  color: var(--fc-navy);
}

.suporte-main {
  min-width: 0;
}

.suporte-form-card {
  position: relative;
  background: var(--fc-white);
  border-radius: 14px;
  padding: 1.6rem 1.45rem 1.75rem;
  color: var(--fc-navy);
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 14px 32px rgba(0, 0, 0, 0.09),
    0 26px 52px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.suporte-form-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 8px 14px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.11),
    0 34px 60px rgba(0, 0, 0, 0.09);
}

.suporte-form-card-head {
  margin-bottom: 1.1rem;
}

.suporte-head-line {
  margin-top: 0.65rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8cc63f 0%, #2e7db2 100%);
  max-width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.suporte-feedback {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.suporte-feedback--ok {
  background: rgba(140, 198, 63, 0.18);
  color: #1e3d14;
  border: 1px solid rgba(140, 198, 63, 0.45);
}

.suporte-feedback--warn {
  background: rgba(234, 179, 8, 0.15);
  color: #713f12;
  border: 1px solid rgba(234, 179, 8, 0.4);
}

.suporte-feedback--err {
  background: rgba(220, 38, 38, 0.1);
  color: #7f1d1d;
  border: 1px solid rgba(220, 38, 38, 0.28);
}

.suporte-form {
  margin: 0;
}

.suporte-hny {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.suporte-field-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.suporte-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.suporte-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fc-navy);
}

.suporte-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #c9d4df;
  background: #fbfcfe;
  font-size: 15px;
  font-family: inherit;
  color: var(--fc-navy);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.suporte-input::placeholder {
  color: #94a3b8;
}

.suporte-input:hover {
  border-color: #a8b8c8;
}

.suporte-input:focus {
  outline: none;
  border-color: rgba(46, 125, 178, 0.65);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46, 125, 178, 0.22);
}

.suporte-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231c2b39' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.suporte-textarea {
  min-height: 10rem;
  resize: vertical;
  line-height: 1.55;
}

.suporte-form-actions {
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

/* Mesmo padrão da landing: .btn-primary (#2e7db2); sombra neutra */
.suporte-submit {
  min-width: 12rem;
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.suporte-submit:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.26) inset,
    0 6px 16px rgba(0, 0, 0, 0.14),
    0 3px 8px rgba(0, 0, 0, 0.1);
}

.suporte-submit-hint {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--fc-muted);
  line-height: 1.45;
  max-width: 28rem;
}

@media (max-width: 520px) {
  .suporte-hero {
    padding: 2rem 0 2.35rem;
  }

  .suporte-aside,
  .suporte-form-card {
    padding: 1.25rem 1.05rem;
  }

  .suporte-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .suporte-aside,
  .suporte-form-card {
    transition: none;
  }

  .suporte-aside:hover,
  .suporte-form-card:hover {
    transform: none;
  }

  .suporte-submit {
    transition: none;
  }

  .suporte-submit:hover {
    transform: none;
  }
}
