/* =========================================================
   TULIP CLUB — Gestão de Milhas
   Estilo: sóbrio, direto, premium — azul petróleo + creme + rose gold
   ========================================================= */

/* ---------- Custom Properties ---------- */
:root {
  /* cores */
  --teal: #2C6E7A;
  --teal-escuro: #1E4E57;
  --rose: #C5A097;
  /* rosé mais profundo: texto rose gold sobre fundos claros (WCAG AA) */
  --rose-texto: #A35C56;
  --marsala: #5E3440;
  --creme: #F5F0EA;
  --creme-escuro: #EDE8E0;
  --preto: #1A1A1A;
  --cinza: #4A4A4A;
  --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%;
  font-size: 106.25%; /* base de 17px para o corpo de texto */
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--preto);
  background: var(--creme);
  line-height: 1.7;
  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(--teal);
  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; }

.tc-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  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.3s 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--teal { background: var(--teal); }
.tc-btn--teal::after { background: var(--teal-escuro); }

.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(--teal); }

/* =========================================================
   SEÇÃO 1 — 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__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__brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
.tc-tulipa {
  display: block;
  width: auto; height: 56px;
}
.tc-hero__servico {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--teal);
  text-transform: uppercase;
  line-height: 1.1;
}
.tc-hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.8rem;
}
.tc-hero__headline .tc-line { display: block; }
.tc-hero__sub {
  max-width: 34em;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--cinza);
  margin-bottom: 2.2rem;
}
.tc-hero__social {
  margin-top: 2rem;
  font-size: 13px;
  font-weight: 300;
  color: var(--cinza);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.tc-hero__social .tc-sep { color: var(--rose); }

.tc-hero__media { position: relative; }
.tc-hero__img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(30,78,87,0.20);
}

/* 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(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(45deg);
  animation: tc-pulse 1.6s 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 — FAIXA DE NÚMEROS
   ========================================================= */
.tc-faixa-dor { background: var(--teal); color: var(--branco); }
.tc-faixa-dor__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-faixa-dor__item { text-align: center; }
.tc-faixa-dor__num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
}
.tc-faixa-dor__label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.tc-faixa-dor__sep .tc-mark { width: auto; height: 26px; filter: brightness(0) invert(1); opacity: 0.8; }

/* =========================================================
   SEÇÃO 3 — PARA QUEM É ESTE SERVIÇO
   ========================================================= */
.tc-quem-servico { background: var(--creme); padding: 100px 0; }
.tc-quem-servico__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.tc-quem-servico__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;
}
.tc-quem-servico__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.tc-quem-servico__left p {
  font-size: 1.0625rem;
  color: var(--preto);
  margin-bottom: 1.3rem;
}
.tc-quem-servico__close {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--teal);
  margin-top: 0.4rem !important;
}
.tc-quem-servico__card {
  background: var(--teal);
  color: var(--branco);
  padding: 44px;
  border-radius: 12px;
  margin-bottom: 28px;
  box-shadow: 0 20px 50px rgba(30,78,87,0.22);
}
.tc-quem-servico__card p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
}
.tc-quem-servico__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}

/* =========================================================
   SEÇÃO 3B — O QUE UM GESTOR FAZ POR VOCÊ
   ========================================================= */
.tc-gestor { background: var(--branco); padding: 100px 0; }
.tc-gestor__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;
}
/* títulos de card desta seção em peso 500 (Cormorant) */
.tc-gestor .tc-card__title { font-weight: 500; }
/* descrição em Raleway 300 */
.tc-gestor .tc-card__desc { font-weight: 300; }

/* =========================================================
   SEÇÃO 4 — O QUE ESTÁ INCLUÍDO
   ========================================================= */
.tc-incluido { background: var(--creme-escuro); padding: 100px 0; }
.tc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tc-cards--2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.tc-card {
  background: var(--branco);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 40px 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s 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(--teal);
}
.tc-card__icon svg { width: 40px; height: 40px; }
.tc-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.tc-card__desc { font-size: 1rem; color: var(--cinza); }

/* =========================================================
   SEÇÃO 5 — O RESULTADO
   ========================================================= */
.tc-resultado { background: var(--branco); padding: 100px 0; }
.tc-resultado__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tc-resultado__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(30,78,87,0.16);
}
.tc-resultado__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.6rem;
}
.tc-resultado__text p {
  font-size: 1.0625rem;
  color: var(--cinza);
  margin-bottom: 1.3rem;
}
.tc-resultado__close {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--teal) !important;
}

/* =========================================================
   SEÇÃO 6 — COMO COMEÇAMOS
   ========================================================= */
.tc-como { background: var(--creme); padding: 100px 0; }
.tc-passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.tc-passos::before {
  content: "";
  position: absolute;
  top: 48px; left: 16%; right: 16%;
  border-top: 2px dotted var(--teal);
  opacity: 0.5;
  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(--teal);
  opacity: 0.18;
  margin-bottom: -0.3em;
}
.tc-passo__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.tc-passo__desc { font-size: 1rem; color: var(--cinza); max-width: 22em; margin: 0 auto; }

/* =========================================================
   SEÇÃO 7 — CTA
   ========================================================= */
.tc-cta {
  position: relative;
  background: url("cta-bg.jpeg") center / cover no-repeat fixed;
  padding: 110px 24px;
  color: var(--branco);
}
.tc-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 110, 122, 0.85);
}
.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: 560px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  text-align: center;
}
.tc-cta__eyebrow { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--teal); }
.tc-cta__brand { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cinza); margin-bottom: 1.6rem; }
.tc-cta__value {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--preto);
  margin-bottom: 1.8rem;
}
.tc-cta__start { font-size: 0.95rem; color: var(--teal); font-weight: 500; margin-top: 1.4rem; }
.tc-cta__divider { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin: 28px 0; }
.tc-cta__badges { font-size: 0.85rem; color: var(--cinza); margin-bottom: 0.4rem; }
.tc-cta__limited { margin-top: 2.2rem; font-style: italic; font-size: 0.95rem; opacity: 0.92; }

/* =========================================================
   SEÇÃO 8 — 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.1rem; /* ~18.7px */
  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(--teal);
  transition: width 0.4s var(--ease);
}
.tc-acc__head:hover::after { width: 100%; }
.tc-acc__plus {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s var(--ease);
}
.tc-acc__head[aria-expanded="true"] .tc-acc__plus { transform: rotate(45deg); }
.tc-acc__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.tc-acc__panel p {
  padding: 0 0 24px;
  font-size: 1rem;
  color: var(--cinza);
  max-width: 64ch;
}

/* =========================================================
   FOOTER
   ========================================================= */
.tc-footer {
  position: relative;
  background-color: #1E4E57;
  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; }
.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(--teal);
  color: var(--branco);
  font-weight: 600;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.tc-floating.is-visible { transform: translateY(0); }

/* =========================================================
   TULIPAS DECORATIVAS (textura repetida nas seções coloridas)
   ========================================================= */
.tc-faixa-dor, .tc-cta { position: relative; overflow: hidden; }
.tc-faixa-dor::before,
.tc-cta::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;
}
/* conteúdo sempre acima da textura */
.tc-faixa-dor__inner { position: relative; z-index: 1; }
.tc-cta__content { z-index: 1; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1280px) {
  .tc-container, .tc-header__inner, .tc-hero__inner,
  .tc-quem-servico__inner, .tc-resultado__grid { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 1024px) {
  .tc-hero__servico { font-size: 24px; letter-spacing: 0.2em; }
}

@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: 480px; margin: 0 auto; }
  .tc-hero__img { margin: 0 auto; }
  .tc-tulipa { height: 48px; }
  .tc-scroll-indicator { display: none; }

  .tc-quem-servico__grid { grid-template-columns: 1fr; gap: 40px; }
  .tc-quem-servico__title br,
  .tc-gestor__title br { display: none; }

  .tc-resultado__grid { grid-template-columns: 1fr; gap: 36px; }
  .tc-resultado__media { order: -1; max-width: 480px; margin: 0 auto; }

  .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; }
}

@media (max-width: 480px) {
  .tc-cards--2x2 { grid-template-columns: 1fr; }
  .tc-quem-servico, .tc-gestor, .tc-incluido, .tc-resultado, .tc-como, .tc-faq { padding: 64px 0; }
  .tc-quem-servico__card { padding: 32px 28px; }
  .tc-quem-servico__card p { font-size: 1.3rem; }
  .tc-cta__box { padding: 36px 24px; }
  .tc-faixa-dor__inner { padding: 56px 24px; gap: 24px 32px; }
  .tc-card { padding: 32px 28px; }
}

/* =========================================================
   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-cursor { display: none !important; }
}
