/*
Theme Name:  Adkira QV
Theme URI:   https://adkiraqv.com.br
Description: Tema customizado para a Adkira — Gestão de Qualidade de Vida Corporativa
Author:      Adkira
Version:     1.0.6
License:     Proprietary
Text Domain: adkira
*/

:root {
  --navy:      #0D1B3E;
  --navy-mid:  #142454;
  --navy-light:#1e3470;
  --green:     #3EC97A;
  --green-dim: #2aa863;
  --white:     #F8F9FA;
  --off:       #EDF0F7;
  --text:      #0D1B3E;
  --muted:     #5A6A8A;
  --border:    rgba(13,27,62,0.10);
  --accent:    #E8F9EF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Luckiest Guy', sans-serif; font-weight: 400 !important; }

/* ── BRAND INTRO ── */
.brand-intro {
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 96px 5vw 40px; text-align: center;
}
.brand-intro-logo { height: 80px; width: auto; object-fit: contain; }
.brand-intro-name {
  font-family: 'Luckiest Guy', sans-serif; font-weight: 800; font-size: 24px;
  color: #fff; letter-spacing: 6px; line-height: 1;
}
.brand-intro-sub {
  font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 16px;
  color: rgba(255,255,255,0.65); letter-spacing: 1.5px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: rgba(13,27,62,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: height .3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  height: 36px; width: 70px; display: block; object-fit: contain;
  background: #0d1b3e;
}
.nav-logo-text { font-family: 'Luckiest Guy', sans-serif; font-weight: 700; font-size: 20px; color: #fff; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.72); text-decoration: none;
  font-size: 13.5px; font-weight: 400; padding: 6px 12px;
  border-radius: 6px; transition: all .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta { background: var(--green) !important; color: var(--navy) !important; font-weight: 600 !important; padding: 7px 18px !important; }
.nav-cta:hover { background: #51d98a !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 5vw 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(62,201,122,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(62,201,122,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(62,201,122,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(62,201,122,0.12); border: 1px solid rgba(62,201,122,0.25);
  border-radius: 100px; padding: 5px 14px 5px 8px; margin-bottom: 28px;
}
.hero-tag-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }
.hero-tag span { font-size: 12px; font-weight: 500; color: var(--green); letter-spacing: .8px; text-transform: uppercase; }
.hero-title { font-size: clamp(40px,5vw,66px); font-weight: 800; line-height: 1.05; color: #fff; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--green); }
.hero-desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.62); max-width: 480px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: var(--navy); font-family: 'Luckiest Guy', sans-serif;
  font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer; transition: all .2s; letter-spacing: .2px;
}
.btn-primary:hover { background: #51d98a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(62,201,122,0.35); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.85); font-family: 'Luckiest Guy', sans-serif;
  font-weight: 600; font-size: 15px; padding: 13px 28px; border-radius: 10px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-num { font-family: 'Luckiest Guy', sans-serif; font-size: 30px; font-weight: 800; color: var(--green); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.40); margin-top: 4px; letter-spacing: .5px; text-transform: uppercase; }
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all .3s; animation: floatIn .6s ease both;
}
.service-card:nth-child(2),.service-card:nth-child(4) { margin-left: 24px; }
.service-card:nth-child(1){animation-delay:.15s}
.service-card:nth-child(2){animation-delay:.25s}
.service-card:nth-child(3){animation-delay:.35s}
.service-card:nth-child(4){animation-delay:.45s}
@keyframes floatIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.service-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(62,201,122,0.25); transform: translateX(-4px); }
.sc-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(62,201,122,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.sc-title { font-family: 'Luckiest Guy', sans-serif; font-weight: 600; font-size: 14px; color: #fff; }
.sc-desc { font-size: 12px; color: rgba(255,255,255,0.42); margin-top: 2px; }

/* ── SECTIONS ── */
section { padding: 90px 5vw; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green-dim); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(28px,3.5vw,44px); font-weight: 800; line-height: 1.1; letter-spacing: -.8px; color: var(--navy); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 600px; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-subtitle { max-width: 100%; margin-bottom: 28px; }
.about-highlights { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.highlight-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--off); border-radius: 12px; border-left: 3px solid var(--green); }
.hi-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.hi-title { font-family: 'Luckiest Guy', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.hi-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.about-image-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: 20px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a4a8a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  overflow: hidden;
}
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder .big-icon { font-size: 80px; opacity: .25; }
.about-img-placeholder p { font-size: 13px; color: rgba(255,255,255,0.25); }
.about-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 12px 40px rgba(13,27,62,0.25);
}
.badge-num { font-family: 'Luckiest Guy', sans-serif; font-size: 26px; font-weight: 800; color: var(--green); line-height: 1; }
.badge-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }
.badge-label { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 3px; }

/* ── SERVICES ── */
.services { background: var(--off); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 30px 26px; transition: all .3s; position: relative; overflow: hidden; cursor: pointer;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.svc-card:hover { border-color: rgba(62,201,122,0.28); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,27,62,0.09); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.featured { background: var(--navy); border-color: transparent; }
.svc-card.featured .svc-title { color: #fff; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.52); }
.svc-card.featured .svc-tag { background: rgba(62,201,122,0.14); color: var(--green); }
.svc-card.featured .svc-arrow { background: rgba(255,255,255,0.08); color: #fff; }
.svc-card.featured:hover .svc-arrow { background: var(--green); color: var(--navy); }
.svc-icon-wrap { width: 50px; height: 50px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.svc-card.featured .svc-icon-wrap { background: rgba(62,201,122,0.14); }
.svc-title { font-family: 'Luckiest Guy', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-desc { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 18px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag { font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 100px; background: var(--off); color: var(--muted); }
.svc-arrow { position: absolute; top: 26px; right: 26px; width: 26px; height: 26px; border-radius: 50%; background: var(--off); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all .2s; }
.svc-card:hover .svc-arrow { background: var(--green); color: var(--navy); }

/* ── SER 360 ── */
.ser360 { background: var(--navy); padding: 90px 5vw; }
.ser360-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ser360 .section-title { color: #fff; }
.ser360 .section-subtitle { color: rgba(255,255,255,0.58); }
.ser360 .section-label { color: var(--green); }
.steps-list { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.step-item { display: flex; gap: 14px; align-items: center; padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; transition: all .2s; }
.step-item:hover { background: rgba(62,201,122,0.07); border-color: rgba(62,201,122,0.2); }
.step-num { width: 28px; height: 28px; flex-shrink: 0; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Luckiest Guy', sans-serif; font-size: 13px; font-weight: 800; color: var(--navy); }
.step-text { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.5; }
.step-text strong { color: #fff; }
.ser360-team { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.team-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 13px 16px; font-size: 13px; color: rgba(255,255,255,0.68); display: flex; align-items: center; gap: 10px; }
.team-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── CLIENTS ── */
.clients { background: var(--white); }
.clients-header { text-align: center; margin-bottom: 52px; }
.clients-track-wrap { overflow: hidden; position: relative; }
.clients-track-wrap::before,.clients-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; }
.clients-track-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.clients-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.clients-track { display: flex; gap: 0; animation: scroll 32s linear infinite; width: max-content; }
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.client-logo { padding: 16px 36px; border-right: 1px solid var(--border); display: flex; align-items: center; justify-content: center; min-width: 160px; opacity: .40; transition: opacity .2s; font-family: 'Luckiest Guy', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); }
.client-logo:hover { opacity: .75; }
.client-logo img { height: 36px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(1); }

/* ── DIFFERENTIALS ── */
.differentials { background: var(--off); }
.diff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 52px; }
.diff-card { padding: 28px 24px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; transition: all .3s; }
.diff-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,27,62,0.09); border-color: rgba(62,201,122,0.25); }
.diff-num { font-family: 'Luckiest Guy', sans-serif; font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.diff-num sup { font-size: 22px; color: var(--green); vertical-align: super; }
.diff-title { font-family: 'Luckiest Guy', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.diff-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── QUOTE ── */
.testimonial { background: var(--navy); padding: 90px 5vw; text-align: center; }
.testimonial-quote { font-family: 'Luckiest Guy', sans-serif; font-size: clamp(22px,2.8vw,36px); font-weight: 700; color: #fff; max-width: 820px; margin: 0 auto 28px; line-height: 1.35; letter-spacing: -.5px; }
.testimonial-quote em { font-style: normal; color: var(--green); }
.testimonial-author { font-size: 14px; color: rgba(255,255,255,0.38); }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--green) 0%, #2db868 100%); padding: 90px 5vw; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px); background-size: 48px 48px; }
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-family: 'Luckiest Guy', sans-serif; font-size: clamp(28px,4vw,50px); font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: rgba(13,27,62,0.68); max-width: 520px; margin: 0 auto 40px; line-height: 1.6; }
.btn-dark { display: inline-block; background: var(--navy); color: #fff; font-family: 'Luckiest Guy', sans-serif; font-weight: 700; font-size: 15px; padding: 15px 32px; border-radius: 10px; text-decoration: none; transition: all .2s; }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,27,62,0.3); }
.cta-contact { margin-top: 24px; font-size: 14px; color: rgba(13,27,62,0.6); }
.cta-contact a { color: var(--navy); font-weight: 600; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 60px 5vw 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.40); line-height: 1.65; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-family: 'Luckiest Guy', sans-serif; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.28); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.50); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-site { font-size: 13px; color: rgba(255,255,255,0.22); }
.footer-site a { color: var(--green); text-decoration: none; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
/* ── HAMBURGER ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:900px) {
  .hero-inner,.about-grid,.ser360-inner { grid-template-columns:1fr; gap:48px; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .diff-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .hero-visual { display:none; }

  .nav-burger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,27,62,0.98); backdrop-filter: blur(12px);
    padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 24px; border-radius: 0; font-size: 15px; }
  .nav-links .nav-cta { margin: 10px 24px 4px; border-radius: 8px; text-align: center; }
}
@media(max-width:600px) {
  .services-grid,.diff-grid { grid-template-columns:1fr; }
  .hero-stats { gap:20px; flex-wrap:wrap; }
  .footer-grid { grid-template-columns:1fr; }
  .ser360-team { grid-template-columns:1fr; }
}

/* ── LUCKIEST GUY: força weight 400 (fonte só tem regular) ── */
.brand-intro-name, .nav-logo-text, .stat-num, .sc-title, .hi-title,
.badge-num, .svc-title, .step-num, .client-logo, .diff-num, .diff-title,
.testimonial-quote, .cta-title, .btn-dark, .btn-primary, .footer-col h4 {
  font-weight: 400 !important;
}
