/* ── DESIGN TOKENS ── */
:root {
  --navy:      #071e33;
  --navy-mid:  #0a2d4a;
  --navy-soft: #0f3558;
  --lime:      #dcef86;
  --lime-deep: #b8cc5a;
  --text:      #f0f6fb;
  --muted:     #9ab8cc;
  --card-bg:   rgba(255,255,255,0.055);
  --card-bd:   rgba(220,239,134,0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.35);
  --shadow-md: 0 10px 32px rgba(0,0,0,0.22);
  --max-w:     1180px;
  --transition: 180ms ease;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: "Montserrat", sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(220,239,134,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 60%, rgba(10,45,74,0.8) 0%, transparent 60%);
}

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

/* ── LAYOUT ── */
.container {
  width: min(calc(100% - 40px), var(--max-w));
  margin: 0 auto;
}

section { padding: 80px 0; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-small {
  display: block;
  color: var(--lime);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 900; line-height: 1.0; }
h2 { font-size: clamp(1.7rem, 3.2vw, 3.2rem); font-weight: 800; line-height: 1.1; }
h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }

.section-header {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-header h2 { margin-top: 0; }

p { color: var(--muted); line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--lime) 0%, #eef8aa 100%);
  color: #091f31;
  box-shadow: 0 16px 40px rgba(220,239,134,0.3);
}
.btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(220,239,134,0.4); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.btn-outline:hover  { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(220,239,134,0.35);
  background: rgba(220,239,134,0.06);
  color: var(--lime);
}
.btn-ghost:hover    { background: rgba(220,239,134,0.12); transform: translateY(-2px); }
.btn-large { height: 60px; padding: 0 36px; font-size: 1.05rem; }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-4px); }
.card h3 { color: var(--text); margin-bottom: 10px; }

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.card-numbered { position: relative; }
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(220,239,134,0.2), rgba(220,239,134,0.05));
  color: var(--lime);
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ── TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,30,51,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(220,239,134,0.1);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-lockup img { border-radius: 0; background: transparent; }
.brand-name {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--text);
}
.brand-name-sm { font-size: 1rem; letter-spacing: 0.2em; }
.topbar-nav {
  display: flex;
  gap: 28px;
}
.topbar-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
}
.topbar-nav a:hover { color: var(--lime); }

/* ── HERO ── */
.hero {
  padding: 80px 0 60px;
  background-image: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(220,239,134,0.07), transparent 65%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-copy h1 { color: var(--text); margin: 8px 0 20px; }
.hero-sub { font-size: 1.05rem; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.trust-pills li {
  padding: 8px 16px;
  border: 1px solid rgba(220,239,134,0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d0e4ee;
  background: rgba(255,255,255,0.04);
}

/* Founder card */
.founder-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.founder-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-info { padding: 24px; }
.card-kicker {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.founder-name { font-size: 1.7rem; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.founder-bio { font-size: 0.9rem; margin-bottom: 18px; }
.founder-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-item {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item strong { display: block; color: var(--lime); font-size: 1.1rem; margin-bottom: 2px; }
.stat-item span { font-size: 0.82rem; color: var(--muted); }

/* ── PAIN SECTION ── */
.pain-section { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); }

/* ── OFFER BANNER ── */
.offer-banner {
  background: linear-gradient(135deg, rgba(220,239,134,0.1) 0%, rgba(220,239,134,0.04) 100%);
  border-top: 1px solid rgba(220,239,134,0.15);
  border-bottom: 1px solid rgba(220,239,134,0.15);
  padding: 56px 0;
}
.offer-banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.offer-banner h2 { color: var(--text); margin-top: 8px; }
.offer-desc { font-size: 1rem; }

/* ── SERVICES ── */
.services-section { background: var(--navy-mid); }

/* ── ABOUT ── */
.about-section {
  background: var(--navy);
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.about-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-bd);
}
.about-photo {
  width: 100%;
  object-fit: cover;
  display: block;
}
.cnpj-badge {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}
.cnpj-badge p { font-size: 0.72rem; color: var(--lime); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.cnpj-badge strong { display: block; font-size: 0.8rem; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.cnpj-badge span { font-size: 0.78rem; color: var(--muted); }
.about-copy h2 { color: var(--text); margin: 8px 0 20px; }
.about-text { margin-bottom: 16px; font-size: 0.97rem; }
.authority-pillars { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.pillar { padding: 18px 20px; background: var(--card-bg); border: 1px solid var(--card-bd); border-radius: var(--radius-md); }
.pillar strong { display: block; color: var(--lime); font-size: 0.95rem; margin-bottom: 6px; }
.pillar p { font-size: 0.88rem; margin: 0; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.testimonial-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-xl);
  padding: 48px 48px 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}
.quote-mark {
  position: absolute;
  top: 20px;
  left: 36px;
  font-size: 6rem;
  line-height: 1;
  color: var(--lime);
  opacity: 0.35;
  font-family: Georgia, serif;
  pointer-events: none;
}
blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 28px;
  padding-top: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: #091f31;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--text); font-size: 1rem; }
.testimonial-author span  { font-size: 0.84rem; color: var(--muted); }

/* ── PROCESS ── */
.process-section { background: var(--navy); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(220,239,134,0.22), rgba(220,239,134,0.05));
  color: var(--lime);
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 18px;
}
.step-card h3 { color: var(--text); margin-bottom: 10px; font-size: 1.05rem; }

/* ── MINDSET ── */
.mindset-section { background: var(--navy-mid); padding: 72px 0; }
.mindset-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}
.mindset-left h2 { color: var(--text); margin-top: 8px; }
.mindset-right p { margin-bottom: 16px; font-size: 1rem; }
.mindset-right p:last-child { margin-bottom: 0; }

/* ── FAQ ── */
.faq-section { background: var(--navy); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.faq-card:hover { transform: translateY(-4px); }
.faq-card h3 { color: var(--lime); font-size: 1rem; margin-bottom: 10px; }
.faq-card p { font-size: 0.93rem; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, rgba(220,239,134,0.1) 0%, rgba(220,239,134,0.03) 100%);
  border-top: 1px solid rgba(220,239,134,0.18);
}
.final-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.final-cta-copy h2 { color: var(--text); margin: 8px 0 16px; }
.final-cta-copy p { font-size: 1rem; }
.final-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 6px; }
.contact-info p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ── FOOTER ── */
.footer {
  background: #050f1a;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime);
  opacity: 0.8;
}
.footer-link:hover { opacity: 1; }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1060px) {
  .grid-4,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-banner-inner { grid-template-columns: 1fr; gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 420px; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 780px) {
  /* Container mais estreito */
  .container { width: min(calc(100% - 24px), var(--max-w)); }

  section { padding: 48px 0; }

  /* Topbar compacto */
  .topbar-nav { display: none; }
  .topbar-inner { padding: 12px 0; gap: 10px; }
  .brand-lockup img { width: 42px; height: 42px; }
  .eyebrow-small { display: none; }         /* esconde "Assessoria de marketing digital" */
  .brand-name { font-size: 1.1rem; letter-spacing: 0.18em; }
  .btn-ghost { padding: 0 16px; font-size: 0.82rem; height: 44px; }

  /* Hero empilhado */
  .hero { padding: 40px 0 32px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-pills li { font-size: 0.82rem; padding: 7px 14px; }

  /* Founder card: foto mostra o rosto inteiro */
  .founder-photo-wrap { aspect-ratio: 4/3; }
  .founder-photo { object-position: center 15%; }

  /* Grids colapsam para 1 coluna */
  .grid-4,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Offer banner */
  .offer-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* About section */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo-wrap { max-width: 100%; }
  .about-photo { max-height: 320px; object-fit: cover; object-position: center 20%; }

  /* Testimonial */
  .testimonial-card { padding: 40px 20px 28px; }
  .quote-mark { font-size: 4.5rem; top: 12px; left: 16px; }
  blockquote { font-size: 0.97rem; padding-top: 20px; }

  /* Mindset */
  .mindset-section { padding: 48px 0; }
  .mindset-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
  }

  /* Final CTA */
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .final-cta-panel { width: 100%; align-items: stretch; }
  .btn-large { width: 100%; justify-content: center; }
  .contact-info p { font-size: 0.85rem; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }

  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── RESPONSIVE: SMALL PHONE ── */
@media (max-width: 420px) {
  .container { width: min(calc(100% - 20px), var(--max-w)); }
  .hero-copy h1 { font-size: 2rem; }
  .card { padding: 20px; }
  .step-card { padding: 20px; }
  .faq-card { padding: 20px; }
  .founder-info { padding: 18px; }
  .cnpj-badge { padding: 12px 14px; }
  .cnpj-badge strong { font-size: 0.72rem; }
  .topbar-inner { gap: 8px; }
  .brand-name { font-size: 1rem; }
}

/* ── MOBILE: sem efeito hover (touch) ── */
@media (hover: none) {
  .card:hover,
  .step-card:hover,
  .faq-card:hover { transform: none; box-shadow: var(--shadow-md); }
  .btn:hover { transform: none; }
}

/* ── SAFE AREA (iPhone notch/home bar) ── */
@supports (padding: max(0px)) {
  .topbar {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}
