@import url("colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg-canvas); font-family: var(--font-sans); color: var(--fg-1); scroll-behavior: smooth; }

a { color: inherit; }

/* ───── Top contact strip ─────────────────────────────────────────── */
.tt-topbar { background: var(--tt-yellow); }
.tt-topbar__inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 28px;
}
.tt-topbar__logo img { height: 34px; display: block; }
.tt-topbar__logo { margin-right: auto; }
.tt-topbar__contact { display: flex; gap: 10px; align-items: center; }
.tt-topbar__lbl { font-size: 12px; font-weight: 700; color: var(--tt-navy); line-height: 1; }
.tt-topbar__val { font-size: 13px; color: var(--tt-navy); margin-top: 3px; font-weight: 500; }
.tt-topbar__social { display: flex; gap: 10px; }
.tt-topbar__social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--tt-navy); display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.tt-topbar__social a:hover { transform: translateY(-2px); }

/* ───── Nav ────────────────────────────────────────────────────────── */
.tt-nav { background: var(--tt-navy); position: sticky; top: 0; z-index: 50; }
.tt-nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 28px; justify-content: center; align-items: center; height: 52px;
}
.tt-nav__link {
  color: #fff; text-decoration: none; font-size: 14px; font-weight: 500;
  height: 100%; display: inline-flex; align-items: center;
  border-bottom: 2px solid transparent; transition: all var(--dur-base) var(--ease-out);
}
.tt-nav__link:hover { color: var(--tt-yellow-400); }
.tt-nav__link.active { color: var(--tt-orange); border-bottom-color: var(--tt-orange); font-weight: 600; }

/* ───── Buttons ────────────────────────────────────────────────────── */
.tt-btn {
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; padding: 14px 24px; border-radius: var(--radius-md);
  display: inline-flex; gap: 10px; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
}
.tt-btn:active { transform: scale(.98); }
.tt-btn-primary { background: var(--tt-yellow); color: var(--tt-navy); box-shadow: var(--shadow-yellow); }
.tt-btn-primary:hover { background: var(--tt-yellow-600); transform: translateY(-1px); }
.tt-btn-secondary { background: var(--tt-navy); color: #fff; }
.tt-btn-secondary:hover { background: var(--tt-navy-700); }
.tt-btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.tt-btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.tt-btn-whatsapp { background: var(--tt-success); color: #fff; }
.tt-btn-whatsapp:hover { background: var(--tt-success-600); }
.tt-btn-lg { padding: 16px 30px; font-size: 15px; }

/* ───── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; min-height: 640px;
  background-image: url("assets/hero.jpg");
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.78) 42%, rgba(13,27,42,.45) 70%, rgba(13,27,42,.2) 100%);
}
.hero__inner {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 96px 24px 110px;
}
.hero__copy { max-width: 680px; color: #fff; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--tt-yellow); margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--tt-yellow);
}
.hero__title {
  font-size: clamp(2.1rem, 4vw, 3.25rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -.015em; margin: 0 0 18px; text-transform: none;
}
.hero__title .hi { color: var(--tt-orange); }
.hero__title .ul { display: inline; background-image: linear-gradient(transparent 75%, rgba(255,193,7,.35) 75%); }
.hero__sub {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.88); margin: 0 0 32px; max-width: 600px;
  font-weight: 400;
}
.hero__sub b { color: var(--tt-yellow); font-weight: 600; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__assure {
  margin-top: 26px; display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.78);
}
.hero__assure span { display: inline-flex; align-items: center; gap: 8px; }
.hero__assure svg { color: var(--tt-yellow); }

/* Hero proof bar */
.hero-proof {
  background: var(--tt-yellow);
  border-bottom: 1px solid rgba(13,27,42,.08);
}
.hero-proof__inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  display: grid; grid-template-columns: 1fr 2fr 1fr 1fr; gap: 28px; align-items: center;
}
.hero-proof__num { font-size: 38px; font-weight: 800; color: var(--tt-navy); line-height: 1; letter-spacing: -.02em; }
.hero-proof__lbl { font-size: 12px; color: var(--tt-navy); font-weight: 600; margin-top: 4px; line-height: 1.3; }
.hero-proof__sep { width: 1px; height: 40px; background: rgba(13,27,42,.18); justify-self: center; }
.hero-proof__copy {
  font-size: 14px; color: var(--tt-navy); font-weight: 600; line-height: 1.4;
}
.hero-proof__copy em { font-style: normal; color: var(--tt-navy); background: rgba(13,27,42,.08); padding: 2px 8px; border-radius: 4px; }

/* ───── Section base ───────────────────────────────────────────────── */
.section { padding: 100px 24px; }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section__head { margin-bottom: 56px; max-width: 880px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tt-orange); margin-bottom: 16px;
}
.section__title {
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; color: var(--tt-navy);
  margin: 0 0 18px; line-height: 1.15; letter-spacing: -.015em;
}
.section__title .hi { color: var(--tt-orange); }
.section__title .strike { text-decoration: line-through; text-decoration-color: var(--tt-orange); text-decoration-thickness: 3px; color: var(--tt-gray); }
.section__sub { font-size: 17px; color: var(--fg-2); line-height: 1.6; max-width: 720px; margin: 0; font-weight: 400; }

/* ───── Pain section ─────────────────────────────────────────────── */
.pain { background: #fff; }
.pain__layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.pain__rhetor {
  font-family: var(--font-sans); font-weight: 600; font-size: 22px; color: var(--tt-navy);
  line-height: 1.4; margin: 0 0 24px;
}
.pain__rhetor em { font-style: normal; color: var(--tt-orange); }
.pain__list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.pain__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; background: var(--tt-gray-100); border-radius: var(--radius-md);
  border-left: 3px solid var(--tt-orange);
  font-size: 15.5px; color: var(--fg-2); line-height: 1.5;
}
.pain__list li b { color: var(--tt-navy); font-weight: 600; }
.pain__icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--tt-orange-100); color: var(--tt-orange-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.pain__verdict {
  background: var(--tt-navy); color: #fff; padding: 28px;
  border-radius: var(--radius-lg); position: relative;
}
.pain__verdict__lbl {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tt-yellow); font-weight: 700; margin-bottom: 10px;
}
.pain__verdict p { margin: 0; font-size: 17px; line-height: 1.5; font-weight: 500; }
.pain__verdict p em { font-style: normal; color: var(--tt-yellow); font-weight: 700; }

/* Tourists collage */
.pain__visual {
  position: relative;
}
.pain__visual__photo {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.pain__visual__sticker {
  position: absolute; right: -12px; top: -16px;
  background: var(--tt-yellow); color: var(--tt-navy);
  padding: 14px 18px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); transform: rotate(2deg);
  max-width: 220px;
}
.pain__visual__sticker__num { font-size: 32px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.pain__visual__sticker__lbl { font-size: 12px; font-weight: 600; line-height: 1.3; margin-top: 4px; }

.pain__visual__chip {
  position: absolute; left: -16px; bottom: 24px;
  background: #fff; padding: 14px 18px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 280px;
}
.pain__visual__chip__dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--tt-success);
  box-shadow: 0 0 0 4px rgba(22,163,74,.15);
}
.pain__visual__chip__txt {
  font-size: 13px; color: var(--tt-navy); font-weight: 500; line-height: 1.4;
}
.pain__visual__chip__txt b { font-weight: 700; }

/* ───── Solution section (Dominação Local) ─────────────────────── */
.solution {
  background: var(--tt-navy);
  color: #fff;
  position: relative; overflow: hidden;
}
.solution::before {
  content: ""; position: absolute; right: -200px; top: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,138,0,.15) 0%, transparent 60%);
  pointer-events: none;
}
.solution .section__title { color: #fff; }
.solution .section__sub { color: rgba(255,255,255,.78); }

.solution__layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }

.radar {
  position: relative; aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; width: 100%;
}
.radar__rings { position: absolute; inset: 0; }
.radar__ring {
  position: absolute; border-radius: 50%; border: 1px dashed rgba(255,193,7,.28);
  inset: 0; left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.radar__ring--1 { width: 100%; height: 100%; }
.radar__ring--2 { width: 72%; height: 72%; border-style: solid; border-color: rgba(255,193,7,.18); }
.radar__ring--3 { width: 44%; height: 44%; border: 1px solid rgba(255,138,0,.5); background: radial-gradient(circle, rgba(255,138,0,.12) 0%, transparent 70%); }
.radar__center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--tt-yellow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(255,193,7,.18), 0 12px 32px rgba(255,193,7,.35);
  z-index: 3;
}
.radar__center__lbl {
  position: absolute; left: 50%; top: calc(50% + 56px); transform: translateX(-50%);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--tt-yellow); white-space: nowrap;
}
.radar__pin {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  transform: translate(-50%, -50%); z-index: 2;
}
.radar__pin--p1 { left: 30%; top: 28%; }
.radar__pin--p2 { left: 74%; top: 38%; }
.radar__pin--p3 { left: 22%; top: 70%; }
.radar__pin--p4 { left: 76%; top: 72%; }
.radar__pin--p5 { left: 50%; top: 14%; }
.radar__label {
  position: absolute; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,193,7,.85); font-weight: 700;
}
.radar__label--inner { left: 50%; top: 28%; transform: translateX(-50%); }
.radar__label--mid { left: 50%; top: 12%; transform: translateX(-50%); color: rgba(255,255,255,.5); }
.radar__label--outer { left: 50%; top: 0; transform: translateX(-50%); color: rgba(255,255,255,.35); font-size: 10px; }
.radar__pulse {
  position: absolute; left: 50%; top: 50%; width: 100%; height: 100%;
  border-radius: 50%; transform: translate(-50%, -50%);
  border: 2px solid var(--tt-yellow);
  animation: radarPulse 3s var(--ease-out) infinite;
  opacity: 0;
}
@keyframes radarPulse {
  0% { transform: translate(-50%, -50%) scale(.2); opacity: .8; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.solution__points { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.solution__point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  transition: all var(--dur-base) var(--ease-out);
}
.solution__point:hover { background: rgba(255,255,255,.06); border-color: rgba(255,193,7,.3); }
.solution__point__num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--tt-yellow); color: var(--tt-navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; letter-spacing: -.02em;
}
.solution__point h4 { margin: 0 0 4px; font-size: 16px; font-weight: 700; color: #fff; }
.solution__point p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.72); }

/* ───── Tech stack section (Como fazemos) ─────────────────────── */
.tech { background: var(--tt-gray-100); }
.tech__layout { display: grid; grid-template-columns: 0.95fr 1fr; gap: 64px; align-items: center; }
.tech__visual { position: relative; }
.tech__funnel {
  width: 100%; display: block; border-radius: var(--radius-lg);
  background: #fff; padding: 24px;
  box-shadow: var(--shadow-md);
}
.tech__funnel img { width: 100%; display: block; }
.tech__cards {
  display: flex; flex-direction: column; gap: 16px;
}
.tech__card {
  background: #fff; padding: 24px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; gap: 18px; align-items: flex-start;
  transition: all var(--dur-base) var(--ease-out);
}
.tech__card:hover { transform: translateX(4px); border-color: var(--tt-orange); box-shadow: var(--shadow-md); }
.tech__card__ic {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--tt-navy); color: var(--tt-yellow);
  display: flex; align-items: center; justify-content: center;
}
.tech__card h4 { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: var(--tt-navy); }
.tech__card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--fg-2); }
.tech__card__tag {
  display: inline-block; margin-top: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tt-orange);
}

/* ───── Services grid ─────────────────────────────────────────── */
.services { background: #fff; }
.services__grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
}
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; transition: all var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column; min-height: 240px;
}
.service-card:hover { border-color: var(--tt-orange); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card.is-feature {
  background: var(--tt-navy); color: #fff; border-color: var(--tt-navy);
  background-image: radial-gradient(circle at 90% 10%, rgba(255,193,7,.12), transparent 50%);
}
.service-card.is-feature h3 { color: #fff; }
.service-card.is-feature p { color: rgba(255,255,255,.72); }
.service-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.service-card__ic {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--tt-yellow); color: var(--tt-navy);
  display: flex; align-items: center; justify-content: center;
}
.is-feature .service-card__ic { background: var(--tt-yellow); }
.service-card__num {
  font-size: 12px; font-weight: 700; color: var(--tt-gray-500); letter-spacing: .12em;
}
.is-feature .service-card__num { color: rgba(255,255,255,.45); }
.service-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: var(--tt-navy); letter-spacing: -.005em; }
.service-card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--fg-2); flex-grow: 1; }
.service-card__cta {
  margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--tt-orange);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--dur-base) var(--ease-out);
}
.is-feature .service-card__cta { color: var(--tt-yellow); }
.service-card:hover .service-card__cta { gap: 10px; }

.services__grid .service-card:nth-child(1) { grid-column: span 5; }
.services__grid .service-card:nth-child(2) { grid-column: span 4; }
.services__grid .service-card:nth-child(3) { grid-column: span 3; }
.services__grid .service-card:nth-child(4) { grid-column: span 3; }
.services__grid .service-card:nth-child(5) { grid-column: span 5; }
.services__grid .service-card:nth-child(6) { grid-column: span 4; }

/* ───── Form ───────────────────────────────────────────────────── */
.contact {
  background: var(--tt-navy);
  color: #fff;
  position: relative; overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; left: -120px; bottom: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,193,7,.18) 0%, transparent 60%);
  pointer-events: none;
}
.contact__layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
  position: relative;
}
.contact__copy { color: #fff; }
.contact__copy .eyebrow { color: var(--tt-yellow); }
.contact__copy h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; color: #fff; margin: 0 0 18px; line-height: 1.15; letter-spacing: -.015em; }
.contact__copy h2 em { font-style: normal; color: var(--tt-yellow); }
.contact__copy p { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.6; margin: 0 0 28px; }
.contact__perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.contact__perks li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255,255,255,.85); }
.contact__perks svg { color: var(--tt-yellow); flex-shrink: 0; }

.form-card {
  background: #fff; color: var(--tt-navy);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-xl);
}
.form-card h3 { margin: 0 0 6px; font-size: 22px; font-weight: 700; color: var(--tt-navy); letter-spacing: -.005em; }
.form-card__sub { font-size: 14px; color: var(--fg-3); margin: 0 0 24px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row--full { grid-template-columns: 1fr; }
.field label {
  display: block; font-size: 12.5px; font-weight: 600; color: var(--tt-navy);
  margin-bottom: 6px; letter-spacing: .01em;
}
.field input, .field select {
  width: 100%; padding: 13px 14px; font-size: 14.5px; font-family: var(--font-sans);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; color: var(--tt-navy);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--tt-orange);
  box-shadow: 0 0 0 3px rgba(255,138,0,.15);
}
.field.has-error input, .field.has-error select { border-color: var(--tt-danger); }
.field__err { font-size: 12px; color: var(--tt-danger); margin-top: 4px; display: none; }
.field.has-error .field__err { display: block; }
.field__hint { font-size: 12px; color: var(--fg-3); margin-top: 4px; }

.form-card__submit { margin-top: 8px; width: 100%; }
.form-card__legal { font-size: 12px; color: var(--fg-3); margin-top: 14px; text-align: center; line-height: 1.5; }

.form-success {
  text-align: center; padding: 24px 0;
}
.form-success__ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(22,163,74,.12); color: var(--tt-success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--tt-navy); margin: 0 0 8px; }
.form-success p { font-size: 15px; color: var(--fg-2); line-height: 1.5; margin: 0; }

/* ───── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--tt-gray-100); }
.faq__list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: all var(--dur-base) var(--ease-out);
}
.faq__item.is-open { border-color: var(--tt-orange); box-shadow: var(--shadow-md); }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-family: var(--font-sans); font-size: 16px; font-weight: 600;
  color: var(--tt-navy); display: flex; justify-content: space-between; align-items: center;
  gap: 24px; text-align: left; line-height: 1.4;
}
.faq__q__ic {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--tt-gray-100); color: var(--tt-navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-out);
}
.faq__item.is-open .faq__q__ic { background: var(--tt-orange); color: #fff; transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-in-out);
}
.faq__a__inner { padding: 0 24px 22px; font-size: 15px; line-height: 1.6; color: var(--fg-2); }
.faq__a__inner b { color: var(--tt-navy); font-weight: 600; }

/* ───── Footer ─────────────────────────────────────────────────── */
.tt-footer { background: var(--tt-navy-900); color: #fff; padding: 56px 0 0; }
.tt-footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 28px; align-items: center;
}
.tt-footer__quote { display: flex; flex-direction: column; gap: 8px; }
.tt-footer__eyebrow { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--tt-yellow); font-weight: 700; }
.tt-footer__quote p { font-family: var(--font-sans); font-weight: 600; font-size: 17px; line-height: 1.4; margin: 0; letter-spacing: -.005em; }
.tt-footer__quote p em { color: var(--tt-yellow); font-style: normal; }
.tt-footer__col { display: flex; gap: 12px; align-items: center; }
.tt-footer__ic { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tt-footer__lbl { font-size: 13px; font-weight: 600; }
.tt-footer__val { font-size: 13px; color: rgba(255,255,255,.72); }
.tt-footer__legal { text-align: center; font-size: 12px; color: rgba(255,255,255,.45); padding: 28px 24px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }

/* ───── FAB WhatsApp ──────────────────────────────────────────── */
.tt-fab {
  position: fixed; right: 24px; bottom: 24px; width: 58px; height: 58px;
  border-radius: 50%; background: var(--tt-success); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(22,163,74,.4); cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out);
  z-index: 40; text-decoration: none;
}
.tt-fab:hover { transform: scale(1.08); }
.tt-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--tt-success); opacity: .5;
  animation: fabPulse 2s var(--ease-out) infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ───── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .tt-topbar__inner { flex-wrap: wrap; gap: 14px; }
  .tt-nav__inner { gap: 16px; flex-wrap: wrap; height: auto; padding: 12px 24px; }
  .hero { min-height: 560px; }
  .hero__inner { padding: 70px 24px 80px; }
  .hero-proof__inner { grid-template-columns: 1fr 1fr; }
  .hero-proof__sep { display: none; }
  .pain__layout, .solution__layout, .tech__layout, .contact__layout { grid-template-columns: 1fr; gap: 48px; }
  .services__grid .service-card { grid-column: span 12 !important; }
  .tt-footer__inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 24px; }
}
@media (max-width: 600px) {
  .tt-topbar__contact { font-size: 12px; }
  .tt-footer__inner { grid-template-columns: 1fr; }
  .hero-proof__inner { grid-template-columns: 1fr; gap: 14px; text-align: center; }
}
