/* =========================================================
   TULIP CLUB — Consultoria Individual de Milhas
   Estilo: editorial feminino sofisticado
   ========================================================= */

/* ---------- Custom Properties ---------- */
:root {
  /* cores */
  --verde: #667F6A;
  --rose: #C5A097;
  --marsala: #5E3440;
  --marsala-escuro: #4A2832;
  --creme: #F5F0EA;
  --creme-escuro: #EDE8E0;
  --preto: #1A1A1A;
  --cinza: #6B6B6B;
  --branco: #FFFFFF;

  /* tipografia */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* layout */
  --header-h: 72px;
  --maxw: 1180px;
  --maxw-narrow: 760px;

  /* transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--preto);
  background: var(--creme);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* ---------- Foco visível (acessibilidade) ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--marsala);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Helpers ---------- */
.tc-container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.tc-container--narrow { max-width: var(--maxw-narrow); }

.tc-mark { width: auto; height: 24px; color: var(--rose); }

.tc-eyebrow {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.4rem;
}

.tc-section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 3rem;
}

/* ---------- Botões ---------- */
.tc-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 16px 34px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  color: var(--branco);
  z-index: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tc-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.tc-btn:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.tc-btn:hover::after { transform: scaleY(1); }

.tc-btn--marsala { background-color: #667F6A; }
.tc-btn--marsala::after { background-color: #556B5A; }

.tc-btn--verde { background: var(--verde); }
.tc-btn--verde::after { background: #556c59; }

.tc-btn--block {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  padding: 18px 24px;
}

/* ---------- Cursor personalizado ---------- */
.tc-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
  opacity: 0;
  mix-blend-mode: multiply;
}
.tc-cursor.is-active { opacity: 1; }
.tc-cursor.is-hover {
  width: 40px; height: 40px;
  background: rgba(197,160,151,0.12);
}

/* =========================================================
   HEADER
   ========================================================= */
.tc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tc-header.is-scrolled {
  background: rgba(245, 240, 234, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.tc-header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tc-header__brand { display: flex; align-items: center; gap: 10px; }
.tc-header__brand .tc-mark { width: auto; height: 28px; }
.tc-header__name { display: flex; flex-direction: column; line-height: 1.1; }
.tc-header__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--preto);
}
.tc-header__sub {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cinza);
}
.tc-header__back {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--cinza);
  transition: color 0.3s var(--ease);
}
.tc-header__back:hover { color: var(--marsala); }

/* =========================================================
   HERO
   ========================================================= */
.tc-hero {
  position: relative;
  min-height: 100vh;
  background: var(--creme);
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tc-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.tc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
}
.tc-hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  line-height: 1.08;
  margin: 0 0 1.8rem;
}
.tc-hero__headline .tc-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}
.tc-hero__sub {
  max-width: 30em;
  font-size: 1.125rem;
  color: var(--cinza);
  margin-bottom: 2.2rem;
}
.tc-hero__social {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--cinza);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.tc-hero__social .tc-sep { color: var(--rose); }

.tc-hero__media { position: relative; }
.tc-hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(94,52,64,0.18);
  will-change: transform;
}
.tc-tulipa {
  display: block;
  width: auto; height: 64px;
  margin-bottom: 1.2rem;
}
.tc-tulipa__path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.is-loaded .tc-tulipa__path {
  animation: tc-draw 0.8s var(--ease) forwards;
}
@keyframes tc-draw { to { stroke-dashoffset: 0; } }

/* scroll indicator */
.tc-scroll-indicator {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.tc-chevron {
  display: block;
  width: 14px; height: 14px;
  border-right: 1.5px solid var(--marsala);
  border-bottom: 1.5px solid var(--marsala);
  transform: rotate(45deg);
  animation: tc-pulse 0.4s ease-in-out infinite;
}
@keyframes tc-pulse {
  0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(4px,4px); opacity: 1; }
}

/* =========================================================
   SEÇÃO 2 — DOR
   ========================================================= */
.tc-dor { background-color: #667F6A; color: var(--branco); }
.tc-dor__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.tc-dor__item {
  font-weight: 300;
  font-style: italic;
  font-size: 1.125rem;
  text-align: center;
  max-width: 18em;
}
.tc-dor__sep .tc-mark { width: auto; height: 26px; color: var(--rose); }

/* =========================================================
   SEÇÃO 3 — VIAGEM
   ========================================================= */
.tc-viagem { background: var(--creme); padding: 100px 0; }
.tc-viagem__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
}
.tc-viagem__inner::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: var(--rose);
  opacity: 0.5;
}
.tc-viagem__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
.tc-viagem__body {
  font-size: 1rem;
  color: var(--preto);
  text-align: justify;
  margin-bottom: 1.2rem;
}
.tc-viagem__card {
  background: var(--verde);
  color: var(--branco);
  padding: 44px 40px;
  border-radius: 8px;
  margin-bottom: 28px;
  box-shadow: 0 20px 50px rgba(102,127,106,0.25);
}
.tc-viagem__card p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
}
.tc-viagem__card-em { margin-top: 1.2rem; font-style: normal !important; font-weight: 500; }
.tc-viagem__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

/* =========================================================
   SEÇÃO 4 — CREDIBILIDADE
   ========================================================= */
.tc-cred { background: var(--verde); color: var(--branco); }
.tc-cred__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 48px;
}
.tc-cred__item { text-align: center; }
.tc-cred__num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
}
.tc-cred__label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.tc-cred__sep .tc-mark { width: auto; height: 26px; color: var(--rose); }

/* =========================================================
   SEÇÃO 5 — RECEBER
   ========================================================= */
.tc-receber { background: var(--creme-escuro); padding: 100px 0; }
.tc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.tc-card {
  background: var(--branco);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 36px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}
.tc-card__icon {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--verde);
}
.tc-card__icon svg { width: 38px; height: 38px; }
.tc-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.tc-card__desc { font-size: 0.95rem; color: var(--cinza); }
.tc-receber__img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* =========================================================
   SEÇÃO 6 — PARA QUEM É
   ========================================================= */
.tc-quem { background: var(--branco); padding: 100px 0; }
.tc-quem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tc-quem__card {
  position: relative;
  background: var(--creme);
  border-left: 4px solid var(--rose);
  border-radius: 6px;
  padding: 36px 32px 36px 32px;
  font-size: 1.05rem;
}
.tc-quem__avatar {
  display: block;
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.tc-quem__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tc-quem__avatar:hover .tc-quem__img { transform: scale(1.05); }
.tc-quem__close {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: var(--rose);
  font-size: 1.15rem;
}

/* =========================================================
   SEÇÃO 7 — OBJEÇÃO
   ========================================================= */
.tc-objecao { background: var(--verde); color: var(--branco); padding: 100px 0; text-align: center; }
.tc-objecao__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.tc-objecao__body {
  max-width: 640px;
  margin: 0 auto 1.4rem;
  font-size: 1.125rem;
  opacity: 0.95;
}
.tc-mini-acc { max-width: 680px; margin: 3rem auto 0; text-align: left; }
.tc-mini-acc__item {
  background: rgba(0,0,0,0.14);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}
.tc-mini-acc__head {
  width: 100%;
  background: none;
  border: none;
  color: var(--branco);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}
.tc-mini-acc__plus,
.tc-acc__plus {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.tc-mini-acc__head[aria-expanded="true"] .tc-mini-acc__plus { transform: rotate(45deg); }
.tc-mini-acc__panel,
.tc-acc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.tc-mini-acc__panel p { padding: 0 22px 20px; font-family: var(--sans); font-size: 0.98rem; opacity: 0.92; }

/* =========================================================
   SEÇÃO 8 — COMO FUNCIONA
   ========================================================= */
.tc-como { background: var(--creme); padding: 100px 0; }
.tc-passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
}
.tc-passos::before {
  content: "";
  position: absolute;
  top: 48px; left: 16%; right: 16%;
  border-top: 2px dotted var(--rose);
  z-index: 0;
}
.tc-passo {
  position: relative;
  text-align: center;
  padding: 0 12px;
  z-index: 1;
}
.tc-passo__num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  color: var(--verde);
  opacity: 0.15;
  margin-bottom: -0.3em;
}
.tc-passo__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.tc-passo__desc { font-size: 0.98rem; color: var(--cinza); max-width: 22em; margin: 0 auto; }
.tc-como__img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

/* =========================================================
   SEÇÃO 10 — CTA
   ========================================================= */
.tc-cta {
  position: relative;
  background: url("cta-bg.jpg") center / cover no-repeat fixed;
  padding: 110px 24px;
  color: var(--branco);
}
.tc-cta__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(102, 127, 106, 0.88);
}
.tc-cta__content { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; text-align: center; }
.tc-cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
.tc-cta__box {
  background: var(--branco);
  color: var(--preto);
  max-width: 540px;
  margin: 0 auto;
  padding: 44px 40px;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  text-align: center;
}
.tc-cta__eyebrow { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cinza); }
.tc-cta__brand { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--marsala); margin-bottom: 1.2rem; }
.tc-cta__price { font-family: var(--serif); font-weight: 600; font-size: 3rem; line-height: 1; color: var(--marsala); }
.tc-cta__installments { font-size: 0.95rem; color: var(--cinza); margin-top: 0.3rem; }
.tc-cta__divider { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin: 28px 0; }
.tc-cta__list { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.tc-cta__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.tc-cta__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--verde);
  font-weight: 600;
}
.tc-cta__after { font-size: 0.9rem; color: var(--cinza); margin-top: 1.4rem; }
.tc-cta__badges { font-size: 0.82rem; color: var(--cinza); margin-top: 1.2rem; }
.tc-cta__limited { margin-top: 2.2rem; font-style: italic; font-size: 0.95rem; opacity: 0.9; }

/* =========================================================
   SEÇÃO 11 — FAQ
   ========================================================= */
.tc-faq { background: var(--creme); padding: 100px 0; }
.tc-acc__item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.tc-acc__head {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--preto);
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  position: relative;
}
.tc-acc__head::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width 0.4s var(--ease);
}
.tc-acc__head:hover::after { width: 100%; }
.tc-acc__head .tc-acc__plus { color: var(--rose); }
.tc-acc__head[aria-expanded="true"] .tc-acc__plus { transform: rotate(45deg); }
.tc-acc__panel p {
  padding: 0 0 24px;
  font-size: 1rem;
  color: var(--cinza);
  max-width: 60ch;
}

/* =========================================================
   FOOTER
   ========================================================= */
.tc-footer {
  position: relative;
  background-color: #3D5C42;
  color: var(--branco);
  padding: 72px 24px 48px;
  overflow: hidden;
  text-align: center;
}
.tc-footer__bg {
  position: absolute;
  right: -10px; bottom: -20px;
  width: auto; height: 300px;
  opacity: 0.08;
  pointer-events: none;
}
.tc-footer__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.tc-footer__brand { display: flex; align-items: center; justify-content: center; gap: 10px; }
.tc-footer__brand .tc-mark { width: auto; height: 26px; color: var(--rose); }
.tc-footer__name { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; letter-spacing: 0.08em; }
.tc-footer__tag { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 0.5rem; }
.tc-footer__links { margin: 1.8rem 0 1.4rem; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.tc-footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.85); transition: color 0.3s var(--ease); }
.tc-footer__links a:hover { color: var(--rose); }
.tc-footer__links span { color: rgba(255,255,255,0.45); }
.tc-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.85); }

/* =========================================================
   BOTÃO FLUTUANTE MOBILE
   ========================================================= */
.tc-floating {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: none;
  text-align: center;
  background: var(--marsala);
  color: var(--branco);
  font-weight: 600;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.tc-floating.is-visible { transform: translateY(0); }

/* =========================================================
   ANIMAÇÕES DE SCROLL (reveal / stagger)
   ========================================================= */
.tc-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tc-reveal.is-in { opacity: 1; transform: translateY(0); }

.tc-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tc-stagger.is-in > * { opacity: 1; transform: translateY(0); }

/* clip-path reveal nas imagens — visível por padrão; anima só ao entrar na tela
   (assim a imagem nunca fica invisível ocupando espaço caso o observer não dispare) */
.tc-clip.is-in { animation: tc-clip-reveal 0.3s cubic-bezier(0.77, 0, 0.175, 1) both; }
@keyframes tc-clip-reveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

/* linha rose gold que se desenha (de cima para baixo) */
.tc-line-draw::before {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.tc-line-draw.is-in::before { transform: scaleY(1); }

/* cursor piscante do typewriter (eyebrow do hero) */
.tc-tw-cursor {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 3px;
  background: var(--rose);
  vertical-align: text-bottom;
  animation: tc-blink 0.3s steps(1) infinite;
}
.tc-tw-cursor.is-gone { display: none; }
@keyframes tc-blink { 50% { opacity: 0; } }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .tc-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tc-header__sub { display: none; }
  .tc-header__back { font-size: 0.78rem; }

  .tc-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .tc-hero__media { order: -1; max-width: 420px; }
  .tc-tulipa { width: auto; height: 52px; }
  .tc-scroll-indicator { display: none; }

  .tc-viagem__inner { grid-template-columns: 1fr; gap: 40px; }
  .tc-viagem__inner::before { display: none; }
  .tc-viagem__body { text-align: left; }

  .tc-quem__cards { grid-template-columns: 1fr; }

  .tc-passos { grid-template-columns: 1fr; gap: 44px; }
  .tc-passos::before { display: none; }

  .tc-cta { background-attachment: scroll; padding: 80px 20px; }

  .tc-floating { display: block; }

  section { padding-left: 0; padding-right: 0; }
}

@media (max-width: 480px) {
  .tc-cards { grid-template-columns: 1fr; }
  .tc-viagem, .tc-receber, .tc-quem, .tc-objecao, .tc-como, .tc-faq { padding: 64px 0; }
  .tc-viagem__card { padding: 32px 26px; }
  .tc-cta__box { padding: 32px 24px; }
  .tc-dor__inner { padding: 48px 24px; }
}

/* =========================================================
   AVISO ABAIXO DO BOTÃO DE COMPRA
   ========================================================= */
.tc-compra-aviso {
  font-size: 13px;
  color: #6B6B6B;
  text-align: center;
  margin-top: 8px;
}

/* =========================================================
   PADRÃO DE TULIPAS NAS SEÇÕES MARSALA/VERDE
   ========================================================= */
.tc-dor,
.tc-objecao {
  position: relative;
  overflow: hidden;
}
.tc-dor::before,
.tc-objecao::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('tulipa-mark.png');
  background-repeat: repeat;
  background-size: 80px auto;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.tc-dor__inner,
.tc-objecao .tc-container {
  position: relative;
  z-index: 1;
}

/* =========================================================
   PREFERS-REDUCED-MOTION
   ========================================================= */
/* ============================================================
   RESPONSIVO UNIVERSAL — reforço para tablet e mobile
   ============================================================ */
@media (max-width: 1024px) {
  h1, h2 { font-size: clamp(28px, 5vw, 44px) !important; line-height: 1.2; }
}
@media (max-width: 768px) {
  h1, h2 { font-size: clamp(28px, 7vw, 36px) !important; line-height: 1.25; }
  .tc-btn { display: block; width: 100%; text-align: center; }
  .tc-container, .tc-header__inner { padding-left: 20px !important; padding-right: 20px !important; }
  .tc-cards, .tc-cards--2x2, .tc-quem__cards, .tc-quem-servico__grid,
  .tc-passos, .tc-jornada__cards, .tc-atendimento__cards { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  h1, h2 { font-size: clamp(28px, 8vw, 32px) !important; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .tc-reveal, .tc-stagger > * { opacity: 1 !important; transform: none !important; }
  .tc-hero__headline .tc-line { opacity: 1 !important; transform: none !important; }
  .tc-tulipa__path { stroke-dashoffset: 0 !important; }
  .tc-cursor { display: none !important; }
  .tc-clip { clip-path: none !important; }
  .tc-line-draw::before { transform: none !important; }
  .tc-quem__avatar:hover .tc-quem__img { transform: none !important; }
  .tc-tw-cursor { display: none !important; }
}
