/* ===========================
   VARIABLES & RESET — v2
   =========================== */
:root {
  --cream:  #F5F3EF;
  --dark:   #1C1917;
  --gold:   #C8922A;
  --coral:  #E8845A;
  --indigo: #6B7FD4;
  --alt:    #EFEDE7;

  --ff-h: 'Bricolage Grotesque', sans-serif;
  --ff-b: 'Inter', sans-serif;

  --r-sm: 8px;
  --r-md: 16px;

  --ease: 0.3s ease;
  --ease-slow: 0.6s ease;

  --max-w: 1200px;
  --px: clamp(1.25rem, 4vw, 2rem);
  --py: clamp(4rem, 8vw, 7rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-b);
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--ff-h); line-height: 1.15; font-weight: 800; }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.0625rem, 2.5vw, 1.375rem); font-weight: 700; }

p { font-size: clamp(0.9375rem, 1.5vw, 1.0625rem); line-height: 1.8; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

.section { padding: var(--py) 0; }

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

.section--alt { background: var(--alt); }

.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.section-header .label { display: block; margin-bottom: 0.5rem; }

.section-header p { margin-top: 0.75rem; opacity: 0.75; }

.section-header--light h2,
.section-header--light p { color: var(--cream); }

/* ===========================
   LABEL & BUTTONS
   =========================== */
.label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.label--gold { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--ff-b);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #b8821f; }

.btn--dark { background: var(--dark); color: var(--cream); }
.btn--dark:hover { background: #2d2926; }

.btn--lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.nav.scrolled {
  background: rgba(28, 25, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.875rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { font-family: var(--ff-h); font-size: 1.25rem; font-weight: 700; color: #fff; }

.nav__links { display: flex; align-items: center; gap: 2rem; }

.nav__links a { color: rgba(255,255,255,0.75); font-size: 0.9375rem; font-weight: 500; transition: color var(--ease); }
.nav__links a:hover { color: #fff; }

.nav__cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.625rem 1.375rem;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background var(--ease) !important;
}

.nav__cta:hover { background: #b8821f !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--ease); }

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--ease-slow);
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  }

  .nav__links.open { transform: translateX(0); }

  .nav__links a { font-size: 1.125rem; }

  .nav__cta { padding: 0.75rem 1.5rem !important; font-size: 1rem !important; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28,25,23,0.97) 0%,
    rgba(28,25,23,0.82) 38%,
    rgba(28,25,23,0.3) 64%,
    rgba(28,25,23,0.0) 100%
  );
}

.hero__container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero__content { max-width: 580px; }

.hero__headline {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.18;
  margin-bottom: 2rem;
}

.hero__bullets { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.5;
}

.hero__bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 0.44em;
}

@media (max-width: 768px) {
  .hero__img { object-position: 65% center; }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(28,25,23,0.65) 0%,
      rgba(28,25,23,0.9) 55%,
      rgba(28,25,23,0.97) 100%
    );
  }

  .hero__content { max-width: 100%; }
}

/* ===========================
   PROBLEMA 1
   =========================== */
.problema-1__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.problema-1__text { display: flex; flex-direction: column; gap: 1.25rem; }

.problema-1__text p { color: rgba(28,25,23,0.72); }

.problema-1__destaque {
  font-family: var(--ff-h) !important;
  font-size: clamp(1rem, 1.8vw, 1.25rem) !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  line-height: 1.5 !important;
}

@media (max-width: 768px) { .problema-1__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ===========================
   PROBLEMA 2
   =========================== */
.problema-2__headline {
  color: var(--cream);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 820px;
}

.problema-2__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.problema-2__text { display: flex; flex-direction: column; gap: 1.25rem; }
.problema-2__text p { color: rgba(245,243,239,0.72); }

.ciclo-wrap { display: flex; justify-content: center; }

.ciclo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  width: 100%;
  max-width: 260px;
}

.ciclo__item {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.ciclo__item--dest {
  background: rgba(200,146,42,0.15);
  border-color: rgba(200,146,42,0.4);
  color: var(--gold);
  font-weight: 700;
}

.ciclo__arrow { color: rgba(245,243,239,0.35); font-size: 1.125rem; }

.ciclo__volta { font-size: 0.8125rem; color: var(--coral); font-weight: 600; margin-top: 0.25rem; }

@media (max-width: 768px) {
  .problema-2__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ciclo { max-width: 100%; }
}

/* ===========================
   SOBRE
   =========================== */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.sobre__foto-wrap { position: relative; }

.sobre__foto-wrap::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  opacity: 0.35;
  z-index: 0;
}

.sobre__foto {
  width: 100%;
  border-radius: var(--r-md);
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.sobre__content { display: flex; flex-direction: column; gap: 1.125rem; }
.sobre__content .label { margin-bottom: 0.25rem; }
.sobre__content p { color: rgba(28,25,23,0.72); }

.sobre__destaque {
  font-family: var(--ff-h) !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  line-height: 1.5 !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre__foto-wrap { max-width: 380px; }
}

/* ===========================
   SERVIÇOS
   =========================== */
.servicos__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.servico-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid rgba(28,25,23,0.07);
  transition: transform var(--ease), box-shadow var(--ease);
}

.servico-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(28,25,23,0.1); }

.servico-card__icon { width: 40px; height: 40px; color: var(--gold); display: block; margin-bottom: 1rem; flex-shrink: 0; }

.servico-card h3 { font-size: 1.0625rem; margin-bottom: 0.625rem; }

.servico-card p { font-size: 0.9rem; color: rgba(28,25,23,0.62); line-height: 1.7; }

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

/* ===========================
   SPRINT BOARD
   =========================== */
.sprint-board {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1.25rem;
  margin-top: 2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
}

.sprint-board::-webkit-scrollbar { height: 4px; }
.sprint-board::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 4px; }

.sprint-col { flex: 0 0 170px; min-width: 170px; }
.sprint-col--wide { flex: 0 0 210px; min-width: 210px; }

.sprint-col__hd {
  font-family: var(--ff-h);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  margin-bottom: 0.75rem;
}

.sprint-col__hd--gold   { background: rgba(200,146,42,0.18);  color: var(--gold);   border-bottom: 2px solid var(--gold);   }
.sprint-col__hd--coral  { background: rgba(232,132,90,0.18);  color: var(--coral);  border-bottom: 2px solid var(--coral);  }
.sprint-col__hd--indigo { background: rgba(107,127,212,0.18); color: var(--indigo); border-bottom: 2px solid var(--indigo); }
.sprint-col__hd--green  { background: rgba(100,180,100,0.18); color: #7ac97a;       border-bottom: 2px solid #7ac97a;       }

.sprint-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }

.sprint-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-sm);
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(245,243,239,0.78);
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.sprint-card:last-child { margin-bottom: 0; }

.sprint-card--sm { padding: 0.5rem 0.625rem; font-size: 0.6875rem; margin-bottom: 0; }

.sprint-card--label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.45);
  background: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-bottom: 0;
}

/* ===========================
   IA
   =========================== */
.ia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.ia__badge {
  display: inline-block;
  background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.22);
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 1.125rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.ia__text h2 { margin-bottom: 1.5rem; }
.ia__content { display: flex; flex-direction: column; gap: 1.25rem; }
.ia__content p { color: rgba(28,25,23,0.72); }

/* Chat window */
.ia-chat {
  background: #1a1a1f;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.07);
}

.ia-chat__header {
  background: #141418;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ia-chat__nav { display: flex; gap: 6px; }

.ia-chat__nav span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.ia-chat__nav span:nth-child(1) { background: #ff5f57; }
.ia-chat__nav span:nth-child(2) { background: #febc2e; }
.ia-chat__nav span:nth-child(3) { background: #28c840; }

.ia-chat__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.ia-chat__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
}

.ia-chat__msg { display: flex; gap: 0.625rem; align-items: flex-start; }

.ia-chat__msg--user { flex-direction: row-reverse; }

.ia-chat__avatar {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.ia-chat__bubble {
  max-width: 80%;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.ia-chat__bubble--user {
  background: var(--gold);
  color: #fff;
  border-radius: 12px 12px 2px 12px;
}

.ia-chat__bubble--ai {
  background: rgba(255,255,255,0.07);
  color: rgba(245,243,239,0.85);
  border-radius: 12px 12px 12px 2px;
}

.ia-chat__bubble--ai p { margin-bottom: 0.5rem; line-height: 1.55; font-size: 0.8125rem; }
.ia-chat__bubble--ai p:last-of-type { margin-bottom: 0.625rem; }

.ia-chat__warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(232,132,90,0.18);
  border: 1px solid rgba(232,132,90,0.3);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1.4;
}

.ia-chat__warning svg { flex-shrink: 0; width: 14px; height: 14px; }

/* Typing dots */
.ia-chat__typing {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.ia-chat__dots {
  display: flex;
  gap: 4px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  border-radius: 12px 12px 12px 2px;
}

.ia-chat__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,243,239,0.4);
  animation: dotBounce 1.2s ease-in-out infinite;
}

.ia-chat__dots span:nth-child(2) { animation-delay: 0.2s; }
.ia-chat__dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
}

@media (max-width: 900px) {
  .ia__grid { grid-template-columns: 1fr; }
  .ia-chat { max-width: 480px; }
}

/* ===========================
   PARA QUEM
   =========================== */
.pq-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pq-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--r-lg);
}

.pq-card--sim {
  background: var(--cream);
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 40px rgba(200,146,42,0.08), 0 1px 0 rgba(28,25,23,0.06);
}

.pq-card--nao {
  background: var(--dark);
  border-top: 4px solid rgba(255,255,255,0.12);
}

.pq-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.pq-card__tag svg { width: 14px; height: 14px; }

.pq-card__tag--nao { color: rgba(245,243,239,0.4); }

.pq-card--sim h3 { color: var(--dark); margin-bottom: 1.5rem; }
.pq-card--nao h3 { color: rgba(245,243,239,0.85); margin-bottom: 1.5rem; }

.pq-card ul { display: flex; flex-direction: column; gap: 1rem; }

.pq-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.pq-card--sim li { color: var(--dark); }
.pq-card--nao li { color: rgba(245,243,239,0.65); }

.pq-li-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 4px;
  margin-top: 0.05em;
}

.pq-li-icon--check { background: var(--gold); color: #fff; }

.pq-li-icon--x { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.35); }

@media (max-width: 768px) { .pq-cards { grid-template-columns: 1fr; } }

/* ===========================
   INÍCIO
   =========================== */
.inicio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.inicio__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inicio__inner h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--dark); margin-top: 0.25rem; }
.inicio__inner p { color: rgba(28,25,23,0.72); }
.inicio__inner .btn { margin-top: 0.5rem; align-self: flex-start; }

.inicio__img-wrap { position: relative; }

.inicio__img-wrap::before {
  content: '';
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  opacity: 0.3;
  z-index: 0;
}

.inicio__foto {
  width: 100%;
  border-radius: var(--r-md);
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .inicio__grid { grid-template-columns: 1fr; }
  .inicio__img-wrap { max-width: 360px; order: -1; }
}

/* ===========================
   BÔNUS
   =========================== */
.bonus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.bonus__inner { display: flex; flex-direction: column; gap: 1.125rem; }

.bonus__inner h2 { color: var(--cream); margin-top: 0.25rem; }
.bonus__inner p { color: rgba(245,243,239,0.72); }

.bonus__dest {
  font-family: var(--ff-h) !important;
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  opacity: 1 !important;
}

/* Laptop mockup */
.bonus__mockup { display: flex; justify-content: center; }

.laptop {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
}

.laptop__screen {
  width: 100%;
  background: #151922;
  border-radius: 10px 10px 0 0;
  border: 6px solid #2a3347;
  border-bottom: 3px solid #1e2738;
  overflow: hidden;
}

.laptop__browser { background: #1a2030; }

.laptop__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #111620;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.laptop__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.laptop__dot:nth-child(1) { background: #ff5f57; }
.laptop__dot:nth-child(2) { background: #febc2e; }
.laptop__dot:nth-child(3) { background: #28c840; }

.laptop__url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--ff-b);
  margin: 0 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.laptop__site { padding: 10px; }

.laptop__hero-band {
  width: 100%;
  height: 44px;
  background: linear-gradient(120deg, #1c1917 0%, var(--dark) 60%, #2d3020 100%);
  border-radius: 4px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.laptop__hero-band::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 7px;
  background: rgba(200,146,42,0.55);
  border-radius: 3px;
}

.laptop__body { padding: 6px 0; }

.laptop__line { height: 7px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 5px; }
.laptop__line--h2 { width: 55%; height: 9px; background: rgba(255,255,255,0.16); }
.laptop__line--p { width: 82%; }
.laptop__line--short { width: 50%; }

.laptop__cards-row { display: flex; gap: 6px; margin-top: 9px; }

.laptop__card {
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.07);
}

.laptop__chin {
  width: 100%;
  height: 10px;
  background: #2a3347;
  border-radius: 0 0 3px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop__camera { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.12); }

.laptop__base {
  width: 115%;
  height: 12px;
  background: #3a4a62;
  border-radius: 0 0 6px 6px;
  margin-top: 2px;
  position: relative;
}

.laptop__foot {
  position: absolute;
  bottom: 0;
  left: 8%;
  width: 10%;
  height: 4px;
  background: #2a3347;
  border-radius: 0 0 4px 4px;
}

.laptop__foot--r { left: auto; right: 8%; }

@media (max-width: 900px) {
  .bonus__grid { grid-template-columns: 1fr; }
  .laptop { max-width: 300px; }
}

/* ===========================
   TRÊS CAMINHOS
   =========================== */
.caminhos__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.caminho {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: var(--r-md);
  border: 1px solid rgba(28,25,23,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

.caminho:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(28,25,23,0.1); }

.caminho--1, .caminho--2 { background: var(--alt); }
.caminho--3 { background: var(--dark); border-color: transparent; }

.caminho__num { font-family: var(--ff-h); font-size: 3rem; font-weight: 800; line-height: 1; color: rgba(28,25,23,0.12); }
.caminho--3 .caminho__num { color: rgba(200,146,42,0.35); }

.caminho h3 { color: var(--dark); }
.caminho--3 h3 { color: var(--cream); }

.caminho p { color: rgba(28,25,23,0.62); font-size: 0.9375rem; line-height: 1.7; flex: 1; }
.caminho--3 p { color: rgba(245,243,239,0.68); }

.caminho .btn { margin-top: 0.5rem; align-self: flex-start; }

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

/* ===========================
   FAQ
   =========================== */
.faq .section-header { text-align: center; margin: 0 auto clamp(2rem, 4vw, 3.5rem); }

.faq__list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(28,25,23,0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 2rem;
}

.faq__item { background: var(--cream); border-bottom: 1px solid rgba(28,25,23,0.08); }
.faq__item:last-child { border-bottom: none; }

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-b);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: background var(--ease);
}

.faq__btn:hover { background: rgba(28,25,23,0.03); }

.faq__icon {
  flex-shrink: 0;
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: transform var(--ease);
}

.faq__btn[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq__answer.open { grid-template-rows: 1fr; }

.faq__answer > div { overflow: hidden; }

.faq__answer p { padding: 0 1.75rem 1.5rem; color: rgba(28,25,23,0.68); }

/* ===========================
   CTA FINAL
   =========================== */
.cta-final { text-align: center; }

.cta-final__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.375rem;
}

.cta-final__inner h2 { color: var(--cream); }
.cta-final__inner p { color: rgba(245,243,239,0.7); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: #0f0d0c; padding: 2.5rem 0; }

.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; text-align: center; }

.footer__brand { font-family: var(--ff-h); font-size: 1.125rem; font-weight: 700; color: var(--cream); margin-bottom: 0.125rem; }

.footer__copy { font-size: 0.875rem; color: rgba(245,243,239,0.38); }

.footer__dev { font-size: 0.8125rem; color: rgba(245,243,239,0.3); }

.footer__dev a { color: var(--gold); transition: opacity var(--ease); }
.footer__dev a:hover { opacity: 0.75; }

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
/* ===== FIX MOBILE BUGS ===== */

html, body {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
}

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

/* HERO IMAGE */
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE AJUSTES */
@media (max-width: 768px) {

  /* imagem hero focada na esquerda */
  .hero__img {
    object-position: 80% center;
  }

  /* padding lateral geral */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* botão não colar na borda */
  .btn--lg {
    width: 100%;
  }

  /* evita quebra no quadro de sprint */
  .sprint-board {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

}
