/* ===========================================================
   AvetDigital — design system independente (sem dependências do Gamma)
   =========================================================== */

/* ---------- design tokens ---------- */
:root {
  --c-bg:        #ffffff;
  --c-bg-soft:   #f7f7fb;
  --c-bg-lav:    #ece7f4;        /* lavanda suave (resultados) */
  --c-text:      #0f172a;
  --c-text-soft: #475569;
  --c-text-mute: #64748b;
  --c-border:    #e5e7eb;
  --c-line-soft: #eef0f6;

  --c-dark-1:    #06091e;
  --c-dark-2:    #0a0f2b;
  --c-dark-3:    #141a45;
  --c-dark-soft: #1a214e;

  --c-brand:     #6f7cff;        /* indigo médio dos ícones */
  --c-brand-2:   #818cf8;
  --c-brand-3:   #4f46e5;
  --c-brand-pur: #6d28d9;        /* destaque "Maria Gabriela" */
  --c-brand-lite:#a8b1ff;

  --shadow-sm:   0 1px 2px rgba(15,23,42,.06);
  --shadow-md:   0 6px 24px rgba(15,23,42,.08);
  --shadow-card: 0 10px 30px rgba(15,23,42,.10);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --container:   1180px;

  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset enxuto ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- utilidades ---------- */
.container {
  width: min(var(--container), 100% - 40px);
  margin: 0 auto;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.section-title.centered { text-align: center; }
.section-title.light    { color: #ffffff; }
.section-lead {
  font-size: 17px;
  color: var(--c-text-soft);
  max-width: 900px;
  margin: 0 auto 40px;
}
.section-lead.centered { text-align: center; }
.section-lead.light    { color: #c8cdf0; }
.highlight   { color: var(--c-brand-pur); font-weight: 700; }
.highlight-soft { color: var(--c-brand-pur); font-weight: 600; }
.link-strong { color: var(--c-brand-3); font-weight: 600; border-bottom: 1px solid currentColor; }

/* tamanho default de ícones inline */
svg.i, .nav-main svg, .btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,9,30,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1c1340;
  padding: 6px;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-main a:not(.btn) {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: #ffffff;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background .2s, border-color .2s;
}
.nav-main a:not(.btn):hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm    { padding: 8px 16px; font-size: 14px; }
.btn-lg    { padding: 14px 28px; font-size: 16px; }
.btn-primary { background: var(--c-brand-3); color: #ffffff; }
.btn-primary:hover { background: #4338ca; box-shadow: 0 8px 22px rgba(79,70,229,.35); }
.btn-light   { background: #ffffff; color: var(--c-dark-2); }
.btn-light:hover { box-shadow: 0 8px 22px rgba(255,255,255,.2); }
.btn-outline { border-color: rgba(255,255,255,0.6); color: #ffffff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(99,102,241,0.30), transparent 60%),
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(124,58,237,0.34), transparent 65%),
    linear-gradient(180deg, #06091e 0%, #0a0f2b 60%, #0a0f2b 100%);
  color: #ffffff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 64px 0 80px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 56px; padding: 110px 0 130px; }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 26px;
}
.badge .i { width: 16px; height: 16px; color: var(--c-brand-lite); }
.hero-text h1 {
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #c8cdf0;
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 46% / 38%;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

/* ---------- sobre ---------- */
.sobre {
  background: #ffffff;
  padding: 90px 0;
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .sobre-inner { grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
}
.sobre-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.sobre-text .section-title { text-align: center; }
@media (min-width: 900px) {
  .sobre-text .section-title { text-align: left; }
}
.sobre-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #2a3146;
  margin: 0 0 18px;
}

/* ---------- por que sou diferente ---------- */
.diferente {
  background: #fafafc;
  padding: 90px 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 740px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
.diff-card {
  padding: 8px 0;
}
.diff-icon {
  width: 48px;
  height: 48px;
  color: var(--c-brand);
  margin-bottom: 18px;
  stroke-width: 1.5;
}
.diff-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--c-text);
}
.diff-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-text-soft);
  margin: 0;
}

/* ---------- seção escura genérica ---------- */
.dark-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(99,102,241,0.18), transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(124,58,237,0.18), transparent 65%),
    linear-gradient(180deg, #0a0f2b 0%, #06091e 50%, #0a0f2b 100%);
  color: #ffffff;
  padding: 100px 0;
}
.dark-section .section-title { text-align: center; }

/* ---------- missão ---------- */
.missao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) { .missao-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .missao-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.missao-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(122,134,255,0.22);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .2s, border-color .25s, background .25s;
}
.missao-card:hover {
  transform: translateY(-3px);
  background: rgba(99,102,241,0.10);
  border-color: rgba(168,177,255,0.5);
}
.missao-circle {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d6dff 0%, #a78bfa 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(124,124,255,0.40);
}
.missao-circle svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}
.missao-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: #ffffff;
}

/* ---------- desafios ---------- */
.desafios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 48px;
}
@media (min-width: 720px)  { .desafios-grid { grid-template-columns: 1fr 1fr; } }
.desafio-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(122,134,255,0.22);
  border-left: 4px solid var(--c-brand-2);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: transform .2s, background .25s, border-left-color .25s;
}
.desafio-card:hover {
  transform: translateX(2px);
  background: rgba(99,102,241,0.10);
  border-left-color: #ffffff;
}
.desafio-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
}
.desafio-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #c8cdf0;
  margin: 0;
}

/* ---------- resultados ---------- */
.resultados {
  background: linear-gradient(180deg, #e7e3f5 0%, #efeaf8 100%);
  padding: 100px 0;
}
.resultados-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .resultados-inner { grid-template-columns: 1.3fr 1fr; gap: 70px; }
}
.resultados-text p {
  font-size: 16.5px;
  color: #1f2540;
  line-height: 1.7;
  margin: 0 0 28px;
}
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 32px;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.stat-num {
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: var(--c-text);
  margin-bottom: 12px;
}
.stat-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 13.5px;
  color: #5a6075;
  line-height: 1.55;
}
.resultados-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 46% / 36%;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

/* ---------- SWOT ---------- */
.swot-diagram {
  position: relative;
  width: min(640px, 100%);
  margin: 80px auto 60px;
  aspect-ratio: 1 / 1;
}
.swot-cross {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.swot-axis {
  position: absolute;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}
.swot-top    { top: -36px;  left: 50%; transform: translateX(-50%); }
.swot-bottom { bottom: -36px; left: 50%; transform: translateX(-50%); }
.swot-left   { left: -8px;  top: 50%;  transform: translate(-100%, -50%); text-align: right; white-space: normal; line-height: 1.25; }
.swot-right  { right: -8px; top: 50%;  transform: translate(100%, -50%);  text-align: left;  white-space: normal; line-height: 1.25; }

.swot-cell {
  position: absolute;
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  text-align: center;
}
.q-tl { top: 0;    left: 0; }
.q-tr { top: 0;    right: 0; }
.q-bl { bottom: 0; left: 0; }
.q-br { bottom: 0; right: 0; }
.swot-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d6dff 0%, #a78bfa 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(124,124,255,0.40);
}
.swot-circle svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}
.swot-label {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.35;
}

/* responsividade SWOT: em telas estreitas vira lista */
@media (max-width: 640px) {
  .swot-diagram { aspect-ratio: auto; height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .swot-cross, .swot-axis { display: none; }
  .swot-cell {
    position: static;
    width: auto;
    height: auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(122,134,255,0.22);
    border-radius: var(--radius-md);
    padding: 22px 14px;
  }
}

/* ---------- investir ---------- */
.invest {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5fb 100%);
  padding: 100px 0;
}
.invest-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) {
  .invest-inner {
    grid-template-columns: 1.2fr 0.7fr 1fr;
    gap: 50px;
  }
}
.invest-text .section-title {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
}
.invest-text p {
  font-size: 16px;
  color: #2a3146;
  line-height: 1.7;
  margin: 0 0 14px;
}
.invest-stats {
  display: grid;
  gap: 36px;
  text-align: center;
}
.invest-num {
  font-size: clamp(46px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.invest-label {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.invest-stats p {
  font-size: 14px;
  color: #5a6075;
  margin: 0;
}
.invest-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 46% / 36%;
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
}

/* ---------- o que muda + testimonials ---------- */
.muda-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  margin: 0 0 56px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 880px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.testimonial-card {
  background: #ffffff;
  color: var(--c-text);
  border-radius: var(--radius-md);
  padding: 22px 22px 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  position: relative;
}
.t-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line-soft);
  margin-bottom: 14px;
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.t-name { font-weight: 700; color: var(--c-text); }
.t-body p {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 10px;
  color: #2a3146;
}
.t-foot {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--c-text-mute);
  text-align: right;
}
.audio-msg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #dcf8c6;
  border-radius: 14px;
  margin: 0 0 14px;
}
.audio-play { width: 32px; height: 32px; flex: none; }
.audio-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  height: 26px;
}
.audio-wave span {
  display: block;
  width: 3px;
  background: #25d366;
  border-radius: 2px;
  animation: wave 1.8s ease-in-out infinite;
}
.audio-wave span:nth-child(odd) { background: #128c7e; }
@keyframes wave {
  0%, 100% { height: 6px; }
  50%      { height: 22px; }
}
.audio-wave span:nth-child(1)  { animation-delay: 0.0s; }
.audio-wave span:nth-child(2)  { animation-delay: 0.05s; }
.audio-wave span:nth-child(3)  { animation-delay: 0.1s; }
.audio-wave span:nth-child(4)  { animation-delay: 0.15s; }
.audio-wave span:nth-child(5)  { animation-delay: 0.2s; }
.audio-wave span:nth-child(6)  { animation-delay: 0.25s; }
.audio-wave span:nth-child(7)  { animation-delay: 0.3s; }
.audio-wave span:nth-child(8)  { animation-delay: 0.35s; }
.audio-wave span:nth-child(9)  { animation-delay: 0.4s; }
.audio-wave span:nth-child(10) { animation-delay: 0.45s; }
.audio-wave span:nth-child(11) { animation-delay: 0.5s; }
.audio-wave span:nth-child(12) { animation-delay: 0.55s; }
.audio-wave span:nth-child(13) { animation-delay: 0.6s; }
.audio-wave span:nth-child(14) { animation-delay: 0.65s; }
.audio-wave span:nth-child(15) { animation-delay: 0.7s; }
.audio-wave span:nth-child(16) { animation-delay: 0.75s; }
.audio-wave span:nth-child(17) { animation-delay: 0.8s; }
.audio-wave span:nth-child(18) { animation-delay: 0.85s; }
.audio-wave span:nth-child(19) { animation-delay: 0.9s; }
.audio-wave span:nth-child(20) { animation-delay: 0.95s; }
.audio-wave span:nth-child(21) { animation-delay: 1.0s; }
.audio-wave span:nth-child(22) { animation-delay: 1.05s; }
.audio-wave span:nth-child(23) { animation-delay: 1.1s; }
.audio-wave span:nth-child(24) { animation-delay: 1.15s; }
.audio-wave span:nth-child(25) { animation-delay: 1.2s; }
.audio-wave span:nth-child(26) { animation-delay: 1.25s; }
.audio-wave span:nth-child(27) { animation-delay: 1.3s; }
.audio-wave span:nth-child(28) { animation-delay: 1.35s; }
.audio-wave span:nth-child(29) { animation-delay: 1.4s; }
.audio-wave span:nth-child(30) { animation-delay: 1.45s; }
.audio-time { font-size: 12.5px; color: #1f2540; font-weight: 600; }
.audio-summary { font-style: italic; color: #2a3146; }

/* ---------- contato ---------- */
.contato {
  background: linear-gradient(180deg, #ffffff 0%, #f5f3fb 100%);
  padding: 100px 0 110px;
  text-align: center;
}
.contato .section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
}
.contato-lead {
  font-size: 16.5px;
  color: #2a3146;
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 56px auto 40px;
  max-width: 980px;
}
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  text-align: left;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-brand-lite); }
.contact-card.contact-info { cursor: default; }
.contact-card.contact-info:hover { transform: none; box-shadow: none; border-color: var(--c-border); }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-wa { background: #25d366; color: #ffffff; }
.contact-ig { background: linear-gradient(135deg, #fdda5a 0%, #d62976 50%, #962fbf 100%); color: #ffffff; }
.contact-ok { background: #d6f0e0; color: #128c44; }
.contact-meta { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 12.5px; color: var(--c-text-mute); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.contact-value { font-size: 16px; font-weight: 700; color: var(--c-text); }
.contact-sub   { font-size: 13.5px; color: var(--c-text-soft); }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

/* ---------- footer ---------- */
.site-footer {
  background: #06091e;
  color: #c8cdf0;
  padding: 32px 0;
  text-align: center;
}
.footer-brand { font-weight: 600; margin: 0 0 8px; color: #ffffff; }
.footer-credits { margin: 0; font-size: 14px; color: #8c92b6; }

/* ---------- preferências de movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}
