/* =========================================================
   TULIP CLUB — Página principal (redesign)
   Inspiração: tulipclubtravel.com — foto em largura total,
   texto sobre bloco semitransparente, tipografia editorial.
   ========================================================= */

/* ---------- Custom Properties ---------- */
:root {
  --verde: #667F6A;
  --verde-escuro: #556B5A;
  --rose: #C5A097;
  --rose-texto: #A35C56; /* rosé profundo p/ texto que exige contraste AA */
  --marsala: #5E3440;
  --marsala-escuro: #4A2832;
  --verde-footer: #3D5C42;
  --creme: #F5F0EA;
  --creme-escuro: #EDE8E0;
  --preto: #1A1A1A;
  --cinza: #4A4A4A;
  --branco: #FFFFFF;

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

  --header-h: 72px;
  --maxw: 1180px;

  --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 ~17px */
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--cinza);
  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; }

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-mark { width: auto; height: 24px; }

.tc-section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 2.75rem);
  line-height: 1.2;
  text-align: center;
  color: var(--marsala);
  margin-bottom: 3rem;
}
/* variação em peso 400 (produtos e atendimento) */
.tc-section-title--light { font-weight: 400; color: var(--marsala); }

/* ---------- Scroll reveal ---------- */
.tc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.tc-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 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 32px;
  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--marsala { background: var(--marsala); }
.tc-btn--marsala::after { background: var(--marsala-escuro); }
.tc-btn--verde { background: var(--verde); }
.tc-btn--verde::after { background: var(--verde-escuro); }
.tc-btn--rose { background: var(--rose); color: var(--marsala-escuro); }
.tc-btn--rose::after { background: #B58C82; }

.tc-btn--block {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 16px 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 — fundo creme fixo sempre
   ========================================================= */
.tc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(245, 240, 234, 0.97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.35s var(--ease);
}
.tc-header.is-scrolled { 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: 12px; }
.tc-header__brand .tc-mark { width: auto; height: 28px; }
.tc-header__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--marsala);
}
.tc-header__divider {
  width: 1px;
  height: 16px;
  background: var(--rose);
  flex-shrink: 0;
}
.tc-header__desc {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  color: var(--rose-texto);
}
.tc-header__pilares {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1;
  color: var(--cinza);
}
.tc-header__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--marsala);
  transition: color 0.3s var(--ease);
}
.tc-header__cta:hover { color: var(--verde); }

/* =========================================================
   SEÇÃO 1 — HERO
   ========================================================= */
.tc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: url("hero-bg.jpeg") center / cover no-repeat;
}
.tc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}
.tc-hero__block {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 0 80px 80px;
  padding: 48px;
  background: rgba(245, 240, 234, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.tc-hero__eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-texto);
  margin-bottom: 1.2rem;
}
.tc-hero__headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.08;
  color: var(--marsala);
  margin: 0 0 1.5rem;
}
.tc-hero__hl-a { display: block; }
.tc-hero__hl-b {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--rose-texto);
}
.tc-hero__sub {
  max-width: 480px;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--cinza);
  margin-bottom: 2rem;
}
.tc-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
}
.tc-hero__link {
  display: inline-block;
  background-color: var(--verde);
  color: var(--branco);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;      /* mesmo tamanho do botão marsala (.tc-btn) */
  letter-spacing: 0.03em;
  padding: 16px 32px;      /* mesmo padding do botão marsala */
  border: none;
  border-radius: 4px;      /* mesmo border-radius do botão marsala */
  cursor: pointer;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tc-hero__link:hover {
  background-color: var(--verde-escuro); /* #556B5A */
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}
.tc-hero__social {
  margin-top: 1.8rem;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--rose-texto);
}

/* =========================================================
   SEÇÃO 2 — FAIXA MARSALA
   ========================================================= */
.tc-faixa {
  position: relative;
  overflow: hidden;
  background: var(--marsala);
  color: var(--branco);
}
.tc-faixa::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('tulipa-mark.png');
  background-repeat: repeat;
  background-size: 80px auto;
  opacity: 0.08;
  pointer-events: none;
}
.tc-faixa__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
}
.tc-faixa__item { text-align: center; }
.tc-faixa__num {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
}
.tc-faixa__label {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.tc-faixa__sep { width: auto; height: 30px; opacity: 0.7; filter: brightness(0) invert(1); }

/* =========================================================
   SEÇÃO 3 — IDENTIDADE
   ========================================================= */
.tc-identidade { background: var(--creme); padding: 100px 0; }
.tc-identidade__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tc-identidade__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--marsala);
  margin-bottom: 1.6rem;
}
.tc-identidade__title em { font-style: italic; font-weight: 500; }
.tc-identidade__body {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--cinza);
  margin-bottom: 2rem;
}
.tc-identidade__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(94,52,64,0.20);
}
.tc-pilares {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.tc-pilares__item {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--rose-texto);
}
.tc-pilares__mark { width: auto; height: 18px; opacity: 0.7; }

/* =========================================================
   SEÇÃO 4 — COMUNIDADE
   ========================================================= */
.tc-comunidade { background: var(--creme-escuro); padding: 100px 0; }
.tc-comunidade__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tc-comunidade__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(94,52,64,0.16);
}
.tc-comunidade__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--marsala);
  margin-bottom: 1.6rem;
}
.tc-comunidade__text p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cinza);
  margin-bottom: 1.3rem;
}
.tc-comunidade__text p:last-child { margin-bottom: 0; }

/* =========================================================
   SEÇÃO 5 — PRODUTOS (cartões com borda superior)
   ========================================================= */
.tc-jornada { background: var(--branco); padding: 100px 0 0; }
.tc-jornada__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.tc-produto {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  border-top: 4px solid var(--cinza);
  border-radius: 8px;
  padding: 40px 34px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tc-produto:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(197,160,151,0.30); }
.tc-produto--verde { border-top-color: var(--verde); }
.tc-produto--rose { border-top-color: var(--rose); }
.tc-produto--marsala { border-top-color: var(--marsala); }
.tc-produto__kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 0.6rem;
}
.tc-produto--rose .tc-produto__kicker { color: var(--rose-texto); }
.tc-produto--marsala .tc-produto__kicker { color: var(--marsala); }
.tc-produto__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--marsala);
  margin-bottom: 0.8rem;
}
.tc-produto__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--cinza);
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.tc-produto__badge {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--marsala);
  border: 1px solid var(--marsala);
  border-radius: 999px;
  padding: 8px 20px;
}
.tc-jornada__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   SEÇÃO 6 — ATENDIMENTO EXCLUSIVO
   ========================================================= */
.tc-atendimento { background: var(--creme-escuro); padding: 100px 0; }
.tc-atendimento__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tc-atend-card {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  border-top: 4px solid var(--cinza);
  border-radius: 8px;
  padding: 40px 34px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tc-atend-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(197,160,151,0.30); }
.tc-atend-card--marsala { border-top-color: var(--marsala); }
.tc-atend-card--verde { border-top-color: var(--verde); }
.tc-atend-card--rose { border-top-color: var(--rose); }
.tc-atend-card__kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--marsala);
  margin-bottom: 0.6rem;
}
.tc-atend-card--verde .tc-atend-card__kicker { color: var(--verde); }
.tc-atend-card--rose .tc-atend-card__kicker { color: var(--rose-texto); }
.tc-atend-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--marsala);
  margin-bottom: 0.8rem;
}
.tc-atend-card__desc {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--cinza);
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* =========================================================
   SEÇÃO 7 — CTA FINAL
   ========================================================= */
.tc-cta {
  position: relative;
  overflow: hidden;
  background: url("cta-bg.jpeg") center / cover no-repeat fixed;
  padding: 120px 24px;
  color: var(--branco);
}
.tc-cta__overlay { position: absolute; inset: 0; background: rgba(94, 52, 64, 0.80); }
.tc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('tulipa-mark.png');
  background-repeat: repeat;
  background-size: 80px auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}
.tc-cta__content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; text-align: center; }
.tc-cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1.12;
  margin-bottom: 1.6rem;
}
.tc-cta__text {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  margin-bottom: 2.4rem;
}
.tc-cta__btn { max-width: 440px; margin: 0 auto; font-size: 1.05rem; padding: 18px 24px; }
.tc-cta__link {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.tc-cta__link:hover { color: var(--branco); border-bottom-color: rgba(255,255,255,0.7); }

/* =========================================================
   SEÇÃO 8 — SOBRE A LILIAN
   ========================================================= */
.tc-sobre { background: var(--creme); padding: 100px 0; }
.tc-sobre__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.tc-sobre__img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(94,52,64,0.20);
}
.tc-sobre__eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-texto);
  margin-bottom: 1rem;
}
.tc-sobre__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--marsala);
  margin-bottom: 1.4rem;
}
.tc-sobre__text p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cinza);
  margin-bottom: 1.3rem;
}
.tc-sobre__text p:last-child { margin-bottom: 0; }

/* =========================================================
   FOOTER — verde escuro
   ========================================================= */
.tc-footer {
  position: relative;
  background-color: var(--verde-footer);
  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__produtos {
  margin: 2rem 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.tc-footer__produtos a { color: rgba(255,255,255,0.85); transition: color 0.3s var(--ease); }
.tc-footer__produtos a:hover { color: var(--rose); }
.tc-footer__produtos span { color: rgba(255,255,255,0.45); }
.tc-footer__agencia { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; }
.tc-footer__agencia a { color: inherit; transition: color 0.3s var(--ease); }
.tc-footer__agencia a:hover { color: var(--rose); }
.tc-footer__links { margin: 0 0 1.6rem; 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__aviso {
  max-width: 620px;
  margin: 0 auto 1.6rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.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); }

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

@media (max-width: 1024px) {
  .tc-jornada__cards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .tc-atendimento__cards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .tc-header__pilares { display: none; }
  .tc-hero__headline { font-size: 46px; }
}

@media (max-width: 768px) {
  .tc-header__divider, .tc-header__desc { display: none; }
  .tc-header__cta { font-size: 0.8rem; }

  .tc-hero__block { margin: 0 16px 32px; padding: 32px 26px; max-width: none; }
  .tc-hero__headline { font-size: 32px; }
  .tc-hero__sub { max-width: none; }

  .tc-identidade__grid { grid-template-columns: 1fr; gap: 40px; }
  .tc-identidade__media { order: -1; max-width: 460px; margin: 0 auto; }

  .tc-comunidade__grid { grid-template-columns: 1fr; gap: 36px; }
  .tc-comunidade__media { order: -1; max-width: 480px; margin: 0 auto; }
  .tc-comunidade__title br { display: none; }

  .tc-sobre__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .tc-sobre__media { max-width: 420px; margin: 0 auto; }
  .tc-sobre__img { margin: 0 auto; }

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

  .tc-floating { display: block; }
}

@media (max-width: 480px) {
  .tc-identidade, .tc-comunidade, .tc-atendimento { padding: 64px 0; }
  .tc-jornada { padding-top: 64px; }
  .tc-jornada__cards { margin-bottom: 56px; }
  .tc-jornada__img { height: 260px; }
  .tc-produto, .tc-atend-card { padding: 32px 28px; }
  .tc-hero__headline { font-size: 30px; }
  .tc-faixa__inner { padding: 48px 24px; gap: 20px 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; }
  .tc-reveal { opacity: 1 !important; transform: none !important; }
}
