/* css/styles.css */

/* ========================================
   BASE
======================================== */
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  color: var(--color-secondary);
  line-height: 1.1;
  font-weight: 700;
  font-variation-settings: 'wght' 700;
  -webkit-font-smoothing: auto;
}
strong, b {
  font-weight: 700;
  font-variation-settings: 'wght' 700;
}

p {
  color: var(--color-text-muted);
}

a { text-decoration: none; }

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

.section {
  padding: var(--spacing-section-desktop) 0;
}

.bg-light {
  background-color: var(--color-neutral-light);
}

.bg-dark {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--color-white);
}
.bg-dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

/* Section Header Pattern */
.section-header {
  margin-bottom: 64px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}
.section-header h2 {
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--color-primary);
}

.section-tag-light {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
/* Remove the decorative line in centered contexts */
.text-center .section-tag,
.text-center .section-tag-light,
.page-header-simple .section-tag,
.page-header-simple .section-tag-light,
.bg-dark.text-center .section-tag-light {
  padding-left: 0;
}
.text-center .section-tag::before,
.text-center .section-tag-light::before,
.page-header-simple .section-tag::before,
.page-header-simple .section-tag-light::before {
  display: none;
}

.section-tag-light::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--color-primary);
}

/* ========================================
   SCROLL PROGRESS BAR
======================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-soft));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  text-align: center;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
}
.btn:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 43, 0.50);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-secondary) !important;
  border-color: var(--color-secondary);
  box-shadow: none;
}
.btn-outline-dark:hover {
  background-color: var(--color-secondary);
  color: var(--color-white) !important;
  box-shadow: var(--shadow-md);
}

/* Hero CTA Buttons */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-orange);
}
.btn-hero:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(255, 107, 43, 0.55);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--color-white) !important;
  border: 2px solid rgba(255, 255, 255, 0.40);
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition-normal);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-4px);
}

/* Nav button */
.btn-nav {
  padding: 12px 26px;
  font-size: 0.95rem;
  color: var(--color-white) !important;
  box-shadow: none;
}
.btn-nav::after { display: none !important; }

/* ========================================
   HEADER & NAV
======================================== */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition-normal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}
header.scrolled .nav-links a:hover {
  color: var(--color-primary);
}
header.scrolled .hamburger {
  color: var(--color-white);
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-container > a { justify-self: start; }
.nav-container > nav { justify-self: center; }
.nav-container > .nav-right { justify-self: end; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-mobile-btn { display: none; }
.nav-close { display: none; }

.logo {
  height: 48px;
  transition: var(--transition-normal);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  color: var(--color-secondary);
  text-decoration: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: var(--color-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

/* ========================================
   PAGE HEADER (Inner pages)
======================================== */
.page-header-simple {
  padding: 180px 0 100px;
  background-color: var(--color-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-simple::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 43, 0.12) 0%, transparent 70%);
}
.page-header-simple h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--color-white);
  position: relative;
}
.page-header-simple p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  padding: 0;
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.45);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-video.playing {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.60) 0%,
    rgba(10, 22, 40, 0.40) 50%,
    rgba(10, 22, 40, 0.55) 100%
  );
  z-index: -1;
}

.hero-content {
  color: var(--color-white);
  max-width: 880px;
  z-index: 1;
  text-align: center;
  padding-top: 80px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  margin-bottom: 32px;
  font-family: var(--font-headings);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}
.hero-badge i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 28px;
  line-height: 1.05;
  color: var(--color-white);
}
.hero h1 span {
  color: var(--color-primary);
}

.hero p {
  font-size: 1.3rem;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1.5px;
  height: 55px;
  background: linear-gradient(to bottom, rgba(255, 107, 43, 0.8), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
  border-radius: 2px;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ========================================
   STATS STRIP
======================================== */
.stats-strip {
  background: var(--color-secondary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 107, 43, 0.10) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(44, 82, 130, 0.20) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
}

.stat-item {
  position: relative;
  padding: 0 20px;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 60px; width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(255, 107, 43, 0.22);
}

.stat-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ========================================
   EDITORIAL (Imagem + Texto)
======================================== */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-grid.reverse .editorial-text { order: 2; }
.editorial-grid.reverse .editorial-img-container { order: 1; }

.editorial-text .section-tag,
.editorial-text .section-tag-light {
  display: inline-block;
  margin-bottom: 18px;
}

.editorial-text h2 {
  font-size: 3.2rem;
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.editorial-text p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.editorial-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.editorial-img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.editorial-img-container img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--transition-normal);
}
.editorial-img-container:hover img {
  transform: scale(1.04);
}

/* ========================================
   SERVICES GRID
======================================== */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}

.servico-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-neutral-dark);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.05);
}
.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

/* Card image */
.servico-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--color-neutral-light);
}
.servico-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.servico-card:hover .servico-card-img img {
  transform: scale(1.08);
}
.servico-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,0.15), transparent);
}

/* Card body */
.servico-card-body {
  padding: 36px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.servico-card-body .icon-wrapper {
  width: 58px; height: 58px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}
.servico-card:hover .servico-card-body .icon-wrapper {
  background: var(--color-primary);
}
.servico-card-body .icon {
  font-size: 1.6rem;
  color: var(--color-primary);
  transition: var(--transition-normal);
}
.servico-card:hover .servico-card-body .icon {
  color: var(--color-white);
}

.servico-card-body h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-secondary);
  font-weight: 700;
}
.servico-card-body p {
  font-size: 0.97rem;
  line-height: 1.65;
  flex: 1;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 24px;
  transition: gap var(--transition-fast);
  text-decoration: none;
}
.servico-card:hover .card-cta { gap: 14px; }

/* ========================================
   CTA DARK SECTION
======================================== */
.bg-dark .section-tag-light {
  color: var(--color-primary);
}
.bg-dark.text-center .container {
  max-width: 800px;
}
.bg-dark h2 {
  font-size: 3.5rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.bg-dark p {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 44px;
}

/* ========================================
   PROJETOS PAGE
======================================== */

/* Hero stats bar */
.projetos-hero {
  padding-bottom: 0;
}
.projetos-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: inline-flex;
}
.ph-stat {
  text-align: center;
}
.ph-stat strong {
  display: block;
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.ph-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.ph-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Filtros */
.filtros-section {
  padding: 48px 0 0;
  background: var(--color-white);
}
.projetos-filtros {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.filtro-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border: 2px solid #E4E4E7;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  cursor: pointer;
  background: transparent;
  transition: var(--transition-normal);
}
.filtro-btn i { font-size: 0.8rem; }
.filtro-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.filtro-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-orange);
}

/* Projetos Section */
.projetos-section {
  padding-top: 56px;
}
.projetos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* Project Card */
.projeto-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.projeto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.projeto-card.filtered-out {
  display: none;
}

/* Project image */
.projeto-img {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--color-neutral-light);
}
.projeto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.projeto-card:hover .projeto-img img {
  transform: scale(1.07);
}

/* Category tag badge */
.projeto-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}
.tag-residencial {
  background: rgba(255, 107, 43, 0.90);
  color: var(--color-white);
}
.tag-comercial {
  background: rgba(10, 22, 40, 0.88);
  color: var(--color-white);
}
.tag-industrial {
  background: rgba(44, 82, 130, 0.90);
  color: var(--color-white);
}

/* Card body */
.projeto-body {
  padding: 32px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.projeto-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.83rem;
  color: var(--color-text-muted);
}
.projeto-meta i { color: var(--color-primary); font-size: 0.75rem; }
.meta-dot {
  width: 3px; height: 3px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.projeto-body h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.projeto-descricao {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  flex: 1;
}

/* Tech + area details */
.projeto-detalhe {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #F0F0F0;
}
.projeto-detalhe span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-secondary);
}
.projeto-detalhe i {
  color: var(--color-primary);
  font-size: 0.78rem;
}

/* ── Image Slider ── */
.img-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: opacity;
}
.slider-img.active { opacity: 1; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8;
  color: var(--color-secondary);
  font-size: 0.78rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  opacity: 0;
  transition: opacity 0.2s ease, background 0.15s;
}
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.projeto-card:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover { background: #fff; }

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 8;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.4);
}
@media (max-width: 768px) {
  .slider-arrow { opacity: 0.85; }
}

/* ── Project Chips ── */
.projeto-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.projeto-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-headings);
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(255,107,43,0.09);
  border-radius: var(--radius-full);
  padding: 5px 13px;
}
.projeto-chip i { font-size: 0.72rem; }

/* Testimonial block */
.projeto-testimonial {
  background: var(--color-neutral-light);
  border-radius: var(--radius-md);
  padding: 24px 24px 20px;
  position: relative;
  border-left: 3px solid var(--color-primary);
}

.estrelas {
  color: var(--color-primary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.projeto-testimonial blockquote {
  font-style: italic;
  font-size: 0.93rem;
  color: var(--color-neutral-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
}
.projeto-testimonial blockquote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--color-primary);
  opacity: 0.25;
  position: absolute;
  top: -18px;
  left: -6px;
  line-height: 1;
  pointer-events: none;
}

/* Client info */
.cliente-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cliente-foto {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
  flex-shrink: 0;
}
.cliente-nome {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 2px;
}
.cliente-cargo {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* Responsive projetos */
@media (max-width: 900px) {
  .projetos-hero-stats { gap: 24px; padding: 20px 24px; }
  .ph-stat strong { font-size: 1.4rem; }
}
@media (max-width: 640px) {
  .projetos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .projetos-hero-stats { flex-direction: column; gap: 16px; }
  .ph-divider { width: 40px; height: 1px; }
  .projeto-body { padding: 24px 20px 28px; }
}

/* ========================================
   DIFERENCIAIS GRID
======================================== */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diferencial-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-normal);
}
.diferencial-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.diferencial-icon {
  width: 52px; height: 52px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition-normal);
}
.diferencial-item:hover .diferencial-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.diferencial-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-secondary);
}
.diferencial-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info-wrap h2 {
  font-size: 3rem;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.contact-info-wrap .section-tag {
  margin-bottom: 12px;
}
.contact-info-wrap > p {
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-item .icon {
  width: 50px; height: 50px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition-normal);
}
.contact-item:hover .icon {
  background: var(--color-primary);
  color: var(--color-white);
}
.contact-item h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--color-secondary);
}
.contact-item p { margin: 0; font-size: 0.97rem; }

/* Minimal Form */
.minimal-form {
  background: var(--color-white);
  padding: 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}
.form-group {
  margin-bottom: 40px;
  position: relative;
}
.minimal-form input,
.minimal-form textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid #E4E4E7;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-neutral-dark);
  transition: border-color var(--transition-fast);
  outline: none;
}
.minimal-form input:focus,
.minimal-form textarea:focus {
  border-bottom-color: var(--color-primary);
}
.minimal-form label {
  position: absolute;
  top: 10px; left: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  pointer-events: none;
  transition: var(--transition-fast);
}
.minimal-form input:focus ~ label,
.minimal-form input:valid ~ label,
.minimal-form textarea:focus ~ label,
.minimal-form textarea:valid ~ label {
  top: -20px;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ========================================
   TEAM
======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.team-member { text-align: center; }
.team-img-wrap {
  position: relative;
  width: 250px; height: 350px;
  margin: 0 auto 25px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-member h4 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--color-secondary);
}
.team-member p.role {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   FAQ
======================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #E4E4E7;
  padding: 24px 0;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: color var(--transition-fast);
}
.faq-question:hover {
  color: var(--color-primary);
}
.faq-question i {
  color: var(--color-primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer { margin-top: 16px; }

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-soft), transparent);
}
footer::after {
  content: '';
  position: absolute;
  bottom: 0; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
footer h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 700;
}
.footer-about p {
  max-width: 340px;
  margin-bottom: 28px;
  opacity: 0.7;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}
.footer-links a.active {
  color: var(--color-primary);
  font-weight: 600;
}
.footer-legal {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-legal:hover,
.footer-legal.active {
  color: var(--color-primary);
}
.form-privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-privacy-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.form-privacy-check label {
  position: static;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
  transform: none;
  pointer-events: auto;
}
.form-privacy-check label a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-links a i {
  width: 20px;
  color: var(--color-primary);
}

.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  display: inline-flex;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: var(--transition-normal);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
}
.social-icons a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-copy {
  margin-bottom: 6px;
}
.footer-legal-info {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 14px;
  line-height: 1.7;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 14px;
  margin-bottom: 10px;
}
.footer-powered-text {
  font-size: 0.85rem;
  opacity: 0.8;
}
.footer-powered {
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-powered:hover {
  color: var(--color-primary-soft);
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 44px 40px 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary);
  line-height: 1;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 0.7; }
.modal-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 14px;
}
.modal-box p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.93rem;
}
.modal-box p:last-child { margin-bottom: 0; }
.modal-box a { color: var(--color-primary); text-decoration: none; }
.modal-box a:hover { text-decoration: underline; }
@media (max-width: 480px) {
  .modal-box { padding: 36px 24px 28px; }
}

/* ========================================
   FLOATING ELEMENTS
======================================== */
/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  left: 36px;
  background-color: #25d366;
  color: white;
  width: 60px; height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: transform 0.3s ease;
  animation: waPulse 2.5s infinite;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  color: white;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 50px; height: 50px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 998;
  box-shadow: var(--shadow-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--color-primary-hover);
  transform: translateY(-4px);
}

/* ========================================
   ANIMATION CLASSES
======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.10s; }
.delay-200 { transition-delay: 0.20s; }
.delay-300 { transition-delay: 0.30s; }
.delay-400 { transition-delay: 0.40s; }
.delay-500 { transition-delay: 0.50s; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .editorial-grid { gap: 50px; }
  .servicos-lista { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .fundador-grid { grid-template-columns: 300px 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; letter-spacing: -1px; }
  .hero p { font-size: 1.1rem; }
  .btn-hero, .btn-hero-outline { padding: 15px 28px; font-size: 0.95rem; }
  .hero-actions { gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2.5rem; }
  .section-header h2, .editorial-text h2 { font-size: 2.3rem; }
  .bg-dark h2 { font-size: 2.5rem; }
  .editorial-grid, .footer-grid { grid-template-columns: 1fr; }
  footer { padding-bottom: 100px; }
  .footer-bottom { font-size: 0.82rem; }
  .footer-copy { line-height: 1.6; }
  .editorial-grid.reverse .editorial-text { order: 1; }
  .editorial-grid.reverse .editorial-img-container { order: 2; }
  .servicos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .servicos-lista { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr; }
  .fundador-grid { grid-template-columns: 1fr; gap: 36px; }
  .fundador-img-wrap { aspect-ratio: 3 / 2; }
  .minimal-form { padding: 30px; }
  .section { padding: var(--spacing-section-mobile) 0; }
  .hero-badge { font-size: 0.68rem; padding: 8px 16px; }
  .page-header-simple h1 { font-size: 2.8rem; }

  /* Mobile Menu */
  .hamburger {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
  }
  .nav-right { position: relative; z-index: 1001; }
  .nav-btn-desk { display: none; }
  .nav-mobile-btn { display: list-item; }
  .nav-links {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: var(--color-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 999;
    gap: 0;
    pointer-events: none;
  }
  .nav-links.active {
    left: 0;
    pointer-events: auto;
  }
  .nav-close-li {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto !important;
    border: none !important;
    background: none !important;
  }
  .nav-close {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: #000;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .nav-close:hover {
    background: var(--color-primary);
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.9) !important;
    padding: 18px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover { color: var(--color-primary) !important; }
  .nav-links a.active:not(.btn-nav) {
    color: var(--color-primary) !important;
    font-weight: 700;
  }
  .nav-links .btn-nav {
    margin-top: 24px;
    font-size: 1.2rem;
    padding: 16px 40px;
    color: var(--color-white) !important;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; overflow-wrap: break-word; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none; }
  .container { padding: 0 20px; }
  .servicos-lista { grid-template-columns: 1fr; }
  .page-header-simple { padding: 130px 0 64px; }
  .page-header-simple h1 { font-size: 2.2rem; }
  .marquee-item { padding: 0 28px; }
  .contact-info-wrap h2 { font-size: 2.2rem; }
  .minimal-form { padding: 24px 20px; }
  .reviews-summary { flex-direction: column; text-align: center; padding: 20px; }
  .reviews-google-link { align-self: center; }
  .fundador-badges { flex-direction: column; gap: 6px; }
  .filtro-btn { padding: 9px 16px; font-size: 0.82rem; }
  .projetos-filtros { gap: 8px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.85rem; letter-spacing: -0.5px; }
}

@keyframes filterFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   LIVROS DE RECLAMAÇÕES / ELOGIOS
======================================== */
.livros-section {
  padding: 64px 0;
  background: var(--color-bg);
}
.livros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.livro-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.livro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.livro-card.reclamacoes {
  background: #fff5f5;
  border-color: #fecdca;
}
.livro-card.reclamacoes:hover { border-color: #e84040; }
.livro-card.elogios {
  background: #f0faf4;
  border-color: #b7e8c9;
}
.livro-card.elogios:hover { border-color: #27a75c; }
.livro-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.reclamacoes .livro-icon { background: #fecdca; color: #c0392b; }
.elogios .livro-icon    { background: #b7e8c9; color: #1a7a44; }
.livro-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 4px;
}
.livro-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .livros-grid { grid-template-columns: 1fr; }
  .livro-card  { padding: 22px 24px; }
}

/* ========================================
   QUEM SOMOS — QUOTE
======================================== */
.qs-quote {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-primary);
  border-left: 3px solid var(--color-primary);
  padding: 14px 20px;
  background: var(--color-primary-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0 36px;
}
.qs-quote i { font-size: 1.3rem; opacity: 0.6; flex-shrink: 0; }

/* ========================================
   QUEM SOMOS — FUNDADOR
======================================== */
.fundador-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}
.fundador-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.fundador-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.fundador-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.fundador-card:hover .fundador-img-wrap img {
  transform: scale(1.04);
}
.fundador-info {
  padding: 24px 28px;
}
.fundador-info h4 {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--color-secondary);
}
.fundador-role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.fundador-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fundador-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--color-primary-light);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
}
.fundador-mensagem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fundador-mensagem h2 { margin-bottom: 0; }
.fundador-mensagem p { line-height: 1.75; }
.fundador-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  margin-top: 8px;
}
.fundador-quote i {
  color: var(--color-primary);
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.fundador-quote span {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.55;
}

/* ========================================
   SERVICES COMPACT LIST
======================================== */
.servicos-lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.servico-lista-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-normal);
  cursor: default;
}
.servico-lista-item:hover {
  border-color: var(--color-primary);
  transform: translateX(5px);
  box-shadow: var(--shadow-card);
}
.servico-lista-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  width: 22px;
  flex-shrink: 0;
}
.servico-lista-item span {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-secondary);
}

/* ========================================
   CERTIFICAÇÕES GRID
======================================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cert-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-normal);
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.cert-icon {
  width: 52px; height: 52px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: var(--transition-normal);
}
.cert-card:hover .cert-icon {
  background: var(--color-primary);
  color: var(--color-white);
}
.cert-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--color-secondary);
}
.cert-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   RESPONSIVE OVERRIDES
   (base CSS above was added after the main
   @media block — these must come last)
======================================== */
@media (max-width: 1024px) {
  .fundador-grid   { grid-template-columns: 300px 1fr; gap: 48px; }
  .servicos-lista  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fundador-grid   { grid-template-columns: 1fr; gap: 36px; }
  .fundador-img-wrap { aspect-ratio: 3 / 2; }
  .servicos-lista  { grid-template-columns: repeat(2, 1fr); }
  .cert-grid       { grid-template-columns: 1fr; }
  .page-header-simple { padding-bottom: 52px; }
  .page-header-simple + .section { padding-top: 40px; }
}
@media (max-width: 480px) {
  .servicos-lista  { grid-template-columns: 1fr; }
  .fundador-quote  { padding: 20px; }
  .fundador-info   { padding: 20px; }
}

/* ========================================
   GOOGLE REVIEWS
======================================== */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 52px;
}
.reviews-score {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}
.reviews-summary-mid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews-stars-row {
  display: flex;
  gap: 3px;
}
.reviews-stars-row i { color: #FBBC04; font-size: 1.1rem; }
.reviews-total {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: var(--transition-normal);
}
.reviews-google-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}
.reviews-google-link-v2 {
  padding: 12px 20px 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.10);
  border-radius: 100px;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-secondary);
  gap: 10px;
  white-space: nowrap;
}
.reviews-google-link-v2:hover {
  border-color: #4285F4;
  box-shadow: 0 4px 20px rgba(66,133,244,0.15);
  color: #4285F4;
  background: #fff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-neutral-light);
}
.review-meta { flex: 1; }
.review-name {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-secondary);
  margin-bottom: 3px;
}
.review-card-stars { display: flex; gap: 2px; }
.review-card-stars i { color: #FBBC04; font-size: 0.78rem; }
.review-google-badge {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: auto;
}
.review-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  flex: 1;
}
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { gap: 16px; padding: 20px 24px; }
  .reviews-score { font-size: 2.6rem; }
}

/* 2-review centered layout (index + contactos) */
.reviews-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .reviews-grid-2 { grid-template-columns: 1fr; }
}

/* ========================================
   CERTS MARQUEE STRIP
======================================== */
.certs-strip {
  padding: 44px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: var(--color-white);
  overflow: hidden;
}
.certs-strip-header {
  text-align: center;
  margin-bottom: 32px;
}
.certs-strip-header span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
}
.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  flex-shrink: 0;
  position: relative;
}
.marquee-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 26px;
  background: rgba(0, 0, 0, 0.1);
}
.marquee-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}
.marquee-item img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.4s ease;
  mix-blend-mode: multiply;
}
.marquee-item a:hover img { filter: grayscale(0%) opacity(1); }
.marquee-item.invert img {
  filter: invert(1) grayscale(100%) opacity(0.45);
}
.marquee-item.invert a:hover img {
  filter: invert(1) opacity(0.85);
}
.marquee-item.invert-red img {
  filter: invert(1) grayscale(100%) opacity(0.55);
}
.marquee-item.invert-red a:hover img {
  filter: invert(1) sepia(1) saturate(10) hue-rotate(330deg) opacity(1);
}
.cert-text-logo {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-secondary);
  opacity: 0.35;
  transition: opacity 0.4s ease, color 0.4s ease;
  letter-spacing: 1px;
  white-space: nowrap;
}
.marquee-item a:hover .cert-text-logo {
  opacity: 1;
  color: var(--color-primary);
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ========================================
   CURSOR SPOTLIGHT
======================================== */
#cursor-spotlight {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.048) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: left, top;
}

/* ========================================
   COOKIE BANNER
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0A1628;
  border-top: 1px solid rgba(255, 107, 43, 0.25);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.30);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.cookie-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.cookie-text strong {
  color: #fff;
  font-weight: 600;
}
.cookie-text a {
  color: #FF6B2B;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-text a:hover {
  color: #FF8C42;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}
.cookie-btn-primary {
  background: #FF6B2B;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 107, 43, 0.40);
}
.cookie-btn-primary:hover {
  background: #E05518;
  box-shadow: 0 6px 24px rgba(255, 107, 43, 0.55);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    padding: 20px 20px;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ========================================
   HERO BADGE FLOAT
======================================== */
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ========================================
   DIRECTIONAL SCROLL ANIMATIONS
======================================== */
.animate-from-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.animate-from-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.animate-from-left.visible,
.animate-from-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   BUTTON PRESS FEEDBACK
======================================== */
.btn:active,
.btn-hero:active,
.btn-hero-outline:active {
  transform: scale(0.96) !important;
  transition: transform 0.08s ease !important;
}

/* ========================================
   PAGE LOAD FADE-IN
======================================== */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.4s ease both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
