/* TSL (pagina do encapsulado) - reusa a paleta bege/oliva/terracota do
   hub (style.css) + tokens extras pra secoes escuras alternadas. Mesma
   identidade visual em todos os nichos - so copy e imagens mudam.
   Fonte de destaque (Anton) diferente da fonte editorial do resto do
   hub (Fraunces), de proposito - pagina de oferta pede um tom mais
   direto/impactante do que um post de receita. */

:root {
  /* "dark" sections viraram bege mais escuro (nao mais marrom escuro),
     entao o texto delas passa a ser escuro tambem (nao branco). --gold
     virou verde (substitui o marrom/dourado que tinha antes). Nomes das
     variaveis ficaram os mesmos por simplicidade, so os valores mudaram. */
  --dark-bg: #e3dccd;
  --dark-bg-2: #d9c194;
  --on-dark: var(--text);
  --on-dark-muted: #5c5347;
  --gold: #4a5f34;
}

.tsl-page { max-width: none; margin: 0; padding: 0; }
.tsl-section { padding: 52px 20px; }
.tsl-inner { max-width: 720px; margin: 0 auto; }
.tsl-dark { background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%); }
.tsl-wash { background: var(--bg); }
.tsl-white { background: var(--bg-card); }

.tsl-page h1, .tsl-page h2, .tsl-page h3,
.tsl-h2, .tsl-offer-title, .tsl-hero2 h1 {
  font-family: 'Anton', 'Fraunces', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tsl-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.tsl-dark .tsl-eyebrow { color: var(--gold); }

.tsl-h2 {
  text-align: center;
  font-size: clamp(1.7rem, 6.5vw, 2.6rem);
  line-height: 1.05;
  margin: 0 0 22px;
}
.tsl-dark .tsl-h2 { color: var(--on-dark); }
.tsl-h2 .accent { color: var(--cta-bg); }
.tsl-dark .tsl-h2 .accent { color: var(--gold); }

.tsl-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.tsl-dark .tsl-desc { color: var(--on-dark-muted); }

/* SCROLL REVEAL (igual ao modelo) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0, 0); }

/* NAV */
.tsl-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.tsl-nav-logo { font-family: 'Anton', sans-serif; font-size: 1.15rem; letter-spacing: 1px; color: var(--on-dark); text-decoration: none; }
.tsl-nav-logo span { color: var(--gold); }
.tsl-nav-menu { position: relative; }
.tsl-nav-burger {
  display: flex; align-items: center; gap: 9px;
  background: none; border: 1px solid rgba(0,0,0,0.25); border-radius: 8px;
  padding: 8px 12px; cursor: pointer;
}
.tsl-nav-burger-label {
  font-size: 0.78rem; font-weight: 700; color: var(--on-dark);
  text-transform: uppercase; letter-spacing: 0.4px; white-space: nowrap;
}
.tsl-nav-burger-icon { display: flex; flex-direction: column; justify-content: center; gap: 4px; flex-shrink: 0; }
.tsl-nav-burger-icon span { display: block; width: 16px; height: 2px; background: var(--on-dark); }
@media (max-width: 380px) {
  .tsl-nav-burger-label { display: none; }
  .tsl-nav-burger { padding: 8px 10px; }
}
.tsl-nav-dropdown {
  position: absolute; top: 46px; right: 0; min-width: 200px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18); overflow: hidden; z-index: 200;
  transform: translateX(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
}
.tsl-nav-dropdown.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s;
}
.tsl-nav-dropdown a {
  display: block; padding: 12px 16px; font-size: 0.88rem; font-weight: 600;
  color: var(--text); text-decoration: none; border-top: 1px solid var(--border);
}
.tsl-nav-dropdown a:first-child { border-top: none; }

/* HERO (imagem primeiro, badge, nome do produto, subhead, 2 CTAs) */
.tsl-hero2 { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 34px 20px 24px; }
.tsl-hero-product {
  display: block; width: 200px; margin: 0 auto 18px;
  animation: bottle-float 3.2s ease-in-out infinite;
}

@keyframes bottle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.tsl-hero-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent-dark); border: 1px solid var(--accent-dark);
  border-radius: 20px; padding: 5px 16px; margin-bottom: 12px;
}
.tsl-hero2 h1 { font-size: clamp(2.4rem, 11vw, 4rem); line-height: 0.98; max-width: 640px; margin: 0 auto; color: var(--text); }
.tsl-hero2 .sub { font-family: 'Anton', sans-serif; text-transform: none; letter-spacing: 0.2px; font-size: clamp(1.1rem, 3.2vw, 1.4rem); color: var(--text-muted); max-width: 500px; margin: 12px auto 8px; line-height: 1.35; }
.tsl-hero-cta {
  display: inline-block; background: var(--cta-bg); color: #fff !important; text-decoration: none;
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 0.5px;
  font-size: 1rem; padding: 15px 28px; border-radius: 8px;
}
.tsl-hero-cta:hover { background: var(--cta-bg-hover); }
.tsl-hero-note { margin-top: 6px; font-size: 0.78rem; color: var(--text-muted); }
.tsl-trust-badges { max-width: 320px; width: 80%; margin: 16px auto 0; opacity: 0.92; }

/* RECIPE HOOK (centralizado, Q&A + cards de angulo) */
.recipe-hook {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.recipe-hook-q { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; color: var(--text-muted); margin: 0 0 10px; }
.recipe-hook-a { font-size: 1rem; color: var(--text); line-height: 1.6; margin: 0 0 18px; }
.recipe-hook-a strong { color: var(--accent-dark); }
.recipe-angle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; text-align: left; }
@media (max-width: 480px) { .recipe-angle-grid { grid-template-columns: 1fr; } }
.recipe-angle-card { background: var(--bg); border-radius: 10px; padding: 12px 14px; }
.recipe-angle-card h4 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.85rem; margin: 0 0 3px; color: var(--accent-dark); text-transform: none; letter-spacing: 0; }
.recipe-angle-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.45; }

/* PAIN STATS */
.tsl-pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
@media (max-width: 560px) { .tsl-pain-grid { grid-template-columns: 1fr; } }
.tsl-pc { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 20px; }
.tsl-pc-num { font-family: 'Anton', sans-serif; font-size: 2.2rem; color: var(--cta-bg); line-height: 1; }
.tsl-pc-label { font-weight: 800; font-size: 0.95rem; margin: 6px 0 6px; }
.tsl-pc p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* SCALE CARD (foto + estatistica, logo apos You're Not Alone) */
.tsl-scale-card { margin-top: 30px; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 30px rgba(58,51,40,0.16); }
.tsl-scale-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.tsl-scale-box { background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%); padding: 26px 24px; }
.tsl-scale-box p { color: var(--on-dark-muted); font-size: 0.95rem; line-height: 1.65; text-align: center; }
.tsl-scale-box strong { color: var(--on-dark); }
.tsl-scale-fine { font-size: 0.68rem; color: #a89777; margin-top: 12px; text-align: center; }

/* FORMULA IMAGE */
.tsl-formula-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px; align-items: center; margin-top: 24px; }
@media (max-width: 700px) { .tsl-formula-wrap { grid-template-columns: 1fr; } }
.tsl-formula-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; }
.tsl-formula-wrap p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* BENEFIT BADGE ROW (reutilizavel entre nichos) */
.tsl-badge-row { display: flex; flex-direction: column; gap: 16px; margin: 30px auto 0; max-width: 340px; }
@media (min-width: 700px) { .tsl-badge-row { flex-direction: row; justify-content: center; gap: 30px; max-width: 900px; } }
.tsl-badge-item { display: flex; align-items: center; gap: 14px; }
@media (min-width: 700px) { .tsl-badge-item { flex-direction: column; text-align: center; gap: 12px; max-width: 160px; } }
.tsl-badge-circle { width: 58px; height: 58px; border-radius: 50%; background: var(--bg-card); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tsl-badge-circle img { width: 30px; height: 30px; object-fit: contain; }
.tsl-badge-item p { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .2px; margin: 0; }

/* INSPIRE CARD (foto + citacao "sucesso") */
.tsl-inspire-card { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 30px rgba(58,51,40,0.16); }
@media (max-width: 620px) { .tsl-inspire-card { grid-template-columns: 1fr; } }
.tsl-inspire-img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.tsl-inspire-text { background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%); display: flex; align-items: center; padding: 26px 24px; }
.tsl-inspire-text p { color: var(--on-dark); font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; line-height: 1.5; margin: 0; }

/* INGREDIENT PHOTO ROWS */
.tsl-ingredient-photos { margin-top: 26px; display: flex; flex-direction: column; gap: 20px; }
.tsl-ing-row { display: flex; flex-direction: column; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 26px rgba(58,51,40,0.12); background: var(--bg-card); }
.tsl-ing-row img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.tsl-ing-body { padding: 16px 18px 20px; }
.tsl-ing-name { font-weight: 800; font-size: 1.05rem; margin-bottom: 5px; }
.tsl-ing-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (min-width: 700px) {
  .tsl-ingredient-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* SUPPLEMENT FACTS (rotulo inteiro + recorte do "SF", sem zoom) */
.tsl-sf-row { display: flex; flex-direction: column; gap: 16px; align-items: center; margin-top: 20px; }
@media (min-width: 620px) { .tsl-sf-row { flex-direction: row; justify-content: center; align-items: flex-start; } }
.tsl-label-img { max-width: 400px; width: 100%; border-radius: 10px; border: 1px solid var(--border); }
.tsl-sf-crop-img { max-width: 260px; width: 100%; border-radius: 10px; border: 1px solid var(--border); }

/* RECIPE-CARD STYLE INGREDIENT ROWS */
.tsl-recipe-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-top: 28px; }
.tsl-recipe-card-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.tsl-ingredient-list { list-style: none; margin: 0 0 18px; padding: 0; }
.tsl-ingredient-list li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid var(--border); font-size: 0.92rem; }
.tsl-ingredient-list li:first-child { border-top: none; }
.tsl-ingredient-list .name { font-weight: 700; }
.tsl-ingredient-list .role { color: var(--text-muted); text-align: right; }
.tsl-directions { background: var(--bg); border-radius: 10px; padding: 16px 18px; font-size: 0.9rem; color: var(--text); }
.tsl-directions strong { color: var(--accent-dark); }

/* AUTHORITY */
.tsl-authority { display: grid; grid-template-columns: 140px 1fr; gap: 22px; align-items: center; margin-top: 26px; }
@media (max-width: 560px) {
  .tsl-authority { grid-template-columns: 1fr; text-align: left; }
  .tsl-authority > div:first-child { width: 50%; }
}
.tsl-authority img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; }
.tsl-authority-name { font-weight: 800; margin-top: 8px; font-size: 0.95rem; }
.tsl-authority-cred { font-size: 0.78rem; color: var(--text-muted); }
.tsl-authority-quote { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(1.15rem, 3vw, 1.4rem); line-height: 1.45; }
.tsl-authority-quote .accent { color: var(--cta-bg); }

/* WHY IT COMPARES GRID (dark) */
.tsl-compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 28px; background: rgba(0,0,0,0.08); }
@media (min-width: 700px) { .tsl-compare-grid { grid-template-columns: repeat(3, 1fr); } }
.tsl-compare-item { background: var(--dark-bg); padding: 22px 18px; }
.tsl-compare-item h4 { font-weight: 800; font-size: 0.95rem; color: var(--on-dark); margin: 0 0 6px; }
.tsl-compare-item p { font-size: 0.85rem; color: var(--on-dark-muted); margin: 0; line-height: 1.55; }

/* RESULT STATS */
.tsl-result-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; background: var(--border); }
@media (max-width: 700px) { .tsl-result-stats { grid-template-columns: 1fr; } }
.tsl-rs { background: var(--bg-card); padding: 24px 18px; text-align: center; }
.tsl-rs-num { font-family: 'Anton', sans-serif; font-size: 2.1rem; color: var(--cta-bg); line-height: 1; }
.tsl-rs p { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }
.tsl-result-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 18px; text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* TESTIMONIAL CAROUSEL - foto grande 3:4, legenda sobreposta na base */
.tsl-tcarousel-big { max-width: 420px; margin: 26px auto 0; position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 32px rgba(54,47,36,0.22); }
.tsl-tslide-big { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
.tsl-tslide-big.active { opacity: 1; }
.tsl-tc-photo-big { width: 100%; height: 100%; object-fit: cover; display: block; }
.tsl-tc-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 20px; background: linear-gradient(to top, rgba(30,25,18,0.88) 10%, rgba(30,25,18,0.55) 55%, rgba(30,25,18,0) 100%); }
.tsl-tc-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }
.tsl-tc-text { color: #fff; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; line-height: 1.5; margin-bottom: 10px; }
.tsl-tc-name { color: #fff; font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .3px; }
.tsl-tc-role { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.tsl-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.tsl-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.tsl-dots span.active { background: var(--cta-bg); }

/* OFFER / BUNDLES */
.tsl-offer-pretitle { background: linear-gradient(160deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%); padding: 36px 20px 30px; }
.tsl-offer-sub { text-align: center; font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.tsl-offer-title { text-align: center; color: var(--on-dark); font-size: clamp(1.9rem, 7.5vw, 2.8rem); margin: 0; }
.tsl-offer-title .accent { color: var(--gold); }
.tsl-countdown { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 16px; }
.tsl-countdown-label { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--on-dark-muted); }
.tsl-countdown-timer { font-family: 'Anton', sans-serif; font-size: 1.5rem; color: var(--gold); }

/* GARANTIA - em destaque, antes dos bundles */
.tsl-guarantee-hero {
  background: var(--accent-dark); color: #fff; text-align: center;
  padding: 26px 24px; max-width: 640px; margin: -18px auto 26px;
  border-radius: 14px; box-shadow: 0 14px 30px rgba(58,71,42,0.28);
  position: relative; z-index: 3;
}
.tsl-guarantee-hero-img { width: 130px; margin: 0 auto 10px; display: block; }
.tsl-guarantee-hero h3 { font-family: 'Anton', sans-serif; text-transform: uppercase; color: #fff; font-size: 1.3rem; margin: 0 0 8px; }
.tsl-guarantee-hero p { color: rgba(255,255,255,0.94); font-size: 0.9rem; line-height: 1.6; margin: 0; max-width: 480px; margin-left: auto; margin-right: auto; }

.tsl-offer-cards { display: flex; flex-direction: column; gap: 14px; max-width: 720px; margin: 0 auto; padding: 0 20px 40px; }
@media (min-width: 700px) { .tsl-offer-cards { flex-direction: row; } }
.tsl-oc { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; flex: 1; box-shadow: 0 12px 28px rgba(58,51,40,0.12); }
.tsl-oc.best { border: 2px solid var(--cta-bg); }
.tsl-oc-head { background: var(--bg); padding: 10px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.tsl-oc.best .tsl-oc-head { background: var(--cta-bg); }
.tsl-oc.best .tsl-oc-head-title, .tsl-oc.best .tsl-oc-head-badge { color: #fff; }
.tsl-oc-head-title { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; }
.tsl-oc-head-badge { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; color: var(--accent-dark); }
.tsl-oc-body { padding: 16px; text-align: center; }
.tsl-oc-img { width: 46%; max-width: 150px; margin: 0 auto 10px; display: block; }
.tsl-oc-payment { width: 130px; margin: 8px auto 0; display: block; opacity: 0.9; }
.tsl-oc-was { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; }
.tsl-oc-price { font-family: 'Anton', sans-serif; font-size: 2.4rem; color: var(--cta-bg); line-height: 1; }
.tsl-oc-price sup { font-size: 1.05rem; top: -0.8em; position: relative; }
.tsl-oc-per { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.tsl-oc-save { font-weight: 800; font-size: 0.8rem; color: var(--accent-dark); text-transform: uppercase; margin-bottom: 10px; }
.tsl-oc-cta { display: block; background: var(--cta-bg); color: #fff !important; text-decoration: none; font-family: 'Anton', sans-serif; text-transform: uppercase; padding: 12px; border-radius: 8px; margin: 0 16px 12px; text-align: center; }
.tsl-oc-fine { font-size: 0.68rem; color: var(--text-muted); text-align: center; padding-bottom: 12px; }

/* TIMELINE */
.tsl-timeline-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-top: 24px; }
@media (max-width: 700px) { .tsl-timeline-wrap { grid-template-columns: 1fr; } }
.tsl-timeline-wrap p { font-size: 0.95rem; color: var(--on-dark-muted); line-height: 1.7; margin-bottom: 12px; }
.tsl-timeline-wrap strong { color: var(--on-dark); }
.tsl-timeline { display: flex; flex-direction: column; gap: 1px; background: rgba(0,0,0,0.08); }
.tsl-tl-item { background: var(--dark-bg); padding: 16px 18px; }
.tsl-tl-phase { font-family: 'Anton', sans-serif; font-size: 0.95rem; color: var(--gold); display: block; margin-bottom: 4px; }
.tsl-tl-item h5 { font-weight: 800; font-size: 0.88rem; color: var(--on-dark); margin: 0 0 3px; }
.tsl-tl-item p { font-size: 0.8rem; color: var(--on-dark-muted); margin: 0; }

/* FINAL STATS */
.tsl-final-stats { padding: 34px 20px; background: var(--bg-card); }
.tsl-fs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; max-width: 700px; margin: 0 auto; background: var(--border); }
@media (min-width: 700px) { .tsl-fs-grid { grid-template-columns: repeat(4, 1fr); } }
.tsl-fs-item { background: var(--bg-card); text-align: center; padding: 16px; }
.tsl-fs-num { font-family: 'Anton', sans-serif; font-size: 1.8rem; color: var(--cta-bg); line-height: 1; }
.tsl-fs-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; margin-top: 6px; line-height: 1.4; }

/* FAQ */
.tsl-faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.tsl-faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.tsl-faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 15px 16px; text-align: left; font-weight: 700; font-size: 0.92rem; display: flex; justify-content: space-between; gap: 12px; color: var(--text); }
.tsl-faq-arrow { color: var(--cta-bg); font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.tsl-faq-item.open .tsl-faq-arrow { transform: rotate(45deg); }
.tsl-faq-a { max-height: 0; overflow: hidden; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; padding: 0 16px; transition: max-height .35s ease, padding .35s ease; }
.tsl-faq-item.open .tsl-faq-a { max-height: 300px; padding: 0 16px 16px; }

/* FINAL CTA */
.tsl-final-cta { text-align: center; padding: 46px 20px 10px; }
.tsl-final-cta p { color: var(--text-muted); font-size: 0.92rem; margin: 10px 0 16px; }

/* FOOTER */
.tsl-footer { background: var(--bg); padding: 30px 20px; text-align: center; border-top: 1px solid var(--border); }
.tsl-footer-logo { font-family: 'Anton', sans-serif; font-size: 1.3rem; margin-bottom: 10px; }
.tsl-footer-logo span { color: var(--cta-bg); }
.tsl-footer p { font-size: 0.7rem; color: var(--text-muted); line-height: 1.7; max-width: 700px; margin: 0 auto 8px; }
