/* ════════════════════════════
   NAV
════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 76px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(246, 247, 248, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(75, 155, 175, 0.12);
  box-shadow:
    0 1px 0 rgba(75, 155, 175, 0.08),
    0 8px 32px rgba(29, 43, 58, 0.07);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-headline);
  letter-spacing: 0;
  line-height: 1;
  transition: color 0.3s ease;
}
.nav__logo-text span {
  color: var(--color-accent);
  transition: color 0.3s ease;
}
.nav.scrolled .nav__logo-text {
  color: var(--color-headline);
}
.nav.scrolled .nav__logo-text span {
  color: var(--color-accent);
}

/* Divider */
.nav__divider {
  width: 1px;
  height: 20px;
  background: rgba(75, 155, 175, 0.2);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.nav.scrolled .nav__divider {
  background: rgba(75, 155, 175, 0.2);
}

/* Links */
.nav__links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav__links a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.1px;
  padding: 6px 12px;
  border-radius: 8px;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
}
.nav.scrolled .nav__links a {
  color: var(--color-muted);
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:hover {
  color: var(--color-primary);
  background: rgba(75, 155, 175, 0.08);
}
.nav.scrolled .nav__links a:hover {
  color: var(--color-headline);
  background: rgba(75, 155, 175, 0.06);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

/* Instagram */
.nav__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-muted);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  flex-shrink: 0;
}
.nav__instagram:hover {
  color: var(--color-primary);
  background: rgba(75, 155, 175, 0.08);
}

/* CTA */
.nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 13.5px;
}
.nav__cta svg {
  transition: transform var(--transition-fast);
}
.nav__cta:hover svg {
  transform: translateX(3px);
}

/* Nav simples — páginas de produto */
.nav--simple {
  background: rgba(246, 247, 248, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(75, 155, 175, 0.12);
}

.nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}
.nav__back:hover {
  color: var(--color-primary);
}
.nav__back svg {
  flex-shrink: 0;
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #eff7f9;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 100px 80px 80px;
  overflow: hidden;
  gap: 80px;
}

.hero__blob {
  position: absolute;
  right: -120px;
  top: -100px;
  width: 780px;
  height: 780px;
  background: rgba(147, 197, 208, 0.28);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: 0;
  pointer-events: none;
}

/* Conteúdo esquerdo */
.hero__content {
  position: relative;
  z-index: 2;
  width: 480px;
  flex-shrink: 0;
}

.hero__online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 0.5px solid rgba(75, 155, 175, 0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.hero__online-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #1a3d4e;
  margin-bottom: 18px;
}

.hero__title em {
  font-style: normal;
  color: var(--color-primary);
}

.hero__sub {
  font-size: 18px;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #1a3d4e;
  line-height: 1;
}

.hero__stat-num sup {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 700;
  vertical-align: super;
}

.hero__stat-unit {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

.hero__stat-lbl {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(75, 155, 175, 0.2);
  flex-shrink: 0;
}

/* Visual direito */
.hero__visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero image */
.hero__img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Phone mockup */
.hero__phone {
  width: 210px;
  height: 400px;
  background: #1a3d4e;
  border-radius: 36px;
  border: 8px solid #1a3d4e;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(26, 61, 78, 0.28);
}

.hero__phone-notch {
  width: 72px;
  height: 18px;
  background: #1a3d4e;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__call-bar {
  background: var(--color-primary);
  padding: 28px 12px 14px;
  text-align: center;
}

.hero__call-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.hero__call-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-display);
}

.hero__call-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 10px;
  color: var(--color-white);
  margin-top: 6px;
}

.hero__call-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4fd18b;
  flex-shrink: 0;
}

.hero__doctor-area {
  flex: 1;
  background: rgba(147, 197, 208, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__doctor {
  width: 120px;
  text-align: center;
}

.hero__doc-head {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  margin: 0 auto 4px;
  position: relative;
}

.hero__doc-hair {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 26px;
  background: rgba(147, 197, 208, 0.6);
  border-radius: 26px 26px 0 0;
}

.hero__doc-coat {
  width: 90px;
  height: 96px;
  background: var(--color-white);
  border-radius: 45px 45px 8px 8px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}

.hero__doc-steth {
  width: 24px;
  height: 24px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  margin-top: 4px;
  position: relative;
}

.hero__doc-steth::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 2px;
}

.hero__phone-actions {
  background: #1a3d4e;
  padding: 12px 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hero__action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__action-btn--mic,
.hero__action-btn--cam {
  background: rgba(255, 255, 255, 0.12);
}

.hero__action-btn--end {
  background: var(--color-accent);
}

/* Cards flutuantes */
.hero__float {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 0.5px solid rgba(75, 155, 175, 0.15);
  padding: 12px 16px;
  box-shadow: var(--shadow-float);
}

.hero__float--doctor {
  top: 60px;
  left: -50px;
  width: 158px;
}

.hero__float--rating {
  bottom: 50px;
  right: -40px;
  width: 150px;
}

.hero__float--wait {
  bottom: 150px;
  left: -30px;
  width: 150px;
}

.hero__float-label {
  font-size: 10px;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.hero__float-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__float-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  flex-shrink: 0;
  font-family: var(--font-display);
}

.hero__float-name {
  font-size: 12px;
  font-weight: 700;
  color: #1a3d4e;
  line-height: 1.2;
  font-family: var(--font-display);
}

.hero__float-spec {
  font-size: 10px;
  color: var(--color-muted);
}

.hero__float-online {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 10px;
  color: #0f6e56;
  font-weight: 600;
  margin-top: 8px;
}

.hero__float-online-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.hero__float-big {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #1a3d4e;
  line-height: 1;
}

.hero__float-stars {
  color: var(--color-accent);
  font-size: 11px;
  letter-spacing: 1px;
  margin: 2px 0;
}

.hero__float-txt {
  font-size: 12px;
  font-weight: 700;
  color: #1a3d4e;
  line-height: 1.3;
  font-family: var(--font-display);
}

.hero__float-sub {
  font-size: 10px;
  color: var(--color-muted);
  margin-top: 2px;
}

.hero__float-pulse-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(235, 121, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ════════════════════════════
   PROOF STRIP
════════════════════════════ */
.proof-strip {
  background: var(--color-primary);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

.proof-strip__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.proof-strip__ticker {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.proof-strip__track {
  display: flex;
  width: max-content;
  animation: ticker-rtl 15s linear infinite;
  will-change: transform;
}

.proof-strip__track:hover {
  animation-play-state: paused;
}

@keyframes ticker-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.proof-strip__item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding-right: 48px;
}

/* ════════════════════════════
   SECTION: O QUE É
════════════════════════════ */
.what-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.what-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.what-item__num {
  min-width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}
.what-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a3d4e;
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.what-item p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
}

.visual-block {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.visual-block::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.visual-block::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: rgba(235, 121, 110, 0.15);
  border-radius: 50%;
}
.visual-block__head {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.visual-block__big {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}
.visual-block__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}
.visual-block__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.visual-block .check-item span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

/* ════════════════════════════
   PLANS
════════════════════════════ */
.plans-section {
  background: #1a3d4e;
}
.plans-section .text-section-title {
  color: var(--color-white);
}
.plans-section .text-section-sub {
  color: rgba(255, 255, 255, 0.45);
}
.plans-section .text-label {
  color: var(--color-secondary);
}

/* ════════════════════════════
   PLANOS — dois cards
════════════════════════════ */
.plans-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

/* ════════════════════════════
   PLANOS — três cards
════════════════════════════ */
.plans-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.plan-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition-mid),
    box-shadow var(--transition-mid);
}
.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card--active {
  border: 1px solid rgba(75, 155, 175, 0.2);
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 8px 32px rgba(75, 155, 175, 0.1);
}
.plan-card--active:hover {
  box-shadow: 0 20px 56px rgba(75, 155, 175, 0.16);
}

.plan-card--soon {
  border: 1.5px dashed rgba(75, 155, 175, 0.3);
  background: rgba(246, 247, 248, 0.6);
}
.plan-card--soon:hover {
  box-shadow: 0 8px 32px rgba(75, 155, 175, 0.07);
}

/* Badge */
.plan-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}
.plan-card__badge--active {
  background: rgba(75, 155, 175, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(75, 155, 175, 0.25);
}
.plan-card__badge--soon {
  background: rgba(235, 121, 110, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(235, 121, 110, 0.25);
}

/* Name */
.plan-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  color: #1a3d4e;
  margin-bottom: 12px;
}
.plan-card--soon .plan-card__name {
  color: var(--color-muted);
}

/* De / Por pricing */
.plan-card__from {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.plan-card__old {
  text-decoration: line-through;
  color: var(--color-accent);
  font-style: normal;
}

.plan-card__price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #1a3d4e;
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.plan-card__prefix {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-muted);
}
.plan-card__cents {
  font-size: 30px;
}
.plan-card__period {
  font-size: 14px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-weight: 400;
  margin-left: 4px;
}

.plan-card__price--soon {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: rgba(107, 138, 150, 0.35);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.plan-card__note {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 20px;
}

.plan-card__asterisk {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.4;
  background: rgba(75, 155, 175, 0.08);
  border-left: 2px solid var(--color-primary);
  padding: 6px 10px;
  border-radius: 0 6px 6px 0;
}

/* Tagline — Premium */
.plan-card__tagline {
  font-size: 15px;
  color: var(--color-headline);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* Separator */
.plan-card__sep {
  border: none;
  border-top: 1px solid rgba(75, 155, 175, 0.1);
  margin: 16px 0 20px;
}

/* Feature list */
.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #1a3d4e;
  line-height: 1.4;
}
.plan-card__features li::before {
  content: "✓";
  color: var(--color-primary);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Desc — Premium */
.plan-card__desc {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* CTA */
.plan-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Specialty tags */
.specialties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.specialty-tag {
  padding: 6px 14px;
  background: rgba(75, 155, 175, 0.07);
  border: 1px solid rgba(75, 155, 175, 0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
  cursor: default;
}
.specialty-tag--more {
  background: rgba(235, 121, 110, 0.07);
  border-color: rgba(235, 121, 110, 0.2);
  color: var(--color-accent);
}

/* ════════════════════════════
   STEPS
════════════════════════════ */
.steps-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}

.steps-intro__text .text-label {
  display: block;
  margin-bottom: 14px;
}

.steps-timer {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 1px solid rgba(75, 155, 175, 0.18);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(75, 155, 175, 0.07);
}
.steps-timer__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(75, 155, 175, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.steps-timer__headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #1a3d4e;
  line-height: 1.1;
}
.steps-timer__num {
  font-size: 36px;
}
.steps-timer__label {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 3px;
}
.steps-intro__sub {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
}

.steps-section {
  background: var(--color-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--color-secondary),
    transparent
  );
}

.step {
  text-align: center;
  padding: 0 12px;
}
.step__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  transition:
    background var(--transition-mid),
    border-color var(--transition-mid),
    color var(--transition-mid),
    transform var(--transition-mid);
}
.step:hover .step__circle {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}
.step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a3d4e;
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.step p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testi-section {
  background: var(--color-white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  background: var(--color-bg);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid transparent;
  transition:
    transform var(--transition-mid),
    border-color var(--transition-mid),
    box-shadow var(--transition-mid);
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(75, 155, 175, 0.18);
  box-shadow: 0 16px 48px rgba(75, 155, 175, 0.1);
}
.testi-card__quote {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-secondary);
  line-height: 0.8;
  margin-bottom: 12px;
}
.testi-card p {
  font-size: 15px;
  color: #1a3d4e;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-card__bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}
.testi-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #1a3d4e;
}
.testi-card__stars {
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 1px;
}

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 96px;
}
.faq-header .text-label {
  margin-bottom: 14px;
}
.faq-header .text-section-sub {
  margin-bottom: 28px;
}
.faq-header__cta {
  margin-top: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(75, 155, 175, 0.12);
}
.faq-item:first-child {
  border-top: 1px solid rgba(75, 155, 175, 0.12);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #1a3d4e;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}
.faq-item__q:hover {
  color: var(--color-primary);
}
.faq-item.open .faq-item__q {
  color: var(--color-primary);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(75, 155, 175, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition:
    transform var(--transition-mid),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item__a[hidden] {
  display: block;
  max-height: 0;
}
.faq-item.open .faq-item__a {
  max-height: 400px;
}
.faq-item__a p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.75;
  padding-bottom: 20px;
}

/* ════════════════════════════
   CTA FINAL
════════════════════════════ */
.cta-section {
  padding: 48px;
}

.cta-box {
  background: #1a3d4e;
  border-radius: 32px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.cta-box__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-box__blob:first-child {
  right: 160px;
  top: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(75, 155, 175, 0.18) 0%,
    transparent 70%
  );
}
.cta-box__blob--2 {
  left: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(235, 121, 110, 0.1) 0%,
    transparent 70%
  );
}
.cta-box > *:not(.cta-box__blob) {
  position: relative;
  z-index: 1;
}

.cta-box__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-box__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  line-height: 1.6;
}
.cta-box__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  white-space: nowrap;
}
.cta-box__actions .btn {
  padding: 18px 36px;
  font-size: 15px;
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.footer {
  background: var(--color-bg);
  padding: 56px 48px 28px;
  border-top: 1px solid rgba(75, 155, 175, 0.15);
  position: relative;
  overflow: hidden;
}

.footer__blob {
  position: absolute;
  left: -160px;
  bottom: -100px;
  width: 640px;
  height: 640px;
  background: rgba(75, 155, 175, 0.08);
  border-radius: 40% 60% 45% 55% / 60% 50% 50% 40%;
  pointer-events: none;
  z-index: 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

/* Brand column */
.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #1a3d4e;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.footer__logo span {
  color: var(--color-accent);
}

.footer__desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-white);
  border: 1px solid rgba(75, 155, 175, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}
.footer__social-link:hover {
  background: rgba(75, 155, 175, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}
.footer__contact a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__contact a:hover {
  color: var(--color-primary);
}

/* Nav columns */
.footer__col h5 {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul li {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.4;
}
.footer__col ul li a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__col ul li a:hover {
  color: var(--color-primary);
}
.footer__col ul li:has(a):hover {
  color: var(--color-primary);
}

/* "Em breve" inline badge */
.footer__soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
}
.footer__soon em {
  font-style: normal;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(235, 121, 110, 0.1);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Bottom bar */
.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(75, 155, 175, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom span {
  font-size: 12px;
  color: var(--color-muted);
}

.footer__tagline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.6;
}

/* ════════════════════════════
   PLAN PAGES
════════════════════════════ */
.plan-page__hero {
  background: #eff7f9;
  padding: 120px 80px 80px;
}

.plan-page__hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.plan-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color var(--transition-fast);
}
.plan-page__back:hover {
  color: var(--color-primary);
}

.plan-page__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #1a3d4e;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 16px 0 18px;
}

.plan-page__title sup {
  font-size: 22px;
  color: var(--color-accent);
  vertical-align: super;
}

.plan-page__sub {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.plan-page__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.plan-page__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #1a3d4e;
  font-weight: 500;
}

.plan-page__check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(75, 155, 175, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--color-primary);
}

/* Badge "Em breve" inline */
.plan-page__soon-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(75, 155, 175, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(75, 155, 175, 0.25);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  text-transform: uppercase;
}

/* Card "em breve" do Premium */
.plan-page__soon-card-badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(75, 155, 175, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(75, 155, 175, 0.25);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.plan-page__soon-headline {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #1a3d4e;
  line-height: 1.25;
}

.plan-page__soon-sub {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Hero split layout */
.plan-page__hero-inner--split {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.plan-page__content {
  display: flex;
  flex-direction: column;
}

/* Price card */
.plan-page__price-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-page__offer-badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(235, 121, 110, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(235, 121, 110, 0.25);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 14px;
}

.plan-page__from {
  font-size: 16px;
  color: var(--color-muted);
}
.plan-page__from s {
  color: var(--color-muted);
  text-decoration-color: var(--color-accent);
}

.plan-page__price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
}
.plan-page__currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #1a3d4e;
  align-self: flex-start;
  padding-top: 8px;
}
.plan-page__amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: #1a3d4e;
  letter-spacing: -2px;
}
.plan-page__period {
  font-size: 16px;
  color: var(--color-muted);
  padding-bottom: 10px;
}

.plan-page__price-note {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: -4px;
}

.plan-page__cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.plan-page__cta-btn svg {
  transition: transform var(--transition-fast);
}
.plan-page__cta-btn:hover svg {
  transform: translateX(3px);
}

.plan-page__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
  margin-top: -4px;
}

.plan-page__payment {
  background: var(--color-white);
  padding: 80px 80px;
}

.plan-page__payment-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.plan-page__payment-placeholder {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.plan-page__payment-icon {
  width: 64px;
  height: 64px;
  background: rgba(75, 155, 175, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.plan-page__payment-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #1a3d4e;
}

.plan-page__payment-desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 360px;
}

/* ════════════════════════════
   MOBILE-ONLY ELEMENTS
════════════════════════════ */
.nav__menu-btn {
  display: none;
}
.nav__mobile-menu {
  display: none;
}
