/* ==========================================================================
   GPAds Consulting: Design System
   Fundo navy, destaques ciano/verde-lima, tipografia Outfit.
   ========================================================================== */

:root {
  --navy: #00152F;
  --navy-800: #011B3A;
  --navy-700: #052247;
  --navy-600: #0A2B54;
  --navy-border: rgba(255, 255, 255, 0.09);
  --navy-border-strong: rgba(255, 255, 255, 0.16);

  --cyan: #14DFF6;
  --lime: #6DE62D;
  --gradient: linear-gradient(90deg, var(--cyan), var(--lime));
  --gradient-soft: linear-gradient(135deg, rgba(20, 223, 246, 0.14), rgba(109, 230, 45, 0.10));

  --white: #FFFFFF;
  --text: #F3F7FB;
  --text-muted: rgba(243, 247, 251, 0.68);
  --text-faint: rgba(243, 247, 251, 0.46);

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 20px 60px rgba(20, 223, 246, 0.10);
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

h1 { font-weight: 800; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout rhythm ---------- */
.section {
  padding: 96px 0;
  position: relative;
}

.section-tight { padding: 64px 0; }

.section-alt {
  background: var(--navy-800);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.section-head {
  max-width: 680px;
  margin: 0 0 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-head.center .eyebrow::before { display: none; }

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color .2s ease;
  white-space: nowrap;
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary {
  background: var(--gradient);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(20, 223, 246, 0.18);
}

.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 36px rgba(20, 223, 246, 0.28), 0 0 0 3px rgba(20, 223, 246, 0.18); }

.btn-whatsapp {
  background: #1FB955;
  color: #fff;
  box-shadow: 0 10px 26px rgba(31, 185, 85, 0.25);
}

.btn-whatsapp:hover { transform: translateY(-2px) scale(1.02); background: #21c65c; box-shadow: 0 14px 32px rgba(31, 185, 85, 0.35), 0 0 0 3px rgba(20, 223, 246, 0.18); }

.btn-outline {
  background: transparent;
  border-color: var(--navy-border-strong);
  color: var(--white);
}

.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: scale(1.02); box-shadow: 0 0 0 3px rgba(20, 223, 246, 0.14); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 17px; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 21, 47, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--navy-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { height: 46px; width: 46px; border-radius: 10px; }
.brand-text {
  font-family: var(--font);
  font-weight: 600;
  font-size: 21px;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}

.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}

.nav-desktop a:hover { color: var(--white); }

.nav-desktop a.active { color: var(--white); }

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--navy-border-strong);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: flex; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--navy-800);
  border-bottom: 1px solid var(--navy-border);
  padding: 8px 0 20px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
}

.nav-mobile a.active { color: var(--white); background: rgba(255,255,255,0.04); }

.nav-mobile .header-cta { padding: 12px 24px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(20,223,246,0.16), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -260px;
  left: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(109,230,45,0.12), transparent 65%);
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  z-index: 0;
  opacity: 0.22;
  background: linear-gradient(120deg, rgba(20,223,246,0.22) 0%, rgba(0,21,47,0) 30%, rgba(109,230,45,0.18) 55%, rgba(0,21,47,0) 80%, rgba(20,223,246,0.2) 100%);
  animation: hero-gradient-shift 20s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform;
}

@keyframes hero-gradient-shift {
  0% { transform: translate3d(-4%, -3%, 0) rotate(0deg); }
  100% { transform: translate3d(4%, 3%, 0) rotate(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gradient { animation: none; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content .eyebrow { }

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 18px;
}

.hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--navy-border);
}

.hero-trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust-item strong { font-size: 22px; font-weight: 800; color: var(--white); }
.hero-trust-item span { font-size: 13px; color: var(--text-faint); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--navy-border);
  box-shadow: var(--shadow-glow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-panel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.hero-panel-row .dot {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.hero-panel-row .dot svg { width: 18px; height: 18px; }

.hero-panel-row span { font-size: 14px; font-weight: 500; color: var(--text); }

.hero-panel-metric {
  text-align: center;
  padding: 18px 0;
}
.hero-panel-metric strong {
  display: block;
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-panel-metric span { font-size: 13px; color: var(--text-faint); }

/* ---------- Carrossel de clientes ---------- */
.clients-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--navy-border);
}

.clients-head {
  text-align: center;
  margin-bottom: 40px;
}

.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  list-style: none;
  padding: 4px 0;
  animation: marquee-scroll 32s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 152px;
  flex-shrink: 0;
  padding: 20px 14px;
  background: #F5F7FA;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.3);
}

.client-card-media {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.client-card-media.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-card-media.avatar {
  border-radius: 50%;
}
.client-card-media.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
    scrollbar-width: thin;
  }
}

/* ---------- Conteudos / ebooks ---------- */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.content-card {
  background: var(--navy-700);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,223,246,0.35);
  background: var(--navy-600);
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.content-card-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.content-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.content-card-body h3 { font-size: 18px; margin: 0; }

.content-card-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
  flex-grow: 1;
}

.content-card-price {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 980px) {
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* ---------- Pagina de clientes ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.client-profile-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-border);
  background: var(--navy-700);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.client-profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,223,246,0.3);
  box-shadow: 0 18px 36px rgba(0,0,0,0.3);
}

.client-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }

.client-profile-header h3 { font-size: 19px; margin: 0 0 2px; }

.client-profile-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cyan);
}

.client-profile-card p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}

.client-profile-card p.placeholder-note {
  color: var(--text-faint);
  font-style: italic;
}

.client-profile-card .testimonial-wrap {
  margin-top: 4px;
}

.client-profile-card-video {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: start;
  gap: 32px;
}

.client-profile-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.client-profile-media .testimonial-wrap {
  margin-top: 0;
}

@media (max-width: 760px) {
  .client-profile-card-video {
    grid-template-columns: 1fr;
  }
}

.client-services-label {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 4px 0 0;
}

.client-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.client-services-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.client-services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.client-services-list li strong {
  color: var(--white);
  font-weight: 600;
}

.client-in-progress-label {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.client-in-progress-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F2B84B;
  flex-shrink: 0;
}

.client-in-progress-list li {
  color: var(--text-faint);
  font-style: italic;
}
.client-in-progress-list li::before {
  background: none;
  border: 1.5px dashed #F2B84B;
}

.client-link {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.client-link:hover { text-decoration: underline; }

.client-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
}
.client-links .client-link { margin-top: 0; }


/* ---------- Pagina individual de servico ---------- */
.service-page-content {
  max-width: 760px;
}
.service-page-content > p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-page-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 40px 0 18px;
}
.service-page-content ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.service-page-content ul li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  padding-left: 22px;
  margin-bottom: 12px;
  position: relative;
}
.service-page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
}
.service-page-content p a,
.service-page-content ul li a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.service-page-content p a:hover,
.service-page-content ul li a:hover {
  color: var(--lime);
}

/* ---------- Resultados / cases ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  background: var(--navy-700);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  text-align: center;
}

.result-number {
  display: block;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.result-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.result-client {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
}

@media (max-width: 760px) {
  .results-grid { grid-template-columns: 1fr; }
}

/* ---------- Depoimento em video ---------- */
.testimonial-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.testimonial-video {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-border);
  box-shadow: var(--shadow-glow);
  background: var(--navy-700);
  cursor: pointer;
}

.testimonial-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-video-el,
.testimonial-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  border: none;
}

.testimonial-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(0,21,47,0.15), rgba(0,21,47,0.55));
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-play-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(20,223,246,0.35);
  transition: transform .2s ease;
}
.testimonial-play:hover .testimonial-play-icon { transform: scale(1.08); }
.testimonial-play-icon svg { width: 26px; height: 26px; color: var(--navy); margin-left: 3px; }

.testimonial-caption {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}
.testimonial-caption strong { color: var(--white); font-weight: 700; }
.testimonial-caption a { color: var(--cyan); font-weight: 500; }

/* ---------- Cards de servico ---------- */
.grid-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy-700);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,223,246,0.35);
  background: var(--navy-600);
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  flex-grow: 1;
}

.service-card .service-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-faint);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.service-card-link {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

/* ---------- Servico detalhado (pagina Servicos) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 34px 30px;
  background: var(--navy-700);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.service-detail:hover {
  transform: translateY(-6px);
  border-color: rgba(20,223,246,0.35);
  background: var(--navy-600);
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 16px;
}
.service-detail-icon svg { width: 30px; height: 30px; }

.service-detail-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.service-detail h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-detail p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 680px;
  margin-bottom: 18px;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lime);
}
.service-detail-link svg { width: 16px; height: 16px; }

/* ---------- Sobre GPAds (resumo Home) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-card {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.05;
}

.about-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  display: block;
}

.about-card p {
  position: relative;
  font-size: 19px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.55;
}

.about-card .signature {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-card .signature strong { display: block; color: var(--white); font-weight: 700; }
.about-card .signature span { font-size: 13px; color: var(--text-faint); }
.signature-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(20,223,246,0.4);
}

.about-copy h2 { font-size: clamp(26px, 3.6vw, 34px); margin-bottom: 18px; }
.about-copy p { color: var(--text-muted); font-size: 16px; margin-bottom: 14px; }

/* ---------- Como trabalhamos ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px 26px;
  background: var(--navy-700);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
}

.process-step .step-num {
  font-size: 15px;
  font-weight: 800;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: var(--navy);
  margin-bottom: 20px;
}

.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: var(--text-muted); }

.process-connector {
  display: none;
}

/* ---------- Por que a GPAds ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--navy-800);
  border: 1px solid var(--navy-border);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,223,246,0.3);
  box-shadow: 0 18px 36px rgba(0,0,0,0.3);
}

.why-card .why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gradient-soft);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-card .why-icon svg { width: 22px; height: 22px; }

.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--text-muted); }

/* ---------- CTA final ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800) 60%);
  border: 1px solid var(--navy-border);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  opacity: 0.06;
  pointer-events: none;
}

.cta-band h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-800);
  border-top: 1px solid var(--navy-border);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-border);
}

.footer-brand-mark { margin-bottom: 18px; }
.footer-brand-mark .brand-mark { height: 42px; width: 42px; }
.footer-brand-mark .brand-text { font-size: 19px; }
.footer-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 320px; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--navy-border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color .2s ease, color .2s ease;
}
.footer-social a:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col a, .footer-col span {
  display: block;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}

.footer-bottom span { color: var(--text-faint); font-size: 13.5px; }

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 13.5px;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-credit:hover { color: var(--cyan); }
.footer-credit img { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.9; }

/* ---------- Barra de progresso de leitura ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--cyan);
  z-index: 200;
  pointer-events: none;
}

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1FB955;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(31, 185, 85, 0.4);
  animation: pulse-wa 2.6s infinite;
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }

@keyframes pulse-wa {
  0% { box-shadow: 0 12px 30px rgba(31, 185, 85, 0.4), 0 0 0 0 rgba(31,185,85,0.5); }
  70% { box-shadow: 0 12px 30px rgba(31, 185, 85, 0.4), 0 0 0 14px rgba(31,185,85,0); }
  100% { box-shadow: 0 12px 30px rgba(31, 185, 85, 0.4), 0 0 0 0 rgba(31,185,85,0); }
}

/* ---------- Page hero (paginas internas) ---------- */
.page-hero {
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -140px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(20,223,246,0.14), transparent 65%);
  pointer-events: none;
}
.page-hero .eyebrow { }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 18px; max-width: 760px; }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 620px; margin-bottom: 32px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--cyan); }

/* ---------- Sobre: fundador ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.founder-card {
  position: sticky;
  top: 110px;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.founder-avatar {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
}

.founder-photo-ring {
  width: 148px;
  height: 148px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient);
  padding: 4px;
}

.founder-photo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.founder-card h3 { font-size: 20px; margin-bottom: 4px; }
.founder-card span.role { display: block; font-size: 14px; color: var(--cyan); margin-bottom: 20px; }
.founder-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

.founder-story p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.founder-story p strong { color: var(--white); font-weight: 600; }
.founder-story p.lede {
  font-size: 20px;
  color: var(--text);
  font-weight: 400;
}

/* ---------- Reconhecimento (Google Experts) ---------- */
.award-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.award-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-border);
  box-shadow: var(--shadow-glow);
}

.award-copy h2 { font-size: clamp(26px, 3.6vw, 34px); margin-bottom: 18px; }
.award-copy p { color: var(--text-muted); font-size: 16px; margin-bottom: 14px; }

.award-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  border: 1px solid rgba(20,223,246,0.25);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cyan);
}

/* ---------- Missao / Visao / Valores ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mv-card {
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
  background: var(--navy-700);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.mv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,223,246,0.3);
  box-shadow: 0 18px 36px rgba(0,0,0,0.3);
}
.mv-card .eyebrow { margin-bottom: 18px; }
.mv-card p { color: var(--text-muted); font-size: 16px; }

.values-header {
  text-align: center;
  margin: 48px 0 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
  background: var(--navy-800);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,223,246,0.3);
  box-shadow: 0 18px 36px rgba(0,0,0,0.3);
}
.value-card h3 { font-size: 18px; margin-bottom: 12px; }
.value-card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ---------- Contato page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 40px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-border);
  background: var(--navy-700);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,223,246,0.3);
  box-shadow: 0 18px 36px rgba(0,0,0,0.3);
}

.contact-card .service-icon { margin: 0 auto 22px; }
.contact-card h3 { font-size: 20px; margin-bottom: 10px; }
.contact-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 26px; }

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--navy-border);
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.contact-meta-item svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; }

/* ---------- Aviso de cookies (LGPD) ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  max-width: 760px;
  margin: 0 auto;
  background: var(--navy-700);
  border: 1px solid var(--navy-border-strong);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
.cookie-banner p a { color: var(--cyan); }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-manage { cursor: pointer; }

@media (max-width: 620px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ---------- Pagina legal (privacidade) ---------- */
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-size: clamp(20px, 2.6vw, 24px);
  margin: 40px 0 14px;
}
.legal-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.legal-content ul li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
}
.legal-content a { color: var(--cyan); }
.legal-content strong { color: var(--white); font-weight: 600; }
.legal-updated { font-size: 14px; color: var(--text-faint); margin-top: 32px; }

/* ---------- Fade-in on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .wa-float { animation: none; }
  .service-card:hover,
  .service-detail:hover,
  .content-card:hover,
  .contact-card:hover,
  .why-card:hover,
  .value-card:hover,
  .mv-card:hover,
  .client-card:hover,
  .btn-primary:hover,
  .btn-whatsapp:hover,
  .btn-outline:hover {
    transform: none;
  }
}

/* ---------- Tipografia ampliada para telas grandes ---------- */
@media (min-width: 1024px) {
  .hero p.lead { font-size: 20.5px; line-height: 1.75; }
  .section-head p { font-size: 19px; line-height: 1.75; }
  .about-copy p { font-size: 18px; line-height: 1.8; }
  .about-card p { font-size: 20.5px; }
  .founder-story p { font-size: 19px; line-height: 1.85; }
  .service-card p { font-size: 16.5px; line-height: 1.7; }
  .service-detail p { font-size: 17.5px; line-height: 1.8; }
  .why-card p { font-size: 16.5px; line-height: 1.7; }
  .process-step p { font-size: 16.5px; line-height: 1.7; }
  .mv-card p { font-size: 17.5px; line-height: 1.75; }
  .value-card p { font-size: 16px; line-height: 1.7; }
  .contact-card p { font-size: 16.5px; line-height: 1.7; }
  .cta-band p { font-size: 18.5px; line-height: 1.75; }
  .award-copy p { font-size: 17.5px; line-height: 1.8; }
}

/* ---------- Responsividade ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-panel { max-width: 340px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .about-card { order: -1; }
  .award-grid { grid-template-columns: 1fr; }
  .award-grid .award-image { order: -1; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-card { position: static; }
  .grid-services { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-desktop, .header-cta.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
  .grid-services { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail-icon { width: 56px; height: 56px; border-radius: 14px; }
  .service-detail-icon svg { width: 26px; height: 26px; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 48px 24px; }
  .hero { padding: 48px 0 72px; }
  .hero-trust { gap: 20px; }
}

@media (max-width: 420px) {
  .btn-lg { padding: 16px 24px; font-size: 15.5px; width: 100%; }
  .hero-actions .btn, .cta-actions .btn, .page-hero-actions .btn { width: 100%; }
  .brand-mark { height: 38px; width: 38px; }
  .brand-text { font-size: 17px; }
}
