/* =========================================
   PAGES & SITES — Landing Page Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,300&display=swap');

/* ─── CSS Variables ─── */
:root {
  --teal-dark:   #0F8F8F;
  --teal-light:  #2EC4B6;
  --text-dark:   #343A40;
  --bg-white:    #F8FAFA;
  --orange:      #FF9F1C;
  --white:       #ffffff;
  --gray-100:    #f1f5f5;
  --gray-200:    #e2eaea;
  --gray-400:    #8fa8a8;
  --gray-600:    #5a7070;

  --font-display: 'DM Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(15,143,143,.08);
  --shadow-md: 0 8px 32px rgba(15,143,143,.14);
  --shadow-lg: 0 20px 60px rgba(15,143,143,.18);

  --transition: .3s cubic-bezier(.25,.8,.25,1);
}

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

.icon-svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── Utility ─── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 60px); }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(46,196,182,.1);
  border: 1px solid rgba(46,196,182,.3);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
}
.highlight { color: var(--teal-dark); }
.highlight-orange { color: var(--orange); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 99px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,143,143,.35);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,143,143,.45);
}
.btn-secondary {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal-dark);
}
.btn-secondary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,159,28,.35);
}
.btn-orange:hover {
  background: #e8900f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,159,28,.45);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(248,250,250,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(15,143,143,.1);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 182px;
  height: 48px;
  position: relative;
  overflow: hidden;
}
.logo-image {
  max-width: none;
}
.logo-image-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: auto;
  transform: translate(-50%, -50%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: .85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-white);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 20px;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--text-dark);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 990;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,.7); }
}

/* ════════════════════════════════════════
   HERO / CAPA
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #e8f7f7 0%, var(--bg-white) 55%, #fff8ef 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,196,182,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,159,28,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,143,143,.08);
  border: 1px solid rgba(15,143,143,.2);
  border-radius: 99px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--teal-dark);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.hero-title .line-accent {
  color: var(--teal-dark);
  position: relative;
  display: inline-block;
}
.hero-title .line-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: rgba(46,196,182,.25);
  border-radius: 3px;
  z-index: -1;
}
@media (min-width: 992px) {
  .hero-title .line-accent {
    white-space: nowrap;
  }
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}
/* ⚠️ IMAGEM EXTERNA NECESSÁRIA — coloque uma imagem de pessoa trabalhando
   com computador, escritório moderno ou mockup de site. Exemplo Unsplash:
   https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=800
   Substitua o src abaixo no HTML pelo URL real da imagem. */
.hero-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-1 { bottom: -20px; left: -20px; }
.hero-card-2 { top: -20px; right: -20px; }
.hero-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-card-icon .icon-svg { width: 18px; height: 18px; }
.hero-card-icon.teal { background: rgba(15,143,143,.12); color: var(--teal-dark); }
.hero-card-icon.orange { background: rgba(255,159,28,.15); color: #c07800; }
.hero-card small { display: block; font-weight: 400; color: var(--gray-400); font-size: .75rem; }

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: .8rem; color: var(--gray-400); font-weight: 500; }

/* ════════════════════════════════════════
   PROCESS — Timeline
════════════════════════════════════════ */
.process {
  padding: 100px 0;
  background: var(--white);
}
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-subtitle { margin: 0 auto; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-bottom: 64px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(8.33% + 16px); right: calc(8.33% + 16px);
  height: 3px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  border-radius: 2px;
  z-index: 0;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.timeline-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(15,143,143,.2);
  transition: var(--transition);
  background: linear-gradient(135deg, var(--white), #e8f7f7);
}
.timeline-step:hover .timeline-num {
  background: var(--teal-dark);
  color: var(--white);
  transform: scale(1.1);
}
.timeline-step h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.timeline-step p {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.process-cta-box {
  background: linear-gradient(135deg, rgba(15,143,143,.06), rgba(46,196,182,.06));
  border: 1px solid rgba(15,143,143,.15);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.process-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.process-cta-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.process-cta-title .icon-svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}
.process-cta-text p {
  color: var(--gray-600);
  max-width: 480px;
  font-size: .95rem;
  line-height: 1.6;
}

/* ════════════════════════════════════════
   DIFFERENTIALS
════════════════════════════════════════ */
.differentials {
  padding: 100px 0;
  background: var(--bg-white);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.diff-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.diff-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: rgba(15,143,143,.25);
}
.diff-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.diff-icon .icon-svg {
  width: 20px;
  height: 20px;
  color: white;
}
.diff-item h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.diff-item p { font-size: .875rem; color: var(--gray-600); line-height: 1.5; }

/* Mission/Vision/Values interactive */
.mvv-block { position: relative; }
.mvv-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.mvv-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--white);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.mvv-tab-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mvv-tab-label .icon-svg {
  width: 18px;
  height: 18px;
}
.mvv-tab:hover, .mvv-tab.active {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
  background: rgba(15,143,143,.04);
}
.mvv-tab > svg { width: 16px; height: 16px; transition: transform var(--transition); }
.mvv-tab.active > svg { transform: rotate(90deg); }

.mvv-content {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: white;
  min-height: 220px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.mvv-content::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.mvv-content-inner {
  position: relative;
  z-index: 1;
  transition: opacity .22s ease, transform .22s ease;
}
.mvv-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.mvv-content p { font-size: 1rem; line-height: 1.7; opacity: .95; }
.mvv-values-list { display: flex; flex-direction: column; gap: 6px; }
.mvv-values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}
.mvv-values-list li::before {
  content: '✦';
  color: var(--orange);
  font-size: .7rem;
}
.mvv-values-list strong { font-weight: 700; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.services-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition:
    transform .45s cubic-bezier(.34,1.56,.64,1),
    box-shadow .4s cubic-bezier(.25,.8,.25,1),
    border-color .3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  opacity: 0;
  transition: opacity .35s ease;
}
.services .service-card:hover {
  border-color: var(--teal-light);
  box-shadow: 0 22px 50px rgba(15,143,143,.18), 0 6px 18px rgba(15,143,143,.1);
  transform: translateY(-12px) scale(1.015);
}
.services .service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  border-color: transparent;
  color: white;
}
.service-card.featured::before { opacity: 1; background: rgba(255,255,255,.2); height: 100%; top:0; }
.services .service-card.featured:hover {
  box-shadow: 0 26px 60px rgba(15,143,143,.45), 0 8px 24px rgba(15,143,143,.25);
  transform: translateY(-12px) scale(1.015);
}
.service-emoji {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}
.service-emoji .icon-svg {
  width: 28px;
  height: 28px;
}
.service-card.featured .service-emoji { color: white; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-card .service-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.service-tag.teal { background: rgba(15,143,143,.1); color: var(--teal-dark); }
.service-tag.orange { background: rgba(255,159,28,.12); color: #c07800; }
.service-tag.white { background: rgba(255,255,255,.2); color: white; }
.service-card p { font-size: .875rem; line-height: 1.65; color: var(--gray-600); }
.service-card.featured p { color: rgba(255,255,255,.85); }
.service-features {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-features li {
  font-size: .8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before { content: '✓'; color: var(--teal-dark); font-weight: 700; }
.service-card.featured .service-features li { color: rgba(255,255,255,.85); }
.service-card.featured .service-features li::before { color: var(--orange); }

/* ════════════════════════════════════════
   PARTNERS
════════════════════════════════════════ */
.partners {
  padding: 100px 0;
  background: var(--bg-white);
}
.partners-header { text-align: center; margin-bottom: 60px; }
.partners-header .section-subtitle { margin: 0 auto; }

/* Partner cards grid */
.partners-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.partners-cards-grid .partner-card {
  transition: border-color .3s cubic-bezier(.25,.8,.25,1),
              box-shadow .3s cubic-bezier(.25,.8,.25,1),
              transform .3s cubic-bezier(.25,.8,.25,1);
}
.partners-cards-grid .partner-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.partner-card-logo {
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.partner-card-logo--photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gray-200);
  flex-shrink: 0;
}
.partner-card-logo--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.partner-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.partner-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}
.partner-card-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.partner-card-desc {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.55;
  max-width: 260px;
}

.partners-sectors h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.sector-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.sector-card .sector-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}
.sector-card .sector-icon .icon-svg {
  width: 28px;
  height: 28px;
}
.sector-card h4 {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-subtitle { margin: 0 auto; }

.testimonials-track-wrapper {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slide-testimonials 45s linear infinite;
}
.testimonials-track-wrapper:hover .testimonials-track {
  animation-play-state: paused;
}
@keyframes slide-testimonials {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-card {
  width: clamp(280px, 30vw, 420px);
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  flex-shrink: 0;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(15,143,143,.1);
  line-height: 1;
}
.testimonial-stars { color: var(--orange); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
}
.testimonial-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
}
.testimonial-author-role { font-size: .8rem; color: var(--gray-400); }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}
.nav-btn:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: white;
}
.nav-dots { display: flex; gap: 8px; }
.nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}
.nav-dot.active { background: var(--teal-dark); width: 24px; border-radius: 4px; }

/* ════════════════════════════════════════
   ABOUT — Quem Somos
════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--bg-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content { order: 2; }
.about-visual { order: 1; }
.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--gray-200);
  position: relative;
}
/* ⚠️ IMAGEM EXTERNA: foto da equipe ou fundadores da Pages&Sites
   Ex: https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=600 */
.about-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-dark);
  display: block;
  line-height: 1;
}
.about-img-badge span { font-size: .75rem; color: var(--gray-400); }

.about-body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.about-body p strong { color: var(--text-dark); }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar h2 { margin-bottom: 16px; }
.faq-sidebar p { color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-category {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-dark);
  margin-top: 12px;
  margin-bottom: 4px;
  padding: 6px 0 4px;
  border-bottom: 1px solid rgba(15,143,143,.2);
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--teal-light); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  gap: 16px;
  background: var(--white);
  transition: background var(--transition);
}
.faq-item.open .faq-question { background: rgba(15,143,143,.04); color: var(--teal-dark); }
.faq-toggle {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-400);
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: var(--white);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   CTA — Orçamento
════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-content { color: var(--white); }
.cta-content .section-label {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.3);
  color: white;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-content p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-direct {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}
.cta-direct svg { width: 20px; height: 20px; }

.cta-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}
.cta-form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal-light); background: white; }
.form-group textarea { height: 100px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ════════════════════════════════════════
   FOR AGENCIES
════════════════════════════════════════ */
.for-agencies {
  padding: 100px 0;
  background: var(--bg-white);
}
.agencies-header { text-align: center; margin-bottom: 64px; }
.agencies-header .section-subtitle { margin: 0 auto; }

.agencies-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.agency-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.agency-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.agency-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15,143,143,.1), rgba(46,196,182,.1));
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
}
.agency-card-icon .icon-svg {
  width: 30px;
  height: 30px;
}
.agency-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.agency-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

/* Agency process */
.agency-flow {
  background: linear-gradient(135deg, var(--text-dark), #4a5568);
  border-radius: var(--radius-xl);
  padding: 52px;
  color: white;
}
.agency-flow h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}
.agency-flow h3 span { color: var(--teal-light); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 24px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.flow-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(46,196,182,.4);
}
.flow-step p {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.agency-flow-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.agency-flow-cta p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.agency-flow-cta p span { color: var(--teal-light); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.85);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 64px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.logo-image-footer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 455px;
  height: auto;
  transform: translate(-50%, -50%);
}
.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--teal-light); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (min-width: 1440px) {
  .hero-grid { gap: 100px; grid-template-columns: 1fr 1.1fr; }
  .diff-grid { gap: 100px; }
  .about-grid { gap: 100px; }
  .cta-grid { gap: 80px; }
  .services-grid { gap: 32px; }
  .services-grid-bottom { gap: 32px; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .diff-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-content { order: 1; }
  .about-visual { order: 2; max-width: 440px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-form { max-width: 520px; }
  .agencies-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-cards-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .hamburger { display: flex; }

  .timeline { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
  .timeline::before { display: none; }
  .timeline-step { flex-direction: column; text-align: center; gap: 0; align-items: center; }
  .timeline-num { min-width: 48px; height: 48px; width: 48px; font-size: 1.1rem; margin-bottom: 12px; }

  .services-grid, .services-grid-bottom { grid-template-columns: 1fr; }
  .agencies-cards { grid-template-columns: 1fr; }
  .agency-flow { padding: 32px 24px; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .flow-steps::before { display: none; }

  .testimonial-card { width: clamp(260px, 80vw, 340px); }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .partners-cards-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; }

  .process-cta-box { padding: 28px; }
  .agency-flow { border-radius: var(--radius-lg); }

  .hero-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .hero-card-1, .hero-card-2 { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: 2rem; }
  .flow-steps { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .cta-form { padding: 28px 20px; }
  .btn { padding: 12px 20px; font-size: .875rem; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 24px 0; }
}

/* ─── Scroll animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }