/* ============================================================
   UpTechDesk — style.css (2026 redesign)
   ============================================================ */

:root {
  --bg:          #FFFFFF;
  --bg-alt:      #F6FAF8;
  --bg-subtle:   #EEF4F0;
  --text:        #0D1A12;
  --text-2:      #2E4338;
  --muted:       #5D6E67;
  --line:        rgba(13,26,18,.09);
  --line-2:      rgba(13,26,18,.16);

  --accent:      #018F48;
  --accent-2:    #005D2D;
  --accent-bg:   rgba(1,143,72,.07);
  --accent-bg2:  rgba(1,143,72,.13);
  --accent-bdr:  rgba(1,143,72,.22);
  --accent-txt:  #004A24;

  --sh-xs: 0 1px 4px rgba(13,26,18,.06);
  --sh-sm: 0 4px 14px rgba(13,26,18,.08), 0 1px 3px rgba(13,26,18,.04);
  --sh-md: 0 10px 30px rgba(13,26,18,.11), 0 2px 6px rgba(13,26,18,.05);
  --sh-lg: 0 22px 58px rgba(13,26,18,.14), 0 6px 14px rgba(13,26,18,.06);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
/* Wrapper que contém o overflow do nav drawer sem afetar position:fixed */
.page-clip { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* LAYOUT */
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 96px 0; }

/* ============================================================
   SECTION HEADERS — SIGNATURE: STATUS-DOT EYEBROW
   Refs UI language of monitoring/helpdesk dashboards — the
   "online" dot encodes that this is a live, active service.
   ============================================================ */
.section__header { text-align: center; margin-bottom: 52px; }
.section__header--left { text-align: left; margin-bottom: 24px; }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--accent-bdr);
  background: var(--accent-bg);
  color: var(--accent-txt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.section__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2.6s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.78); }
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--text);
}
.section__subtitle {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.section__header--left .section__subtitle { margin: 0; }

.section__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.cta__hint { color: var(--muted); font-size: 13px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(1,143,72,.28);
}
.btn--primary:hover { box-shadow: 0 6px 22px rgba(1,143,72,.36); }
.btn--ghost {
  background: rgba(13,26,18,.04);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(13,26,18,.08); }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: var(--sh-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.nav__brand { display: flex; flex-direction: column; gap: 1px; }
.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -.2px;
  color: var(--accent-2);
}
.nav__logo-img { height: 27px; width: auto; }
.nav__tagline { color: var(--muted); font-size: 11px; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--text); background: var(--bg-alt); }
.nav__link--highlight {
  color: #fff !important;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  font-weight: 700;
  margin-left: 4px;
}
.nav__link--highlight:hover { opacity: .9; background: linear-gradient(160deg, var(--accent), var(--accent-2)); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.language-selector {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-alt);
}
.language-selector--mobile { display: none; }
.nav__menu-language { display: none; }
.lang-btn {
  border: 0;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  font-family: var(--font-body);
  transition: background .2s, color .2s;
}
.lang-btn.active {
  background: #fff;
  color: var(--accent-2);
  box-shadow: var(--sh-xs);
}

.nav__toggle, .nav__close {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: 8px 11px;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--font-body);
  transition: background .2s;
}
.nav__toggle:hover, .nav__close:hover { background: var(--bg-subtle); }

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,26,18,.46);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.nav__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 0;
  background:
    radial-gradient(ellipse 820px 460px at 8% 0%,  rgba(1,143,72,.07) 0%, transparent 68%),
    radial-gradient(ellipse 640px 380px at 95% 12%, rgba(1,93,45,.05)  0%, transparent 60%);
}
.hero__container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow { margin-bottom: 8px; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent-bdr);
  background: var(--accent-bg);
  color: var(--accent-txt);
  font-size: 12.5px;
  font-weight: 600;
}
.hero__tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.6s ease infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 16px;
}
.hero__title em { font-style: italic; color: var(--text-2); }
.hero__description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 22px;
}
.hero__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.role-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--line-2);
  background: var(--bg-alt);
  padding: 6px 12px;
  border-radius: 999px;
}
.hero__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero__trust { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
  font-size: 12px;
  color: var(--muted);
  border: 1px dashed var(--line-2);
  padding: 5px 11px;
  border-radius: 999px;
}

/* HERO VISUAL */
.hero__image { display: flex; justify-content: flex-end; }
.hero__photo-frame {
  position: relative;
  width: min(420px, 100%);
}
.hero__photo-accent {
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(circle at 20% 20%, rgba(1,143,72,.11), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(1,93,45,.08),  transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero__mock {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  background: #fff;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.mock__topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.mock__topbar > span:not(.mock__url) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(13,26,18,.16);
}
.mock__url {
  margin-left: 8px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  flex: 1;
}
.mock__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Ticket card inside hero mock */
.mock__ticket {
  border: 1px solid var(--accent-bdr);
  border-radius: var(--r-md);
  background: var(--accent-bg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock__ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock__ticket-id {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  font-family: ui-monospace, monospace;
}
.mock__ticket-status {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  padding: 3px 10px;
  border-radius: 999px;
}
.mock__ticket-title {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
}
.mock__ticket-desc {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.mock__ticket-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-2);
}

/* Checklist inside hero mock */
.mock__checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock__check {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}
.mock__check--done {
  border-color: var(--accent-bdr);
  color: var(--accent-2);
  background: var(--accent-bg);
}
.mock__check--done::before {
  content: '✓';
  font-weight: 800;
  font-size: 11px;
  color: var(--accent);
}

/* Metrics strip */
.hero__metrics {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13,26,18,.02);
}
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 22px 0;
}
.metric__item { text-align: center; padding: 8px 0; }
.metric__number { font-weight: 900; font-size: 22px; }
.metric__plus { font-weight: 900; color: var(--accent); margin-left: 2px; font-size: 17px; }
.metric__label { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }
.metric__divider { height: 32px; width: 1px; background: var(--line-2); justify-self: center; }

/* ============================================================
   SERVICES
   ============================================================ */
.cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
  border-radius: 0;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--accent-bdr);
}
.card:hover::before { transform: scaleX(1); }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 20px;
  margin-bottom: 14px;
}
.card__title { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.card__desc { color: var(--muted); margin: 0 0 14px; font-size: 14px; line-height: 1.55; }
.card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   SEGMENTS
   ============================================================ */
.segments { background: var(--bg-alt); }

.segments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.segment-card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-lg);
  padding: 24px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.segment-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .28s ease;
}
.segment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-sm);
  border-color: var(--accent-bdr);
}
.segment-card:hover::after { transform: scaleY(1); }
.segment-card h3 { margin: 0 0 10px; font-size: 16px; font-weight: 700; }
.segment-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.segment-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.segment-card ul li { display: flex; align-items: center; gap: 8px; }
.segment-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .7;
}

/* ============================================================
   PLANS
   ============================================================ */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.plan-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-2);
  background: #fff;
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--sh-xs);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.plan-card--highlight {
  border-color: var(--accent-bdr);
  background: linear-gradient(160deg, rgba(1,143,72,.05) 0%, #fff 70%);
  box-shadow: var(--sh-sm), 0 0 0 1px var(--accent-bdr);
}
.plan-card__badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent-bdr);
  background: var(--accent-bg);
  color: var(--accent-txt);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.plan-card__top h3 { margin: 0 0 4px; font-size: 20px; font-weight: 800; }
.plan-card__price {
  margin: 10px 0 6px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-card__price > span:first-child {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  vertical-align: super;
}
.plan-card__period { font-size: 14px; color: var(--muted); font-weight: 600; margin-left: 2px; }
.plan-card__price--consult { font-size: 22px; font-weight: 800; color: var(--accent-2); letter-spacing: -.01em; }
.plan-card__desc { color: var(--muted); margin: 8px 0 18px; font-size: 14px; line-height: 1.55; }
.plan-card__list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-size: 13.5px;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.plan-card__list li { display: flex; align-items: flex-start; gap: 10px; }
.plan-card__list li::before {
  content: '';
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-bdr);
  background: var(--accent-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpolyline points='2,5.5 4.2,7.5 8,3' stroke='%23018F48' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / auto no-repeat;
  margin-top: 1px;
}
.plan-card > .btn { margin-top: auto; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--bg-alt); }

.process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  padding: 44px;
  box-shadow: var(--sh-sm);
}
.process__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 14px;
}
.process__title em { font-style: italic; color: var(--text-2); }
.process__desc { color: var(--muted); margin: 0 0 28px; font-size: 15px; line-height: 1.6; }

.process__steps { display: flex; flex-direction: column; gap: 12px; }
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  transition: border-color .2s;
}
.step:hover { border-color: var(--accent-bdr); }
.step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
}
.step h3 { margin: 0 0 3px; font-size: 14px; font-weight: 700; }
.step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* Flow diagram (right panel) */
.flow-diagram { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.flow-node {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.flow-node--final {
  border-color: var(--accent-bdr);
  background: var(--accent-bg);
}
.flow-node__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  background: #fff;
}
.flow-node--final .flow-node__icon {
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.flow-node__icon svg { width: 17px; height: 17px; color: var(--accent-2); }
.flow-node--final .flow-node__icon svg { color: #fff; }
.flow-node__step {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.flow-node--final .flow-node__step { color: var(--accent-2); }
.flow-node__body h4 { margin: 0 0 4px; font-size: 14px; font-weight: 700; }
.flow-node__body p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }

.flow-connector {
  display: flex;
  justify-content: center;
  color: rgba(13,26,18,.25);
  margin: -2px 0;
}
.flow-connector--accent { color: rgba(1,143,72,.50); }
.flow-connector svg { width: 14px; height: 26px; }

.process__card {
  border: 1px solid var(--accent-bdr);
  background: var(--accent-bg);
  border-radius: var(--r-md);
  padding: 18px;
}
.process__card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.process__card strong { display: block; font-size: 15px; font-weight: 800; }
.process__card p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--accent-bdr); }

.faq__item > summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: '';
  flex-shrink: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s ease, border-color .2s;
}
.faq__item[open] > summary { background: var(--accent-bg); }
.faq__item[open] > summary::after {
  transform: rotate(-135deg) translateY(2px);
  border-color: var(--accent-2);
}
.faq__item > p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  border-top: 1px solid var(--line);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-alt); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start;
}
#contact-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
#contact-title em { font-style: italic; color: var(--accent-2); }
.contact__desc { color: var(--muted); margin: 14px 0 0; font-size: 15px; line-height: 1.65; }
.contact__channels { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.contact__channel {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}
.contact__channel:hover { border-color: var(--accent-bdr); box-shadow: var(--sh-xs); }
.channel__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  border: 1px solid var(--accent-bdr);
  font-size: 16px;
}

.contact__form {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
label { font-size: 13px; font-weight: 600; color: var(--text-2); }
input, select, textarea {
  border: 1px solid var(--line-2);
  background: var(--bg-alt);
  color: var(--text);
  padding: 11px 14px;
  border-radius: var(--r-md);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1,143,72,.11);
}
textarea { resize: vertical; min-height: 100px; }
.form__status { margin-top: 12px; font-size: 13px; color: var(--accent-2); min-height: 20px; }
.form__hint { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.form__hint a { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   COVERAGE STRIP
   ============================================================ */
.coverage-strip { padding: 12px 0 56px; text-align: center; }
.coverage-strip__text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--bg-alt);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}
.coverage-strip__flag { font-size: 18px; line-height: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
  background: var(--bg-alt);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer__name { font-weight: 900; font-size: 16px; color: var(--accent-2); margin-bottom: 6px; }
.footer__tagline { color: var(--muted); font-size: 13.5px; line-height: 1.55; max-width: 260px; margin: 0; }
.footer__nav, .footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__links a { color: var(--muted); font-size: 13.5px; transition: color .2s; }
.footer__nav a:hover, .footer__links a:hover { color: var(--text); }
.footer__bottom {
  color: var(--muted);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.footer__legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__legal-links a { color: var(--muted); }
.footer__legal-links a:hover { color: var(--text); }
.footer__legal-links button.open-cookie-prefs {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.footer__legal-links button.open-cookie-prefs:hover { color: var(--text); }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  padding: 18px 20px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1 1 380px;
}
.cookie-banner__text a { color: var(--accent-2); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 10px 18px; font-size: 13px; }

@media (max-width: 480px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero { padding: 56px 0 8px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 24px;
  transition: color .2s;
}
.legal-back:hover { color: var(--text); }
.legal-back svg { width: 16px; height: 16px; }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.legal-updated { color: var(--muted); font-size: 13px; margin: 0; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content > p:first-child { color: var(--muted); font-size: 16px; margin: 0 0 32px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
}
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content p { margin: 0 0 14px; color: var(--text); line-height: 1.65; }
.legal-content ul { margin: 0 0 14px; padding-left: 20px; color: var(--text); }
.legal-content li { margin-bottom: 7px; }
.legal-content a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.legal-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.legal-table th, .legal-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.legal-table th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.legal-table tr:last-child td { border-bottom: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .section__eyebrow::before, .hero__tag::before { animation: none; }
  .card, .segment-card, .plan-card, .btn { transition: none; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1020px)
   ============================================================ */
@media (max-width: 1020px) {
  .hero__container { grid-template-columns: 1fr; }
  .hero__image { justify-content: flex-start; }
  .hero__photo-frame { width: min(420px, 100%); }

  .metrics__grid {
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    padding: 16px 0;
  }

  .cards__grid     { grid-template-columns: repeat(2, 1fr); }
  .segments__grid  { grid-template-columns: repeat(2, 1fr); }
  .process__inner  { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .contact__inner  { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner   { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤760px)
   ============================================================ */
@media (max-width: 760px) {
  .section { padding: 72px 0; }

  /* Remove backdrop-filter on mobile — prevents Safari/Chrome from
     treating the header as a containing block for position:fixed */
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,.97);
  }

  /* Nav */
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 90vw);
    background: #fff;
    border-left: 1px solid var(--line);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 101;
    transform: translateX(100%);
    transition: transform .28s ease;
    visibility: hidden;
    overflow-y: auto;
  }
  .nav__menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Botão fechar: flex item (não absolute) — sempre dentro do drawer */
  .nav__close {
    display: inline-flex;
    order: -1;          /* aparece primeiro na coluna */
    align-self: flex-end;
    margin-bottom: 8px;
    flex-shrink: 0;
  }

  /* Language inside drawer */
  .nav__menu-language {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .language-selector--mobile { display: flex; }
  .language-selector { display: none; }

  /* Links in column */
  .nav__list { flex-direction: column; align-items: flex-start; gap: 2px; width: 100%; }
  .nav__link { width: 100%; }
  .nav__link--highlight { margin-left: 0; }

  /* Hero */
  .hero { padding: 60px 0 0; }
  .hero__title { font-size: clamp(30px, 9vw, 44px); }

  /* Grids */
  .cards__grid    { grid-template-columns: 1fr; }
  .segments__grid { grid-template-columns: 1fr; }
  .plans__grid    { grid-template-columns: 1fr; max-width: 100%; }
  .faq__grid      { grid-template-columns: 1fr; max-width: 100%; }
  .form__row      { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr; }

  /* Metrics: stack */
  .metrics__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .metric__divider { display: none; }
  .metric__item { border-bottom: 1px solid var(--line); }
  .metric__item:last-child { border-bottom: none; }

  .section__cta { flex-direction: column; align-items: stretch; }
  .process__inner { padding: 24px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { width: calc(100% - 28px); }
  .hero__buttons { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.40), 0 2px 6px rgba(0,0,0,.14);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg {
  width: 26px;
  height: 26px;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 22px rgba(37,211,102,.50), 0 2px 8px rgba(0,0,0,.16);
}
.wa-float:active {
  transform: scale(.96);
}

@media (max-width: 760px) {
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
  .wa-float svg { width: 24px; height: 24px; }
}
