/* ==========================================================================
   AdSquad Marketing — style.css
   Paleta extraída do logo: laranja (gradiente #F0562A → #F9A11C) + cinza #53565A
   ========================================================================== */

:root {
  --brand: #ee5a24;
  --brand-strong: #d94a17;
  --brand-soft: #fdeee7;
  --brand-amber: #f9a11c;
  --ink: #26282b;
  --ink-2: #53565a;
  --ink-3: #7a7d82;
  --bg: #ffffff;
  --bg-warm: #f8f7f5;
  --bg-dark: #232528;
  --bg-dark-2: #2c2e32;
  --line: #e8e6e2;
  --line-dark: #3b3d42;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px -12px rgba(38, 40, 43, 0.18);
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.6em;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.22rem;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-strong);
}

ul {
  padding-left: 1.2rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2rem);
}

.section {
  padding: clamp(3.6rem, 7vw, 5.6rem) 0;
}

.section--warm {
  background: var(--bg-warm);
}

.section--dark {
  background: var(--bg-dark);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark p {
  color: #c9cbce;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-2);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.center {
  text-align: center;
}

.center.section-head {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Botões
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-strong);
  color: #fff;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.section--dark .btn--ghost {
  border-color: var(--line-dark);
  color: #fff;
}

.section--dark .btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn--lg {
  padding: 0.95rem 1.7rem;
  font-size: 1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* --------------------------------------------------------------------------
   Header / navegação
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.site-header .logo img {
  width: 158px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brand);
}

.site-nav .btn {
  padding: 0.62rem 1.25rem;
  font-size: 0.9rem;
  color: #fff;
}

.site-nav .btn:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.2rem 1.2rem;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }

  .site-nav a[aria-current="page"] {
    border-bottom-color: var(--line);
    color: var(--brand);
  }

  .site-nav .btn {
    margin-top: 1rem;
    justify-content: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(52rem 30rem at 88% -12%, rgba(249, 161, 28, 0.16), transparent 60%),
    radial-gradient(40rem 26rem at -8% 110%, rgba(238, 90, 36, 0.09), transparent 60%),
    var(--bg-warm);
  padding: clamp(3.6rem, 7vw, 6rem) 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 .u {
  color: var(--brand);
}

.hero .lead {
  font-size: 1.13rem;
  max-width: 34rem;
}

.hero__note {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-3);
}

/* painel ilustrativo de campanha (CSS puro, sem imagem de banco) */
.media-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.4rem 1.6rem;
}

.media-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.media-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.media-panel__badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #1e7d43;
  background: #e7f6ec;
  border-radius: 99px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}

.media-panel__bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 6px;
  height: 120px;
  margin-bottom: 1.2rem;
}

.media-panel__bars i {
  display: block;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--brand-amber), var(--brand));
  opacity: 0.9;
  height: calc(var(--v) * 1%);
  animation: bar-in 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes bar-in {
  from {
    height: 8%;
  }
}

.media-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.media-panel__stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--ink);
}

.media-panel__stats span {
  font-size: 0.76rem;
  color: var(--ink-3);
}

.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.chip {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.42rem 0.95rem;
}

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Blueprint + board de estratégia (post-its)
   -------------------------------------------------------------------------- */

/* grade técnica sutil no hero (papel milimetrado) */
.hero {
  background-image:
    radial-gradient(52rem 30rem at 88% -12%, rgba(249, 161, 28, 0.16), transparent 60%),
    radial-gradient(40rem 26rem at -8% 110%, rgba(238, 90, 36, 0.09), transparent 60%),
    repeating-linear-gradient(0deg, rgba(38, 40, 43, 0.045) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(38, 40, 43, 0.045) 0 1px, transparent 1px 24px);
  background-color: var(--bg-warm);
}

/* faixa blueprint: planta de campanha */
.blueprint-band {
  position: relative;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 130px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 130px),
    linear-gradient(160deg, #123252, #0c2440 70%);
  color: #dbe6f2;
  overflow: hidden;
}

.blueprint-band .eyebrow { color: var(--brand-amber); }
.blueprint-band h2 { color: #fff; }
.blueprint-band > .container > .section-head p { color: #b8c8da; }

/* board de vidro */
.glass-board {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035) 45%, rgba(255, 255, 255, 0.09));
  backdrop-filter: blur(3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 30px 60px -30px rgba(0, 0, 0, 0.55);
  padding: clamp(1.6rem, 4vw, 3rem);
}

.glass-board::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.10) 46%, transparent 55%);
  pointer-events: none;
}

/* fluxo de post-its */
.postit-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.postit-step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.postit {
  position: relative;
  width: 158px;
  min-height: 150px;
  padding: 1.9rem 0.85rem 0.85rem;
  background: var(--pi-bg, #ffe28a);
  color: #2b2416;
  border-radius: 2px;
  box-shadow: 0 14px 22px -12px rgba(0, 0, 0, 0.5);
  transform: rotate(var(--pi-rot, -2deg));
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
  cursor: default;
}

.postit:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.04);
  box-shadow: 0 24px 34px -14px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* fita adesiva */
.postit::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 62px;
  height: 20px;
  transform: translateX(-50%) rotate(var(--pi-tape, 3deg));
  background: rgba(255, 255, 255, 0.55);
  border-left: 1px dashed rgba(0, 0, 0, 0.08);
  border-right: 1px dashed rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.postit__step {
  position: absolute;
  top: 0.55rem;
  right: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(43, 36, 22, 0.55);
}

.postit__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.postit__note {
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: 1.18rem;
  line-height: 1.25;
  color: rgba(43, 36, 22, 0.82);
}

/* setas do fluxo */
.flow-arrow {
  font-size: 1.5rem;
  color: var(--brand-amber);
  animation: arrow-pulse 1.6s ease-in-out infinite;
  user-select: none;
}

@keyframes arrow-pulse {
  0%, 100% { opacity: 0.45; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(5px); }
}

/* anotação manuscrita no board */
.board-scribble {
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: #ffd59a;
  text-align: center;
  margin: 1.6rem 0 0;
  transform: rotate(-1.2deg);
}

.board-scribble svg {
  vertical-align: middle;
  margin-right: 0.4rem;
}

@media (max-width: 900px) {
  .postit-flow { flex-direction: column; align-items: center; }
  .postit-step { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); animation: none; opacity: 0.7; }
  .postit { width: min(300px, 82vw); min-height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .flow-arrow { animation: none; }
  .postit, .postit:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Grades e cards
   -------------------------------------------------------------------------- */

.grid {
  display: grid;
  gap: 1.4rem;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(238, 90, 36, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card p {
  margin-bottom: 0.4rem;
}

.card .card__ideal {
  font-size: 0.9rem;
  color: var(--ink-3);
  margin: 0.7rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--line);
}

.card .card__ideal b {
  color: var(--brand);
  font-weight: 600;
}

.card__link {
  display: inline-block;
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

/* lista de checagem (benefícios) */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.02rem;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ee5a24' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center/60% no-repeat;
}

@media (max-width: 640px) {
  .check-list {
    grid-template-columns: 1fr;
  }
}

/* "por que escolher" — lista numerada em cards enxutos */
.why-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.why-item__num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.why-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35em;
}

.why-item p {
  margin: 0;
  font-size: 0.97rem;
}

/* --------------------------------------------------------------------------
   Página Serviços
   -------------------------------------------------------------------------- */

.service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  padding: clamp(2.6rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}

.service:first-of-type {
  border-top: 0;
}

.service__how h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service__how ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.service__how li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.7rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
}

.service__how li:last-child {
  border-bottom: 0;
}

.service__how li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand);
}

.service__why {
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin: 1.2rem 0 1.5rem;
  font-size: 0.97rem;
}

.service__why b {
  color: var(--ink);
}

@media (max-width: 860px) {
  .service {
    grid-template-columns: 1fr;
  }
}

/* processo (Como Trabalhamos) */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 980px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  counter-increment: step;
  background: var(--bg-dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}

.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brand-amber);
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.05rem;
  color: #fff;
}

.step p {
  font-size: 0.94rem;
  color: #b9bbbf;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Página Como Trabalhamos — linha do tempo
   -------------------------------------------------------------------------- */

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  counter-reset: tl;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-amber), var(--brand) 55%, var(--line));
}

.tl-step {
  counter-increment: tl;
  position: relative;
  padding: 0 0 clamp(1.8rem, 4vw, 2.8rem) 88px;
}

.tl-step:last-child {
  padding-bottom: 0;
}

.tl-step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px var(--bg);
}

.tl-step__num::before {
  content: "0" counter(tl);
}

.tl-step__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tl-step__card:hover {
  border-color: rgba(238, 90, 36, 0.45);
  box-shadow: var(--shadow);
}

.tl-step__card h3 {
  margin-bottom: 0.45em;
}

.tl-step__card p:last-child {
  margin-bottom: 0;
}

.tl-step__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 99px;
  padding: 0.28rem 0.8rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 640px) {
  .timeline::before {
    left: 21px;
  }

  .tl-step {
    padding-left: 66px;
  }

  .tl-step__num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 0.92rem;
  }
}

/* canais de comunicação (Como Trabalhamos) */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

@media (max-width: 980px) {
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .channel-grid {
    grid-template-columns: 1fr;
  }
}

.channel {
  text-align: center;
  padding: 1.6rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.channel .card__icon {
  margin: 0 auto 0.9rem;
}

.channel h3 {
  font-size: 1rem;
  margin-bottom: 0.3em;
}

.channel p {
  font-size: 0.88rem;
  color: var(--ink-3);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Página Clientes
   -------------------------------------------------------------------------- */

.segment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Quadro de cortiça com polaroids ------------------------------------- */
.cork-board {
  --frame: #6f4a26;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.9rem 1.3rem;
  padding: 2.2rem 1.8rem;
  background:
    radial-gradient(rgba(63, 40, 16, 0.14) 1px, transparent 1.5px) 0 0 / 9px 9px,
    radial-gradient(rgba(255, 244, 224, 0.10) 1px, transparent 1.5px) 4px 6px / 13px 13px,
    linear-gradient(128deg, #c99a66 0%, #b5804c 42%, #c08a56 78%, #ba8450 100%);
  border: 14px solid var(--frame);
  border-image: linear-gradient(160deg, #8a5c31, #5d3c1c 55%, #7c5129) 1;
  border-radius: 4px;
  box-shadow:
    inset 0 2px 14px rgba(43, 26, 10, 0.45),
    inset 0 -2px 10px rgba(43, 26, 10, 0.3),
    var(--shadow);
}

.polaroid {
  --tilt: -1.6deg;
  --pin: #e0452e;
  --pin-x: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fffdf6;
  padding: 0.5rem 0.5rem 0.3rem;
  border-radius: 2px;
  box-shadow: 0 10px 18px rgba(38, 26, 12, 0.35), 0 2px 5px rgba(38, 26, 12, 0.25);
  transform: rotate(var(--tilt));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.polaroid:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.05);
  box-shadow: 0 18px 30px rgba(38, 26, 12, 0.45), 0 4px 9px rgba(38, 26, 12, 0.3);
  z-index: 2;
}

/* inclinações variadas, como se cada foto tivesse sido pendurada à mão */
.polaroid:nth-child(4n + 1) { --tilt: -2.4deg; --pin-x: 44%; }
.polaroid:nth-child(4n + 2) { --tilt: 1.8deg;  --pin-x: 56%; }
.polaroid:nth-child(4n + 3) { --tilt: -0.9deg; --pin-x: 52%; }
.polaroid:nth-child(4n + 4) { --tilt: 2.6deg;  --pin-x: 46%; }

/* taxinhas laranja AdSquad */
.polaroid { --pin: var(--brand); }

.polaroid__pin {
  position: absolute;
  top: -9px;
  left: var(--pin-x);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.85) 0 14%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 50% 50%, var(--pin) 55%, color-mix(in srgb, var(--pin) 55%, #000) 100%);
  box-shadow: 0 3px 4px rgba(30, 18, 6, 0.45);
  z-index: 1;
}

.polaroid__pin::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 7px;
  width: 3px;
  height: 5px;
  background: linear-gradient(#9aa0a6, #5f6368);
  border-radius: 0 0 2px 2px;
}

.polaroid__photo {
  display: block;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(31, 26, 23, 0.07);
  overflow: hidden;
}

.polaroid__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.polaroid__caption {
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.05;
  color: #433c34;
  text-align: center;
  padding: 0.42rem 0.15rem 0.3rem;
  min-height: 2.6em;
  display: grid;
  place-items: center;
}

@media (max-width: 700px) {
  .cork-board {
    grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
    gap: 1.5rem 0.9rem;
    padding: 1.6rem 1rem;
    border-width: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .polaroid, a.polaroid:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Página Contato
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-aside .contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 500;
}

.contact-aside .contact-line svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex: 0 0 auto;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(238, 90, 36, 0.15);
  background: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.radio-row {
  display: flex;
  gap: 1.4rem;
  padding-top: 0.2rem;
}

.radio-row label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.radio-row input {
  accent-color: var(--brand);
  width: 1.05rem;
  height: 1.05rem;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.form-hint {
  grid-column: 1 / -1;
  font-size: 0.86rem;
  color: var(--ink-3);
  margin: 0;
}

.form-feedback {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brand-strong);
  min-height: 1.2em;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   CTA final
   -------------------------------------------------------------------------- */

.cta-band {
  background:
    radial-gradient(38rem 22rem at 110% 120%, rgba(249, 161, 28, 0.22), transparent 65%),
    var(--bg-dark);
  border-radius: var(--radius);
  padding: clamp(2.4rem, 5vw, 3.8rem);
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  color: #c9cbce;
  max-width: 580px;
  margin: 0 auto 1.7rem;
}

.cta-band .btn-row {
  justify-content: center;
}

.cta-band .btn--ghost {
  border-color: var(--line-dark);
  color: #fff;
}

.cta-band .btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--bg-dark);
  color: #b9bbbf;
  padding: clamp(2.8rem, 5vw, 4rem) 0 1.6rem;
  font-size: 0.93rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line-dark);
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer .logo img {
  width: 150px;
  margin-bottom: 1rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: #b9bbbf;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: #85888d;
}

/* --------------------------------------------------------------------------
   Canvas de copy (editor digitando)
   -------------------------------------------------------------------------- */

.copy-canvas-section {
  background: var(--bg);
  padding: clamp(3.4rem, 6.5vw, 5.4rem) 0;
}

.copy-canvas {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -30px rgba(38, 40, 43, 0.25);
  overflow: hidden;
}

.copy-canvas__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}

.copy-canvas__bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e3e0dc;
}

.copy-canvas__bar i:nth-child(1) { background: #f4907a; }
.copy-canvas__bar i:nth-child(2) { background: #f7c873; }
.copy-canvas__bar i:nth-child(3) { background: #9fd6ae; }

.copy-canvas__bar span {
  margin-left: 0.6rem;
  font-size: 0.76rem;
  color: var(--ink-3);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.copy-canvas__body {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 3.4rem);
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(38, 40, 43, 0.035) 38px 39px);
}

.copy-canvas__text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  line-height: 1.25;
  color: var(--ink);
  text-align: center;
  min-height: 2.6em;
}

.copy-canvas__text .accent {
  color: var(--brand);
  font-style: italic;
}

.copy-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--brand);
  margin-left: 3px;
  vertical-align: -0.12em;
  animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes caret-blink {
  50% { opacity: 0; }
}

/* --------------------------------------------------------------------------
   Formulário conversacional (janela de prompt no contato)
   -------------------------------------------------------------------------- */

.contact-canvas .copy-canvas__body {
  display: block;
  place-items: normal; /* navegadores novos centralizam filhos de bloco com o place-items herdado */
  height: 400px;
  overflow-y: auto;
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  background: repeating-linear-gradient(0deg, transparent 0 38px, rgba(38, 40, 43, 0.03) 38px 39px);
  scroll-behavior: smooth;
}

/* perguntas continuam centralizadas (o visual aprovado) */
.contact-canvas .cp-q,
.contact-canvas .cp-hint {
  text-align: center;
}

.contact-canvas .cp-send-row {
  justify-content: center;
  padding-left: 0;
}

/* tela "desligada": botão de ligar no centro */
.cp-power {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.cp-power.is-off {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.cp-power__btn {
  border: 0;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 1.05rem 2.4rem;
  border-radius: 999px;
  box-shadow: 0 14px 34px -12px rgba(238, 90, 36, 0.55);
  animation: power-pulse 2.2s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.cp-power__btn:hover { transform: scale(1.05); }

@keyframes power-pulse {
  0%, 100% { box-shadow: 0 14px 34px -12px rgba(238, 90, 36, 0.55); }
  50% { box-shadow: 0 14px 44px -8px rgba(238, 90, 36, 0.8); }
}

.cp-power__type {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--ink-2);
  min-height: 1.6em;
}

/* barra de digitação estilo chat (embaixo da janela) */
.cp-inputbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.cp-inputbar[hidden] { display: none; }

.cp-inputbar input,
.cp-inputbar textarea {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-warm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  outline: none;
  resize: none;
}

.cp-inputbar input:focus,
.cp-inputbar textarea:focus {
  border-color: var(--brand);
  background: #fff;
}

.cp-send {
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.cp-send:hover { background: var(--brand-strong); transform: scale(1.06); }

.cp-inputbar .cp-chips-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1;
}

.cp-user {
  display: flex;
  justify-content: flex-end;
  margin: 0.35rem 0 0.9rem;
}

.cp-user span {
  max-width: 74%;
  background: var(--brand);
  color: #fff;
  padding: 0.42rem 0.8rem;
  border-radius: 13px;
  border-bottom-right-radius: 4px;
  font-size: 0.82rem;
  line-height: 1.45;
  animation: sq-msg-in 0.25s ease;
}

.copy-canvas__bar .cp-progress {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: var(--ink-3);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.cp-loaddots i {
  display: inline-block;
  font-style: normal;
  animation: cp-load 1.2s infinite;
}

.cp-loaddots i:nth-child(2) { animation-delay: 0.2s; }
.cp-loaddots i:nth-child(3) { animation-delay: 0.4s; }

@keyframes cp-load {
  0%, 60%, 100% { opacity: 0.25; }
  30% { opacity: 1; }
}

.cp-steps {
  display: flex;
  gap: 5px;
  align-items: center;
}

.cp-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--line);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.cp-step-dot.done {
  background: var(--brand);
  cursor: pointer;
}

.cp-step-dot.done:hover {
  transform: scale(1.35);
}

.cp-step-dot.current {
  background: var(--brand-amber);
  animation: cp-dot-pulse 1.2s ease-in-out infinite;
}

@keyframes cp-dot-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 161, 28, 0.5); }
  50% { transform: scale(1.3); box-shadow: 0 0 0 4px rgba(249, 161, 28, 0.15); }
}

/* recibo final */
.cp-receipt {
  margin: 0.8rem auto 1rem;
  max-width: 340px;
  background: #fff;
  border: 1px dashed var(--ink-3);
  border-radius: 4px;
  padding: 1.2rem 1.2rem 1rem;
  font-size: 0.84rem;
  box-shadow: var(--shadow);
  animation: sq-msg-in 0.35s ease;
}

.cp-receipt__head {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
}

.cp-receipt__head small {
  display: block;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: 0.15rem;
}

.cp-receipt__row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.28rem 0;
  border-bottom: 1px dotted var(--line);
}

.cp-receipt__row span { color: var(--ink-3); white-space: nowrap; }
.cp-receipt__row b { color: var(--ink); font-weight: 600; text-align: right; word-break: break-word; }

.cp-receipt__foot {
  text-align: center;
  color: var(--ink-3);
  font-size: 0.74rem;
  padding-top: 0.6rem;
}

.cp-line {
  margin-bottom: 0.9rem;
  animation: sq-msg-in 0.3s ease;
}

.cp-q {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  color: var(--ink);
  line-height: 1.35;
}

.cp-q .cp-mark {
  color: var(--brand);
  margin-right: 0.45rem;
}

.cp-hint {
  font-size: 0.8rem;
  color: var(--ink-3);
  margin-top: 0.2rem;
}

.cp-a {
  font-size: 0.98rem;
  color: var(--ink-2);
  padding-left: 1.5rem;
}

.cp-a b { color: var(--brand-strong); font-weight: 600; }

.cp-input-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0 0.2rem 1.5rem;
}

.cp-input-row input,
.cp-input-row textarea {
  flex: 1;
  border: 0;
  border-bottom: 2px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  padding: 0.35rem 0.1rem;
  outline: none;
  resize: none;
}

.cp-input-row input:focus,
.cp-input-row textarea:focus {
  border-bottom-color: var(--brand);
}

.cp-ok {
  border: 0;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
}

.cp-ok:hover { background: var(--brand-strong); }

.cp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.5rem 0 0.3rem 1.5rem;
}

.cp-error {
  padding: 0.15rem 1.2rem 0.5rem;
  font-size: 0.82rem;
  color: #c23b2e;
  min-height: 1.1em;
  background: #fff;
}

.cp-summary {
  margin: 0.6rem 0 1rem 1.5rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
}

.cp-summary div { padding: 0.18rem 0; }
.cp-summary b { color: var(--ink); font-weight: 600; }

.cp-send-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-left: 1.5rem;
  align-items: center;
}

.cp-restart {
  background: none;
  border: 0;
  color: var(--ink-3);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}

.cp-restart:hover { color: var(--brand); }

/* --------------------------------------------------------------------------
   Chat da AdSquad (FAQ + WhatsApp)
   -------------------------------------------------------------------------- */

.sq-chat-launcher {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-amber));
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1.15rem 0.55rem 0.55rem;
  box-shadow: 0 16px 34px -14px rgba(238, 90, 36, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sq-chat-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -14px rgba(238, 90, 36, 0.7);
}

.sq-chat-launcher img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  object-fit: cover;
}

.sq-chat-launcher b {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}

.sq-chat-launcher small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.92;
}

.sq-chat-launcher .sq-dot {
  position: absolute;
  top: 4px;
  left: 44px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #35c96b;
  border: 2px solid #fff;
}

.sq-chat {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: min(376px, calc(100vw - 2rem));
  max-height: min(600px, calc(100dvh - 2.4rem));
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 30px 70px -28px rgba(38, 40, 43, 0.5);
  overflow: hidden;
}

.sq-chat.is-open {
  display: flex;
  animation: sq-pop 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes sq-pop {
  from { transform: translateY(16px) scale(0.97); opacity: 0; }
}

.sq-chat__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-amber));
  color: #fff;
}

.sq-chat__head img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  object-fit: cover;
}

.sq-chat__head b {
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.sq-chat__head small {
  display: block;
  font-size: 0.74rem;
  opacity: 0.92;
}

.sq-chat__close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95rem;
}

.sq-chat__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sq-msg {
  max-width: 86%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: sq-msg-in 0.25s ease;
}

@keyframes sq-msg-in {
  from { transform: translateY(8px); opacity: 0; }
}

.sq-msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink-2);
}

.sq-msg--user {
  align-self: flex-end;
  background: var(--brand);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.sq-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.sq-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-3);
  animation: sq-bounce 1s infinite;
}

.sq-typing i:nth-child(2) { animation-delay: 0.15s; }
.sq-typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes sq-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.sq-chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.75rem 1rem 0.35rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.sq-chip {
  border: 1px solid var(--line);
  background: var(--bg-warm);
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.sq-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.sq-chip[disabled] {
  opacity: 0.4;
  cursor: default;
}

.sq-chat__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.55rem 1rem 1rem;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: #22c15e;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}

.sq-chat__cta:hover {
  background: #1ba551;
  color: #fff;
}

@media (max-width: 480px) {
  .sq-chat-launcher b small { display: none; }
}

/* --------------------------------------------------------------------------
   Animação de entrada (progressive enhancement)
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .media-panel__bars i {
    animation: none;
  }
}

/* acessibilidade: foco visível */
:focus-visible {
  outline: 3px solid rgba(238, 90, 36, 0.55);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.2rem;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}
