/* ============================================================
   RUMO — home.css
   Estilos da página principal (somosrumo.com.br)
   ============================================================ */

/* ════════ HERO ════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 38%, rgba(201, 168, 76, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 12% 88%, rgba(45, 106, 79, 0.10) 0%, transparent 60%),
    var(--black);
}

/* Rosa dos ventos grande, ao fundo à direita */
.hero__compass {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -8%;
  width: min(640px, 64vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}

.hero__compass .rose {
  width: 100%;
  height: 100%;
  animation: compass-spin 180s linear infinite;
}

.hero__compass::after {
  content: '';
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, transparent 62%);
  animation: compass-pulse 7s ease-in-out infinite;
}

/* Rota pontilhada que se desenha */
.hero__route {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

.hero__route path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-dasharray: 3 9;
  stroke-linecap: round;
  opacity: 0.35;
}

.hero__route .route-draw {
  stroke-dashoffset: 2400;
  animation: route-draw 5s var(--ease-out) 0.6s forwards;
}

@keyframes route-draw {
  to { stroke-dashoffset: 0; }
}

.hero__route circle {
  fill: var(--gold);
  opacity: 0;
  animation: route-dot 0.8s var(--ease-out) forwards;
}

.hero__route .dot-1 { animation-delay: 1.6s; }
.hero__route .dot-2 { animation-delay: 3.2s; }
.hero__route .dot-3 { animation-delay: 5s; }

@keyframes route-dot {
  from { opacity: 0; r: 0; }
  to { opacity: 0.7; r: 3.5; }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  animation: rise 1s var(--ease-out) 0.15s forwards;
}

.hero__title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 1s var(--ease-out) 0.35s forwards;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  animation: rise 1s var(--ease-out) 0.55s forwards;
}

.hero__actions {
  opacity: 0;
  animation: rise 1s var(--ease-out) 0.75s forwards;
}

.hero__micro {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 12.5px;
  letter-spacing: 1px;
  color: var(--gray);
}

.hero__micro .sep {
  color: var(--gold-dim);
}

.hero__scroll {
  position: absolute;
  z-index: 1;
  bottom: 32px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.3s forwards;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-hint 2.2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px) scale(0.96); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ════════ SEÇÕES — base ════════ */
.section {
  position: relative;
  padding: 120px 0;
}

.section__head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head .eyebrow {
  margin-bottom: 22px;
}

.section__title {
  font-size: clamp(32px, 4.6vw, 52px);
  margin-bottom: 20px;
}

.section__sub {
  font-size: 16.5px;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ════════ DOR ════════ */
.pain {
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    var(--dark);
}

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

.pain-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.005) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, background 0.45s;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.45s;
}

.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(165deg, rgba(201, 168, 76, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  margin-bottom: 28px;
}

.pain-card__icon svg {
  width: 23px;
  height: 23px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}

.pain-card__text {
  font-size: 14.5px;
  color: var(--gray-light);
  line-height: 1.75;
}

/* ════════ SOBRE ════════ */
.about {
  background: var(--ink);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.about__text p:not(.eyebrow) {
  font-size: 16.5px;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__text p:not(.eyebrow) strong {
  color: var(--cream);
  font-weight: 500;
}

.about__features {
  list-style: none;
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about__features li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.05);
}

.feature__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.feature__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.about__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.about__visual .rose {
  width: 78%;
  animation: compass-spin 240s linear infinite;
}

.about__visual::before {
  content: '';
  position: absolute;
  inset: 6%;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 50%;
}

.about__visual::after {
  content: '';
  position: absolute;
  inset: -4%;
  border: 1px dashed rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  animation: compass-spin 120s linear infinite reverse;
}

.about__coords {
  position: absolute;
  bottom: 2%;
  right: 4%;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-dim);
  text-transform: uppercase;
}

/* ════════ ORIGEM ════════ */
.origin {
  background:
    radial-gradient(ellipse 55% 50% at 85% 15%, rgba(28, 55, 40, 0.18) 0%, transparent 60%),
    var(--black);
}

.origin__story {
  max-width: 680px;
}

.origin__story p {
  font-size: 16.5px;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 20px;
}

.origin__story .pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.4;
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--gold);
  margin: 36px 0;
}

/* Linha do tempo */
.timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 80px;
}

.timeline__node {
  position: relative;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.timeline__node:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.timeline__date {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.timeline__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.timeline__center {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
}

.timeline__center .rose {
  width: 64px;
  height: 64px;
  animation: compass-spin 90s linear infinite;
}

.timeline__center::before,
.timeline__center::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}

.timeline__center::before {
  right: 100%;
}

.timeline__center::after {
  left: 100%;
  background: linear-gradient(to left, transparent, var(--gold-dim));
}

/* ════════ FUNDADORA ════════ */
.founder {
  background: var(--dark);
}

.founder__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.founder__photo {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.founder__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 65%),
    linear-gradient(170deg, var(--dark-surface) 0%, var(--dark-surface-deep) 100%);
  display: grid;
  place-items: center;
}

.founder__frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 3px;
  z-index: 2;
  pointer-events: none;
}

.founder__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder elegante até a foto oficial chegar */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.photo-placeholder .rose {
  width: 56px;
  height: 56px;
  opacity: 0.55;
}

.photo-placeholder__initials {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--gold);
  line-height: 1;
}

.photo-placeholder__note {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.founder__name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.founder__role {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.founder__text p {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.founder__creds {
  list-style: none;
  margin: 36px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder__creds li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 14.5px;
  color: var(--gray-light);
}

.founder__creds li::before {
  content: '✓';
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

.founder__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.founder__social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: border-color 0.45s, background 0.45s, transform 0.45s var(--ease-out);
}

.social-btn svg {
  width: 17px;
  height: 17px;
  fill: var(--gray-light);
  transition: fill 0.45s;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-3px);
}

.social-btn:hover svg {
  fill: var(--gold);
}

/* ════════ COMO FUNCIONA ════════ */
.how {
  background:
    radial-gradient(ellipse 50% 40% at 15% 10%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    var(--black);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how__grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--gold-dim) 0 5px, transparent 5px 13px);
  opacity: 0.45;
}

.step {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.step__num {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  transition: background 0.5s, color 0.5s, transform 0.5s var(--ease-out), box-shadow 0.5s;
}

.step:hover .step__num {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.step__title {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.step__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

.step__desc strong {
  color: var(--gold);
  font-weight: 500;
}

/* ════════ PRODUTO ════════ */
.product {
  background:
    radial-gradient(ellipse 75% 65% at 50% 110%, rgba(28, 55, 40, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
    var(--black);
}

.product__intro {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.product__deliverables {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 908px;
  margin: 0 auto 64px;
  justify-content: center;
  text-align: left;
}

.product__deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  transition: border-color 0.4s, background 0.4s;
}

.product__deliverables li:hover {
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(201, 168, 76, 0.2);
}

.del-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 1px;
}

.del-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.del-body strong {
  color: var(--cream);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
}

.del-body span {
  color: var(--gray);
  font-size: 13px;
}

@media (max-width: 920px) {
  .product__deliverables {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .product__deliverables {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 28px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 38px;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card--free:hover {
  border-color: rgba(85, 153, 116, 0.5);
}

.plan-card--full {
  border-color: rgba(201, 168, 76, 0.55);
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(201, 168, 76, 0.09) 0%, transparent 70%),
    rgba(10, 10, 10, 0.75);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.plan-card--full:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(201, 168, 76, 0.12);
}

.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.plan-card--free .plan-card__label {
  color: var(--green-300);
}

.plan-card--full .plan-card__label {
  color: var(--gold);
}

.plan-card__price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}

.plan-card__price small {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray);
}

.plan-card__tagline {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 30px;
}

.plan-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.plan-card__features li {
  display: flex;
  gap: 13px;
  align-items: baseline;
  font-size: 14.5px;
  color: var(--gray-light);
}

.plan-card__features li::before {
  content: '✓';
  font-size: 12px;
  flex-shrink: 0;
}

.plan-card--free .plan-card__features li::before {
  color: var(--green-300);
}

.plan-card--full .plan-card__features li::before {
  color: var(--gold);
}

.plan-card__features li.plus {
  color: var(--cream);
  font-weight: 500;
}

.plan-card .btn {
  width: 100%;
}

.btn--green {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: var(--green-text);
  box-shadow: 0 8px 28px rgba(46, 92, 67, 0.25);
}

.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(46, 92, 67, 0.4);
}

/* ════════ ESPECIALISTAS ════════ */
.specialists {
  background: var(--black);
}

.specialists__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.spec-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}

.spec-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.spec-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 75% 55% at 50% 32%, rgba(201, 168, 76, 0.1) 0%, transparent 65%),
    linear-gradient(170deg, var(--dark-surface) 0%, var(--dark-surface-deep) 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.spec-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.spec-card:hover .spec-card__photo img {
  transform: scale(1.04);
}

.spec-card__body {
  padding: 26px 26px 28px;
}

.spec-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}

.spec-card__tag {
  display: inline-block;
  padding: 5px 13px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.spec-card__bio {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.spec-card__social {
  display: flex;
  gap: 10px;
}

.spec-card__social .social-btn {
  width: 36px;
  height: 36px;
}

.spec-card__social .social-btn svg {
  width: 15px;
  height: 15px;
}

/* Card "Em breve" */
.spec-card--soon {
  border-style: dashed;
  border-color: rgba(201, 168, 76, 0.18);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  gap: 16px;
  min-height: 320px;
}

.spec-card--soon:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(201, 168, 76, 0.4);
}

.spec-card--soon .rose {
  width: 44px;
  height: 44px;
  opacity: 0.5;
}

.spec-card--soon .soon-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
}

.spec-card--soon .soon-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-light);
}

.spec-card--soon .soon-desc {
  font-size: 13px;
  color: var(--gray);
  max-width: 240px;
}

/* ════════ DEPOIMENTOS (oculta até o lançamento) ════════ */
.testimonials {
  display: none;
}

/* ════════ CTA FINAL ════════ */
.final-cta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 90% at 50% 115%, rgba(139, 99, 32, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    var(--ink);
}

.final-cta__rose {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(860px, 120vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  pointer-events: none;
}

.final-cta__rose .rose {
  width: 100%;
  height: 100%;
  animation: compass-spin 200s linear infinite;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.final-cta__title {
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 22px;
}

.final-cta__slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--gold);
  margin-bottom: 26px;
}

.final-cta__desc {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 44px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

/* ════════ RESPONSIVO ════════ */
@media (max-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .about__grid,
  .founder__grid {
    gap: 56px;
  }

  .how__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 56px;
  }

  .how__grid::before {
    display: none;
  }

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

@media (max-width: 820px) {
  .hero__compass {
    right: -42%;
    opacity: 0.3;
  }

  .pain__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    max-width: 380px;
    margin-inline: auto;
    order: -1;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
  }

  .timeline__node {
    width: 100%;
  }

  .timeline__center {
    margin: 8px 0;
  }

  .timeline__center::before,
  .timeline__center::after {
    width: 1px;
    height: 36px;
    left: 50%;
    background: linear-gradient(to bottom, transparent, var(--gold-dim));
  }

  .timeline__center::before {
    top: auto;
    bottom: 100%;
  }

  .timeline__center::after {
    top: 100%;
    background: linear-gradient(to top, transparent, var(--gold-dim));
  }

  .founder__grid {
    grid-template-columns: 1fr;
  }

  .founder__photo {
    position: static;
    max-width: 380px;
  }

  .plans {
    grid-template-columns: minmax(0, 460px);
  }

  .section__head {
    margin-bottom: 48px;
  }
}

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

  .step {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 20px;
    text-align: left;
    padding: 0;
  }

  .step__num {
    margin: 0;
    grid-row: span 2;
  }

  .specialists__grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 110px 0;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__micro {
    justify-content: center;
    text-align: center;
    width: 100%;
  }


  .founder__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .founder__actions .btn {
    width: 100%;
  }

  .founder__social {
    justify-content: center;
  }
}
