/* =============================================
   AURA Growth Digital — style.css
   Paleta: roxo #7C4DDB → laranja #E8602C
   ============================================= */

:root {
  --bg: #F8F6F3;
  --cream: #EDEBE7;
  --ink: #1A1917;
  --muted: #6B6965;
  --border: rgba(26, 25, 23, .1);
  --white: #fff;
  --dark: #111110;
  --purple: #7C4DDB;
  --orange: #E8602C;
  --amber: #C4883F;
  --green: #25D366;
  --grad: linear-gradient(135deg, #7C4DDB 0%, #C4883F 55%, #E8602C 100%);
  --grad-text: linear-gradient(120deg, #7C4DDB, #E8602C);
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', sans-serif;
  --r: 4px;
  --max: 1160px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--bg); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* === UTILS === */
.w { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1rem, 5vw, 2.5rem); }
.sec { padding: clamp(4rem, 9vw, 7rem) 0; }
.label { font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; margin-bottom: .8rem; }
.label-c { color: var(--orange); }
.label-lt { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sh { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.sh h2 { font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.14; }
.sh p { color: var(--muted); margin-top: .75rem; font-size: .93rem; }
.gt { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* === REVEAL === */
section, .rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
section.on, .rv.on { opacity: 1; transform: translateY(0); }

/* === BOTÕES === */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .85rem 2rem; border-radius: var(--r);
  font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  transition: transform .18s, box-shadow .2s; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-grad { background: var(--grad); color: #fff; border: none; box-shadow: 0 4px 18px rgba(124,77,219,.25); }
.btn-grad:hover { box-shadow: 0 8px 30px rgba(124,77,219,.4); }
.btn-out { color: var(--ink); border: 1px solid var(--border); }
.btn-out:hover { border-color: var(--ink); }
.btn-wa { background: var(--green); color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1EBE5A; box-shadow: 0 8px 30px rgba(37,211,102,.45); }
.btn-wa svg { flex-shrink: 0; }

/* === HEADER === */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(248,246,243,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
#hdr.sc { box-shadow: 0 2px 24px rgba(0,0,0,.07); }
.nav-w {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
  height: 64px; display: flex; align-items: center; gap: 1.75rem;
}
.logo-img { height: 32px; width: auto; flex-shrink: 0; }
nav { display: flex; gap: 1.75rem; margin-left: auto; }
nav a { font-size: .83rem; color: var(--muted); transition: color .2s; }
nav a:hover, nav a.act { color: var(--orange); }
.btn-hn {
  display: inline-flex; align-items: center; padding: .5rem 1.3rem;
  background: var(--grad); color: #fff; border-radius: var(--r);
  font-size: .81rem; font-weight: 500; white-space: nowrap; flex-shrink: 0;
  transition: box-shadow .2s, transform .18s;
}
.btn-hn:hover { box-shadow: 0 4px 16px rgba(124,77,219,.35); transform: translateY(-1px); }
.ham { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 4px; }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.ham.op span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.op span:nth-child(2) { opacity: 0; }
.ham.op span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mob {
  display: none; flex-direction: column; background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem clamp(1rem, 5vw, 2.5rem); gap: 1rem; animation: sd .22s ease;
}
.mob.op { display: flex; }
.ml { font-size: 1rem; color: var(--muted); transition: color .2s; }
.ml:hover, .ml.hi { color: var(--orange); font-weight: 500; }
@keyframes sd { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* === HERO === */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  position: relative; padding: 8rem clamp(1rem, 5vw, 2.5rem) 4rem; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 10% 85%, rgba(124,77,219,.1) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 92% 12%, rgba(232,96,44,.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 55% 55%, rgba(196,136,63,.06) 0%, transparent 70%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(26,25,23,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(26,25,23,.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-c { position: relative; z-index: 1; max-width: 800px; }
.hero-ey { font-size: .7rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem; }
.hero-h { font-family: var(--font-d); font-size: clamp(3.4rem, 8vw, 7rem); font-weight: 300; line-height: 1.02; margin-bottom: 1.5rem; }
.hero-p { font-size: clamp(.95rem, 2vw, 1.12rem); color: var(--muted); max-width: 520px; margin: 0 auto 2.75rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badge { position: relative; z-index: 1; margin-top: 5rem; display: flex; align-items: center; gap: 1rem; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

/* === BAR === */
.bar { background: var(--dark); padding: 1.5rem 0; }
.bar-inner { display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap; padding: 0 clamp(1rem, 5vw, 2.5rem); }
.bar-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.bar-n { font-family: var(--font-d); font-size: 2rem; font-weight: 600; line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bar-l { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.bar-div { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* === SERVIÇOS === */
.srv { background: var(--cream); }
.srv-g {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px; background: rgba(0,0,0,.08); border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px; overflow: hidden;
}
.srv-c { background: var(--cream); padding: clamp(1.75rem, 4vw, 2.5rem); transition: background .2s; position: relative; overflow: hidden; }
.srv-c::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.srv-c:hover { background: var(--white); }
.srv-c:hover::before { transform: scaleX(1); }
.srv-ic { font-size: 1.5rem; margin-bottom: 1.1rem; line-height: 1; }
.srv-c h3 { font-family: var(--font-d); font-size: 1.22rem; font-weight: 400; margin-bottom: .6rem; }
.srv-c p { font-size: .87rem; color: var(--muted); line-height: 1.65; }
.srv-tag { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .6rem; font-weight: 500; }

/* === REDES SOCIAIS === */
.social-sec { background: var(--ink); }
.social-intro { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.social-intro h2 { font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: #fff; line-height: 1.14; }
.social-intro p { color: rgba(255,255,255,.55); margin-top: .75rem; font-size: .93rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.social-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
  transition: background .2s, transform .2s, border-color .2s;
  text-decoration: none; color: inherit;
}
.social-card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.social-card.ig:hover { border-color: #E1306C; }
.social-card.fb:hover { border-color: #1877F2; }
.social-card.li:hover { border-color: #0A66C2; }
.social-card.yt:hover { border-color: #FF0000; }
.social-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.social-icon svg { width: 24px; height: 24px; fill: #fff; }
.social-card.ig .social-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.fb .social-icon { background: #1877F2; }
.social-card.li .social-icon { background: #0A66C2; }
.social-card.yt .social-icon { background: #FF0000; }
.social-name { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .1rem; }
.social-handle { font-family: var(--font-d); font-size: 1.2rem; font-weight: 400; color: #fff; }
.social-desc { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.6; flex: 1; }
.social-action { font-size: .78rem; color: rgba(255,255,255,.3); display: flex; align-items: center; gap: .35rem; margin-top: auto; transition: color .2s; }
.social-card:hover .social-action { color: rgba(255,255,255,.7); }
.social-cta { text-align: center; }
.social-cta p { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 1.25rem; }

/* === ASSESSORIA === */
.asses { background: var(--dark); color: #fff; }
.asses-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.asses-t h2 { font-family: var(--font-d); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.14; margin-bottom: 1.25rem; }
.asses-t > p { color: rgba(255,255,255,.6); font-size: .93rem; line-height: 1.7; margin-bottom: 1.5rem; }
.asses-li { display: flex; flex-direction: column; gap: .75rem; }
.asses-li li { font-size: .9rem; color: rgba(255,255,255,.78); display: flex; align-items: flex-start; gap: .65rem; line-height: 1.55; }
.asses-li li span { color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
.asses-v { display: flex; flex-direction: column; gap: 1rem; }
.ac { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 1.5rem 2rem; position: relative; overflow: hidden; }
.ac::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--grad); }
.ac.hi { border-color: rgba(124,77,219,.4); background: rgba(124,77,219,.08); }
.ac-n { font-family: var(--font-d); font-size: 2.5rem; font-weight: 600; line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ac span:last-child { font-size: .82rem; color: rgba(255,255,255,.5); display: block; margin-top: .3rem; }

/* === CASES === */
.cases-g { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 3rem; }
.case-c {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: clamp(1.75rem, 4vw, 2.5rem); display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow .25s, transform .25s; position: relative; overflow: hidden;
}
.case-c::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.case-c:hover { box-shadow: 0 10px 44px rgba(0,0,0,.09); transform: translateY(-4px); }
.case-c:hover::after { transform: scaleX(1); }
.case-tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); }
.case-nm { font-family: var(--font-d); font-size: 1.55rem; font-weight: 400; }
.case-d { font-size: .87rem; color: var(--muted); line-height: 1.65; flex: 1; }
.case-m { display: flex; gap: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.met { display: flex; flex-direction: column; }
.met-n { font-family: var(--font-d); font-size: 1.45rem; font-weight: 600; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.met-l { font-size: .7rem; color: var(--muted); margin-top: .2rem; }
.cases-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.cases-cta p { font-family: var(--font-d); font-size: 1.3rem; font-weight: 300; color: var(--muted); }

/* === FAQ === */
.faq-l { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }
.faq-i { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); transition: box-shadow .2s; }
.faq-i.op { box-shadow: 0 4px 20px rgba(0,0,0,.07); border-color: rgba(124,77,219,.2); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; font-size: .93rem; font-weight: 500; background: none; transition: color .2s; }
.faq-q:hover { color: var(--orange); }
.faq-ic { font-size: 1.5rem; font-weight: 300; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; transition: transform .3s; flex-shrink: 0; line-height: 1; }
.faq-i.op .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { font-size: .88rem; color: var(--muted); line-height: 1.75; padding: 0 1.5rem 1.25rem; }
.faq-i.op .faq-a { max-height: 320px; }

/* === CTA FINAL === */
.cta-s { background: var(--ink); position: relative; overflow: hidden; }
.cta-s::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,77,219,.12) 0%, transparent 70%); }
.cta-b { text-align: center; max-width: 580px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; position: relative; z-index: 1; }
.cta-b h2 { font-family: var(--font-d); font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 300; color: #fff; }
.cta-b > p { font-size: .93rem; color: rgba(255,255,255,.55); max-width: 420px; line-height: 1.7; }
.wa-n { font-size: .78rem; color: rgba(255,255,255,.3); letter-spacing: .07em; }

/* === FOOTER === */
footer { background: #0D0C0B; color: rgba(255,255,255,.45); }
.foot-in { display: flex; flex-wrap: wrap; gap: 2.5rem; padding: 3rem 0; justify-content: space-between; align-items: flex-start; }
.foot-logo { height: 28px; width: auto; margin-bottom: .65rem; opacity: .85; filter: brightness(1.2); }
.foot-brand p { font-size: .8rem; line-height: 1.6; }
.foot-cnpj { margin-top: .65rem; font-size: .74rem; color: rgba(255,255,255,.25); padding: .35rem .75rem; border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); display: inline-block; letter-spacing: .04em; }
.foot-links { display: flex; flex-direction: column; gap: .65rem; }
.foot-links a { font-size: .83rem; transition: color .2s; }
.foot-links a:hover { color: #fff; }
.foot-social-links { display: flex; gap: .75rem; margin-top: .5rem; }
.foot-social-links a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.foot-social-links a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.foot-social-links svg { width: 16px; height: 16px; fill: rgba(255,255,255,.6); }
.foot-con { display: flex; flex-direction: column; gap: .5rem; }
.foot-con p { font-size: .78rem; }
.foot-con a { font-size: .88rem; color: var(--green); transition: opacity .2s; }
.foot-con a:hover { opacity: .75; }
.foot-bot { border-top: 1px solid rgba(255,255,255,.05); padding: 1.25rem clamp(1rem, 5vw, 2.5rem); text-align: center; font-size: .72rem; }

/* === FLOAT WA === */
.waf {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 300;
  width: 54px; height: 54px; background: var(--green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: transform .2s, box-shadow .2s;
  animation: pu 2.5s ease-in-out infinite;
}
.waf:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.7); animation: none; }
@keyframes pu { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); } 50% { box-shadow: 0 4px 36px rgba(37,211,102,.85); } }

/* === RESPONSIVO === */
@media (max-width: 768px) {
  nav, .btn-hn { display: none; }
  .ham { display: flex; }
  .asses-in { grid-template-columns: 1fr; }
  .asses-v { flex-direction: row; flex-wrap: wrap; }
  .ac { flex: 1 1 140px; }
  .cases-g, .srv-g, .social-grid { grid-template-columns: 1fr; }
  .bar-div { display: none; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .foot-in { flex-direction: column; gap: 2rem; }
}