/* =============================================
   SEO WEB KAMD — Design System
   Tema: Clean Light | Acentos Roxo + Amarelo
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --purple-700: #4C1D95;
  --purple-600: #6B21A8;
  --purple-500: #7C3AED;
  --purple-400: #8B5CF6;
  --purple-300: #A78BFA;
  --purple-100: #EDE9FE;
  --purple-50:  #F5F3FF;
  --yellow-500: #EAB308;
  --yellow-400: #FACC15;
  --yellow-300: #FDE047;
  --yellow-100: #FEF9C3;
  --yellow-50:  #FEFCE8;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white:    #FFFFFF;
  --bg-primary:   #FFFFFF;
  --bg-secondary: #F8F7FF;
  --bg-accent:    #F5F3FF;
  --bg-card:      #FFFFFF;
  --bg-card-hover:#FAFAFF;
  --border-color:  #E5E7EB;
  --border-purple: rgba(139,92,246,0.25);
  --border-hover:  rgba(139,92,246,0.5);
  --text-primary:   #111827;
  --text-secondary: #374151;
  --text-muted:     #6B7280;
  --text-yellow:    #D97706;
  --gradient-purple: linear-gradient(135deg, #6B21A8, #7C3AED);
  --gradient-yellow: linear-gradient(135deg, #EAB308, #FACC15);
  --gradient-hero:   linear-gradient(160deg, #F5F3FF 0%, #FFFFFF 50%, #FEFCE8 100%);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.1);
  --shadow-purple: 0 4px 20px rgba(107,33,168,0.2);
  --shadow-yellow: 0 4px 20px rgba(234,179,8,0.25);
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.4s ease;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --container-max:     1200px;
  --container-padding: 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem);  font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem);   font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.section         { padding: var(--space-3xl) 0; }
.section--sm     { padding: var(--space-xl) 0; }
.section--dark   { background: var(--bg-secondary); }
.section--alt    { background: var(--bg-secondary); }
.section--accent { background: var(--bg-accent); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.navbar.scrolled {
  border-bottom-color: var(--border-color);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.navbar__logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.navbar__logo-mark {
  width: 40px; height: 40px;
  background: var(--gradient-purple);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem;
  color: var(--yellow-400); box-shadow: var(--shadow-purple);
}
.navbar__logo-text { display: flex; flex-direction: column; line-height: 1; }
.navbar__logo-text span:first-child {
  font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem;
  color: var(--text-primary);
}
.navbar__logo-text span:last-child {
  font-size: 0.63rem; color: var(--purple-600);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.navbar__nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 0.85rem; font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary); border-radius: var(--radius-sm);
  transition: all var(--transition-fast); cursor: pointer; white-space: nowrap;
}
.nav-link:hover { color: var(--purple-600); background: var(--purple-50); }
.nav-dropdown {
  position: absolute; top: calc(100% + 0.5rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 0.5rem; min-width: 240px;
  opacity: 0; visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg); max-height: 70vh; overflow-y: auto;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 0.45rem 0.75rem;
  font-size: 0.84rem; color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover {
  color: var(--purple-600); background: var(--purple-50);
  border-left-color: var(--purple-500); padding-left: 1rem;
}
.nav-dropdown__label {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-400);
  font-weight: 700; padding: 0.5rem 0.75rem 0.2rem;
}
.navbar__cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem; border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  background: transparent; border: none;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 5.5rem 1.5rem 2rem;
  overflow-y: auto; flex-direction: column; gap: 0.25rem;
  transform: translateX(100%); transition: transform var(--transition-base);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 0.85rem 1rem;
  font-size: 1rem; font-weight: 500; color: var(--text-secondary);
  border-radius: var(--radius-sm); border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}
.mobile-menu a:hover {
  color: var(--purple-600); background: var(--purple-50);
  border-left-color: var(--purple-500);
}
.mobile-menu__section-title {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray-400);
  font-weight: 700; padding: 1rem 1rem 0.25rem;
}
@media (max-width: 1024px) {
  .navbar__nav { display: none; }
  .navbar__cta .btn--ghost { display: none; }
  .hamburger { display: flex; }
}

/* BOTOES */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.75rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  border-radius: var(--radius-full); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition-base);
  white-space: nowrap; text-decoration: none;
}
.btn--primary {
  background: var(--gradient-purple); color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,33,168,0.35); }
.btn--yellow {
  background: var(--gradient-yellow); color: var(--gray-900);
  box-shadow: var(--shadow-yellow);
}
.btn--yellow:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(234,179,8,0.4); }
.btn--outline {
  background: transparent; border-color: var(--purple-300); color: var(--purple-600);
}
.btn--outline:hover { border-color: var(--purple-500); background: var(--purple-50); }
.btn--ghost { background: transparent; color: var(--text-secondary); }
.btn--ghost:hover { color: var(--text-primary); background: var(--gray-100); }
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: 0.45rem 1.1rem; font-size: 0.8rem; }

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-base); animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.65); }
}

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 0 5rem; overflow: hidden;
  background: var(--gradient-hero);
}
.hero::before {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(139,92,246,0.1), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -5%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(250,204,21,0.08), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--purple-50); border: 1px solid var(--border-purple);
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 700; color: var(--purple-600);
  letter-spacing: 0.05em; margin-bottom: 1.5rem;
  animation: fade-in-up 0.6s ease both;
}
.hero__badge span {
  width: 6px; height: 6px; background: var(--purple-500);
  border-radius: 50%; animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero__title {
  font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem; animation: fade-in-up 0.6s ease 0.1s both;
  color: var(--text-primary);
}
.hero__title em {
  font-style: normal;
  background: var(--gradient-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-muted);
  margin-bottom: 2.5rem; max-width: 580px;
  animation: fade-in-up 0.6s ease 0.2s both;
}
.hero__cta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  animation: fade-in-up 0.6s ease 0.3s both;
}
.hero__stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  animation: fade-in-up 0.6s ease 0.4s both; flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__stat-num {
  font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800;
  background: var(--gradient-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* SECAO HEADERS */
.section-header { text-align: center; max-width: 680px; margin: 0 auto var(--space-2xl); }
.section-label {
  display: inline-block; padding: 0.3rem 1rem;
  background: var(--purple-50); border: 1px solid var(--border-purple);
  border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700; color: var(--purple-600);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.85rem;
}
.section-title { margin-bottom: 0.85rem; }
.section-title em {
  font-style: normal;
  background: var(--gradient-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { color: var(--text-muted); font-size: 1rem; margin: 0; }

/* CARDS */
.card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition-base); position: relative;
}
.card:hover {
  border-color: var(--border-purple); box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.card__icon {
  width: 52px; height: 52px; background: var(--purple-50);
  border: 1px solid var(--border-purple); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: all var(--transition-base);
}
.card:hover .card__icon { background: var(--purple-100); border-color: var(--purple-300); }
.card__icon svg { width: 24px; height: 24px; color: var(--purple-600); }
.card__title { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.65rem; }
.card__text  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.card__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.84rem; font-weight: 600; color: var(--purple-600); margin-top: 1rem;
  transition: gap var(--transition-fast);
}
.card__link:hover { gap: 0.6rem; }

/* Service Cards */
.service-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--transition-base); text-decoration: none; color: inherit;
}
.service-card:hover {
  border-color: var(--border-purple); box-shadow: var(--shadow-md); transform: translateY(-3px);
}

/* Location Cards */
.location-card {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 0.9rem 1.25rem;
  text-decoration: none; color: inherit; transition: all var(--transition-base);
}
.location-card:hover {
  border-color: var(--border-purple); background: var(--purple-50); transform: translateX(4px);
}
.location-card__icon {
  width: 32px; height: 32px; background: var(--purple-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-card__icon svg { width: 15px; height: 15px; color: var(--purple-600); }
.location-card__name { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.location-card__meta { font-size: 0.73rem; color: var(--text-muted); }

/* BREADCRUMB */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap; font-size: 0.8rem; padding: 0.5rem 0;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--purple-600); }
.breadcrumb__sep { color: var(--gray-300); }
.breadcrumb__current { color: var(--purple-600); font-weight: 500; }

/* PAGE HERO */
.page-hero {
  padding: 8rem 0 4rem; background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(139,92,246,0.07), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
  margin-top: 1rem; margin-bottom: 1rem;
}
.page-hero__title em {
  font-style: normal;
  background: var(--gradient-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero__subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
  margin-bottom: 0.6rem; overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item.open { border-color: var(--border-purple); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.5rem; background: var(--white);
  border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--text-primary); transition: background var(--transition-fast);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--purple-500); transition: transform var(--transition-base);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  background: var(--gray-50); max-height: 0; overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}
.faq-answer.open { max-height: 500px; padding: 1.15rem 1.5rem; }
.faq-answer p { font-size: 0.92rem; color: var(--text-secondary); margin: 0; line-height: 1.8; }

/* FEATURE LIST */
.feature-list {
  display: flex; flex-direction: column; gap: 0.8rem;
  margin: 0; padding: 0; list-style: none;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.93rem; color: var(--text-secondary);
}
.feature-list li::before {
  content: '';
  display: block; width: 20px; height: 20px; min-width: 20px;
  background: var(--purple-600); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px; flex-shrink: 0;
}

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step__num {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--gradient-purple); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem;
  color: var(--white); box-shadow: var(--shadow-purple); flex-shrink: 0;
}
.step__content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text-primary); }
.step__content p  { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--purple-50), var(--yellow-50));
  border: 1px solid var(--border-purple); border-radius: var(--radius-xl);
  padding: var(--space-2xl); text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%); width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.07), transparent 70%);
  pointer-events: none;
}

/* TEAM CARDS */
.team-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: all var(--transition-base);
}
.team-card:hover { border-color: var(--border-purple); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-card__avatar {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--gradient-purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--white);
}
.team-card__name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.3rem; }
.team-card__role { font-size: 0.83rem; color: var(--purple-600); font-weight: 600; margin-bottom: 0.75rem; }
.team-card__bio  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* DEPOIMENTOS */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition-base);
}
.testimonial-card:hover { border-color: var(--border-purple); box-shadow: var(--shadow-md); }
.testimonial-card__stars  { color: var(--yellow-500); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-card__text   { font-style: italic; color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.93rem; line-height: 1.8; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-purple);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--white); flex-shrink: 0;
}
.testimonial-card__name    { font-weight: 700; font-size: 0.88rem; }
.testimonial-card__company { font-size: 0.78rem; color: var(--text-muted); }

/* STATS BAR */
.stats-bar {
  background: var(--bg-accent); border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg); padding: 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.stats-bar__item-num {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  background: var(--gradient-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stats-bar__item-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; }
@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }

/* CONTATO */
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border-color);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--purple-50); border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--purple-600); }
.contact-info-label {
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 600; margin-bottom: 0.2rem;
}
.contact-info-value { font-size: 0.93rem; color: var(--text-primary); font-weight: 500; }
.contact-info-value a { color: var(--purple-600); transition: color var(--transition-fast); }
.contact-info-value a:hover { color: var(--purple-700); }

/* FOOTER */
.footer {
  background: var(--gray-900); color: var(--gray-300);
  padding: var(--space-3xl) 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: var(--space-2xl);
}
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 640px)  { .footer__grid { grid-template-columns: 1fr; } }
.footer .navbar__logo-text span:first-child { color: var(--white); }
.footer .navbar__logo-text span:last-child  { color: var(--yellow-400); }
.footer__brand-text {
  font-size: 0.87rem; color: var(--gray-400); line-height: 1.8; margin: 1rem 0;
}
.footer__brand-text strong { color: var(--yellow-400); }
.footer__brand-text a { color: var(--gray-400); transition: color var(--transition-fast); }
.footer__brand-text a:hover { color: var(--yellow-400); }
.footer__social { display: flex; gap: 0.65rem; margin-top: 1rem; }
.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.footer__social-link svg { width: 16px; height: 16px; fill: var(--gray-400); }
.footer__social-link:hover {
  background: rgba(250,204,21,0.12); border-color: rgba(250,204,21,0.3);
  transform: translateY(-2px);
}
.footer__social-link:hover svg { fill: var(--yellow-400); }
.footer__col-title {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--white); margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a {
  font-size: 0.84rem; color: var(--gray-400);
  transition: color var(--transition-fast);
  display: flex; align-items: center; gap: 0.35rem;
}
.footer__links a:hover { color: var(--yellow-400); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: 0.8rem; color: var(--gray-500); margin: 0; }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a {
  font-size: 0.8rem; color: var(--gray-500);
  transition: color var(--transition-fast);
}
.footer__bottom-links a:hover { color: var(--yellow-400); }

/* HIGHLIGHT BOX */
.highlight-box {
  background: var(--purple-50); border: 1px solid var(--border-purple);
  border-left: 4px solid var(--purple-500);
  border-radius: var(--radius-md); padding: 1.5rem; margin: 1.5rem 0;
}
.highlight-box--yellow {
  background: var(--yellow-50); border-left-color: var(--yellow-500);
  border-color: rgba(234,179,8,0.3);
}

/* TAGS */
.tag {
  display: inline-block; padding: 0.28rem 0.75rem;
  background: var(--purple-50); border: 1px solid var(--border-purple);
  border-radius: var(--radius-full);
  font-size: 0.73rem; font-weight: 600; color: var(--purple-600);
}
.tag--yellow {
  background: var(--yellow-50); border-color: rgba(234,179,8,0.3);
  color: var(--text-yellow);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: var(--space-xl) 0;
}

/* ANIMACOES */
.animate-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.3s; }
.animate-in:nth-child(5) { transition-delay: 0.4s; }
.animate-in:nth-child(6) { transition-delay: 0.5s; }

/* UTILIDADES */
.text-center   { text-align: center; }
.text-yellow   { color: var(--yellow-500); }
.text-purple   { color: var(--purple-600); }
.text-muted    { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }  .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }

/* SCROLLBAR */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--purple-400); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-500); }

/* SELECAO */
::selection { background: var(--purple-100); color: var(--purple-700); }

/* ─── LOCATION CARD ICON SVG FIX ─── */
.location-card__icon svg {
  width: 15px; height: 15px; color: var(--purple-600);
  stroke: var(--purple-600);
}

/* ─── CARD ICON SVG FIX ─── */
.card__icon svg {
  width: 24px; height: 24px;
  color: var(--purple-600);
  stroke: var(--purple-600);
}

/* ─── FOOTER SOCIAL SVG FIX ─── */
.footer__social-link svg {
  width: 16px; height: 16px;
  fill: var(--gray-400);
  stroke: none;
}
.footer__social-link:hover svg {
  fill: var(--yellow-400);
}

/* ─── TESTIMONIAL STARS ─── */
.testimonial-card__stars {
  color: var(--yellow-500);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* ─── HERO CTA FIX ─── */
.hero__ctas {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ─── SECTION HEADER ALT CLASS ─── */
.section__header { text-align: center; max-width: 680px; margin: 0 auto var(--space-2xl); }
.section__title  { margin-bottom: 0.85rem; font-family: var(--font-heading); }
.section__subtitle { color: var(--text-muted); font-size: 1rem; }

/* ─── SERVICES CATEGORY TITLE ─── */
.services-category-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--purple-100);
}

/* ─── GRID ALT CLASSES ─── */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ─── HERO STAT CLASSES ─── */
.hero__stat-number {
  font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800;
  background: var(--gradient-purple);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* ─── CTA BOX ─── */
.cta-box { max-width: 700px; margin: 0 auto; }
.cta-box__title    { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; margin-bottom: 1rem; }
.cta-box__subtitle { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-box__actions  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-box__note     { font-size: 0.82rem; color: var(--text-muted); }

/* ─── BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--purple-50); border: 1px solid var(--border-purple);
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 700; color: var(--purple-600);
}
.badge--yellow {
  background: var(--yellow-50); border-color: rgba(234,179,8,0.3);
  color: var(--text-yellow);
}

/* ─── LOCATION CARD SPAN FIX ─── */
.location-card__city   { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.location-card__service { font-size: 0.73rem; color: var(--text-muted); display: block; }

/* ─── FAQ CLASS ALIASES ─── */
.faq__item     { border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 0.6rem; overflow: hidden; transition: border-color var(--transition-fast); }
.faq__item.open { border-color: var(--border-purple); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.5rem; background: var(--white); border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--text-primary); transition: background var(--transition-fast);
}
.faq__question:hover { background: var(--gray-50); }
.faq__question svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--purple-500); transition: transform var(--transition-base); }
.faq__item.open .faq__question svg { transform: rotate(180deg); }
.faq__answer { background: var(--gray-50); max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding var(--transition-base); }
.faq__answer.open { max-height: 500px; padding: 1.15rem 1.5rem; }
.faq__answer p { font-size: 0.92rem; color: var(--text-secondary); margin: 0; line-height: 1.8; }

/* ─── TEAM CARD IMAGE FIX ─── */
.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
`r`n/* ─── FAQ CHEVRON LIMIT ─── */`r`n.faq-chevron, .faq-question svg { width: 18px !important; height: 18px !important; flex-shrink: 0; transition: transform 0.3s ease; }`r`n
