/* ==========================================================================
   GC TEAM — Gabriel Carlos Consultoria
   ========================================================================== */

:root {
  --bg:        #0d0d0f;
  --bg-alt:    #141417;
  --surface:   #1a1a1e;
  --surface-2: #202026;
  --line:      #2c2c33;

  --text:      #f2f0ee;
  --text-dim:  #a9a6a2;

  --brand:     #8b0e28;   /* vinho do material da GC Team */
  --brand-2:   #c8102e;   /* vermelho de destaque */
  --brand-3:   #e63548;   /* hover */
  --wa:        #25d366;

  --radius:    14px;
  --radius-sm: 10px;
  --max:       1180px;
  --shadow:    0 18px 45px rgba(0, 0, 0, .45);

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, .plan-price, .num, .strip-item strong {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

.hl { color: var(--brand-2); }
.muted { color: var(--text-dim); }
.center { text-align: center; margin-top: 40px; }

.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.container.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand-2); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--brand-3); outline-offset: 3px; border-radius: 4px; }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand-2); color: #fff; box-shadow: 0 10px 26px rgba(200, 16, 46, .32); }
.btn-primary:hover { background: var(--brand-3); }
.btn-outline { border-color: var(--brand-2); color: var(--text); }
.btn-outline:hover { background: var(--brand-2); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--text-dim); }
.btn-ghost:hover { border-color: var(--text-dim); color: var(--text); }
.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn.block { display: flex; width: 100%; margin-top: auto; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 13, 15, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(0, 0, 0, .5); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 20px; letter-spacing: 2px; }
.brand-text small { font-size: 10px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--text-dim); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: .6px; text-transform: uppercase; color: var(--text-dim);
  transition: color .2s ease;
}
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav .nav-cta {
  background: var(--brand-2); color: #fff;
  padding: 11px 20px; border-radius: 999px; font-family: var(--font-head);
}
.nav .nav-cta:hover { background: var(--brand-3); color: #fff; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 70px;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(139, 14, 40, .5), transparent 62%),
    radial-gradient(700px 480px at 8% 82%, rgba(200, 16, 46, .16), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.7rem); margin-bottom: 22px; }
.lead { font-size: 1.12rem; color: var(--text-dim); max-width: 56ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }

.hero-note {
  font-size: .95rem; color: var(--text-dim);
  border-left: 3px solid var(--brand-2); padding-left: 14px; margin: 0; max-width: 48ch;
}

.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--brand); border-radius: var(--radius); z-index: 0;
}
.hero-media img {
  position: relative; z-index: 1;
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; object-fit: cover;
}

/* ============ FAIXA DE SELOS ============ */
.strip { background: var(--brand); border-block: 1px solid rgba(255, 255, 255, .08); }
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 30px 0; text-align: center;
}
.strip-item strong { display: block; font-size: 1.5rem; margin-bottom: 4px; color: #fff; }
.strip-item span { font-size: .9rem; color: rgba(255, 255, 255, .8); line-height: 1.4; display: block; }

/* ============ SEÇÕES ============ */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }

.section-title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); text-align: center; margin-bottom: 14px; }
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--text-dim); max-width: 62ch; margin: 0 auto 48px; }
.section-title + .cards-3,
.section-title + .numbered,
.section-title + .results,
.section-title + .split,
.section-title + .tabs { margin-top: 48px; }

/* ============ CARDS ============ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--brand); }
.card h3 { font-size: 1.25rem; color: var(--brand-2); }
.card p { color: var(--text-dim); margin: 0; }

/* ============ LISTA NUMERADA ============ */
.numbered { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.numbered li { display: flex; gap: 20px; align-items: flex-start; }
.numbered .num {
  flex: 0 0 auto;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
  color: #fff; font-size: 1.35rem; margin: 0;
}
.numbered h3 { font-size: 1.15rem; margin-bottom: .35em; }
.numbered p { color: var(--text-dim); margin: 0; }

/* ============ SPLIT (texto + imagem) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split + .split { margin-top: 90px; }
.split.reverse .split-media { order: 2; }

.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-media.grid-media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.split-media.grid-media img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.split-media.grid-media img { aspect-ratio: 3 / 4; }

.split-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.split-copy p { color: var(--text-dim); }
.local {
  display: inline-block;
  background: rgba(200, 16, 46, .14); border: 1px solid var(--brand);
  color: var(--text) !important; border-radius: 999px;
  padding: 5px 15px; font-size: .82rem; font-weight: 600;
  letter-spacing: .6px; text-transform: uppercase; margin-bottom: 18px;
}

.ticks { list-style: none; margin: 20px 0 0; padding: 0; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--text-dim); }
.ticks li::before {
  content: ""; position: absolute; left: 6px; top: .55em;
  width: 8px; height: 14px;
  border: solid var(--brand-2); border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) translateY(-4px);
}

.orientacoes { margin-top: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; background: var(--surface); }
.orientacoes summary { cursor: pointer; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .8px; font-size: .95rem; }
.orientacoes[open] summary { color: var(--brand-2); margin-bottom: 10px; }
.orientacoes .ticks { margin-top: 8px; }

/* ============ RESULTADOS ============ */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.result { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); }
.ba-item { position: relative; background: #000; }
.ba-item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.ba-item span {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(0, 0, 0, .72); color: #fff;
  font-family: var(--font-head); font-size: 11px; letter-spacing: 1.4px;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.ba-item span.after { background: var(--brand-2); }
.result figcaption { padding: 16px 18px; font-size: .92rem; color: var(--text-dim); }

.disclaimer { margin-top: 34px; text-align: center; font-size: .82rem; color: #7c7975; max-width: 70ch; margin-inline: auto; }

/* ============ PLANOS ============ */
.tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.tab {
  background: var(--surface); border: 1px solid var(--line); color: var(--text-dim);
  padding: 13px 28px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-head); font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  transition: all .2s ease;
}
.tab:hover { color: var(--text); border-color: var(--text-dim); }
.tab.is-active { background: var(--brand-2); border-color: var(--brand-2); color: #fff; }

.panel.is-hidden { display: none; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 30px 32px;
}
.plan.featured { border-color: var(--brand-2); box-shadow: 0 0 0 1px var(--brand-2), var(--shadow); }
.plan .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-2); color: #fff;
  font-family: var(--font-head); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 1.3rem; }
.plan-price { font-size: 2.3rem; color: var(--text); margin: 12px 0 2px; }
.plan-price small { display: block; font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; }
.plan-sub { color: var(--text-dim); font-size: .95rem; margin-bottom: 20px; }
.plan-sub strong { color: var(--text); }
.plan .ticks { margin-bottom: 28px; }
.plan .ticks li { font-size: .95rem; }
.plan-alt {
  display: block; text-align: center; margin-top: 14px;
  font-size: .88rem; color: var(--text-dim); text-decoration: none;
  border-bottom: 1px solid transparent; align-self: center;
  transition: color .2s ease, border-color .2s ease;
}
.plan-alt:hover { color: var(--brand-2); border-color: var(--brand-2); }

/* Tabela de personal */
.pricing-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pt-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px; align-items: center;
  padding: 18px 24px; border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.pt-row:last-child { border-bottom: 0; }
.pt-row:nth-child(even) { background: var(--surface-2); }
.pt-head {
  background: var(--brand) !important;
  font-family: var(--font-head); font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: #fff;
}
.pt-price { font-family: var(--font-head); font-size: 1.35rem; color: var(--brand-2); }
.pt-head .pt-price { color: #fff; }
.pt-hour { color: var(--text-dim); font-size: .9rem; }

.notes { margin-top: 26px; padding: 22px 26px; background: var(--surface); border-left: 3px solid var(--brand-2); border-radius: var(--radius-sm); }
.notes p { color: var(--text-dim); margin: 0 0 8px; font-size: .95rem; }
.notes p:last-child { margin: 0; }
.notes strong { color: var(--text); }

/* ============ CTA ============ */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background:
    linear-gradient(rgba(13, 13, 15, .62), rgba(13, 13, 15, .88)),
    url("../img/gabriel-costas.jpg") center 20% / cover no-repeat fixed;
}
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-band p { color: var(--text-dim); max-width: 56ch; margin: 0 auto 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn-ghost { border-color: rgba(255, 255, 255, .32); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

/* ============ FAQ ============ */
.faq {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 54px 20px 24px; position: relative;
  font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; line-height: 1; color: var(--brand-2); transition: transform .2s ease;
}
.faq[open] summary::after { content: "−"; }
.faq[open] summary { color: var(--brand-2); }
.faq p { padding: 0 24px 22px; margin: 0; color: var(--text-dim); }
.faq a { color: var(--brand-2); }

/* ============ FOOTER ============ */
.site-footer { background: #08080a; border-top: 1px solid var(--line); padding: 60px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 66px; height: 66px; object-fit: contain; }
.footer-brand p { margin: 0; color: var(--text-dim); font-size: .92rem; }
.footer-brand strong { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: 2px; color: var(--text); }

.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { text-decoration: none; color: var(--text-dim); font-size: .93rem; }
.footer-nav a:hover { color: var(--brand-2); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.social { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-dim); font-size: .95rem; }
.social:hover { color: var(--brand-2); }
.social svg { flex: 0 0 auto; }
.social em {
  font-style: normal; font-size: .74rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: #6f6c69; margin-left: 6px;
}

.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); text-align: center; }
.footer-bottom p { color: #6f6c69; font-size: .85rem; margin: 0 0 6px; }
.footer-bottom .fine { font-size: .78rem; }

/* ============ WHATSAPP FLUTUANTE ============ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ============ RESPONSIVO ============ */
@media (max-width: 980px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
    padding: 10px 20px 26px;
    transform: translateY(-140%); transition: transform .28s ease;
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav .nav-cta { text-align: center; margin-top: 18px; border-bottom: 0; }
  .nav-toggle { display: flex; }

  .hero { padding: 56px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-media::before { inset: 14px -14px -14px 14px; }

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

  .section { padding: 68px 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .numbered { grid-template-columns: 1fr; gap: 26px; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split + .split { margin-top: 64px; }
  .split.reverse .split-media { order: 0; }
  .split-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .split-media.grid-media { max-width: 100%; }
  .section-title.left { text-align: center; }

  .results { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan.featured { order: -1; }

  .cta-band { background-attachment: scroll; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
  .footer-contact { align-items: center; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 18px; padding: 24px 0; }
  .results { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }

  .pt-row { grid-template-columns: 1fr auto; gap: 4px 12px; padding: 16px 18px; }
  .pt-head { display: none; }
  .pt-hour { grid-column: 1 / -1; text-align: right; font-size: .82rem; }

  .faq summary { font-size: .98rem; padding: 18px 46px 18px 18px; }
  .faq p { padding: 0 18px 18px; }
}

@media print {
  .site-header, .wa-float, .hero-actions, .cta-band, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}
