:root {
  --color-white: #ffffff;
  --color-light-gray: #f4f7f8;
  --color-gray: #86868b;
  --color-graphite: #333336;
  --color-black: #1d1d1f;
  --color-blue: #0f4c5c;
  --color-blue-hover: #093844;

  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  --spacing-xxl: 12rem;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-graphite);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-black);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; letter-spacing: -0.01em; margin-bottom: var(--spacing-md); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--color-gray);
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.section-light {
  background-color: var(--color-light-gray);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 2px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-blue-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-graphite);
}

.btn-outline-dark:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-link {
  color: var(--color-blue);
  font-weight: 500;
  padding: 0;
  border-bottom: 1px solid transparent;
}

.btn-link:hover {
  border-color: var(--color-blue);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: var(--spacing-md) 0;
  transition: all var(--transition-normal);
  background-color: transparent;
  color: var(--color-white);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--spacing-sm) 0;
  color: var(--color-black);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  max-width: 100%;
}

.logo-img img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: 170px;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 56px;
}

.header .logo-round {
  width: 72px;
  height: 72px;
  justify-self: center;
  flex-shrink: 0;
}

.header .logo-round img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 20px rgba(7, 18, 24, 0.16);
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-blue);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  padding-top: var(--spacing-xl);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  color: var(--color-white);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

/* Credibility */
.credibility {
  background-color: var(--color-white);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.credibility-icon {
  color: var(--color-blue);
  flex-shrink: 0;
}

.credibility-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-black);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg) var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.service-item {
  display: flex;
  flex-direction: column;
  group: hover;
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  aspect-ratio: 4/3;
  background-color: var(--color-light-gray);
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-item:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.service-desc {
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
  flex-grow: 1;
}

/* Differentials */
.differentials-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.diff-row:nth-child(even) .diff-content {
  order: -1;
}

.diff-img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.diff-content-inner {
  max-width: 450px;
}

.diff-list {
  margin-top: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.diff-list-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.125rem;
  color: var(--color-black);
  font-weight: 500;
}

/* Gallery */
.portfolio-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 201, 209, 0.12), transparent 34%),
    linear-gradient(135deg, #070b12 0%, #10162f 58%, #071216 100%);
  color: var(--color-white);
  overflow: hidden;
}

.portfolio-section h2,
.portfolio-section h3 {
  color: var(--color-white);
}

.portfolio-section .section-kicker {
  color: #26c6d2;
}

.portfolio-intro {
  max-width: 560px;
  margin: -0.75rem auto var(--spacing-lg);
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1.1rem;
  margin-top: var(--spacing-lg);
}

.gallery-item {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(38, 198, 210, 0.14);
  background: #0d1326;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(2, 7, 13, 0.88), rgba(2, 7, 13, 0.22) 58%, rgba(2, 7, 13, 0.06)),
    linear-gradient(135deg, rgba(38, 198, 210, 0.18), transparent 38%);
}

.gallery-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.35rem;
  z-index: 2;
}

.gallery-caption span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(38, 198, 210, 0.16);
  color: #8af6ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.gallery-caption h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.portfolio-cta {
  margin: 2rem auto 0;
  padding: 1rem 1.15rem;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(38, 198, 210, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.portfolio-cta a {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #26d66f, #128c7e);
  color: var(--color-white);
  font-weight: 700;
}

/* How it Works */
.workflow-section {
  background: #f7f8fa;
}

.workflow-container {
  max-width: 980px;
}

.workflow-section h2 {
  margin-bottom: 4.5rem;
}

.workflow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workflow-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  padding: 0 0.15rem;
  border-bottom: 1px solid #dde4e7;
  color: var(--color-black);
  transition: all var(--transition-normal);
}

.workflow-row.active {
  min-height: 88px;
  padding: 0 1.2rem;
  border: 2px solid var(--color-black);
  border-radius: 4px;
  background: rgba(255,255,255,0.52);
  box-shadow: 0 18px 45px rgba(15, 76, 92, 0.08);
}

.workflow-number {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: #8b98a1;
}

.workflow-row.active .workflow-number {
  color: var(--color-blue);
}

.workflow-row h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.workflow-tag {
  color: #6f7b84;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.step-item {
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '↓';
  position: absolute;
  top: 0;
  right: -1rem;
  font-size: 1.5rem;
  color: var(--color-gray);
  opacity: 0.5;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: var(--spacing-xs);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.step-desc {
  font-size: 0.875rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-black);
  margin-bottom: var(--spacing-md);
}

.about-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

/* FAQ */
.faq-wrap {
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
}

.faq-item {
  border-bottom: 1px solid #e5e5ea;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--spacing-md) 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding-bottom: var(--spacing-md);
  color: var(--color-gray);
}

/* Final CTA */
.cta-final {
  position: relative;
  padding: var(--spacing-xxl) 0;
  color: var(--color-white);
  text-align: center;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 58, 92, 0.9);
  z-index: -1;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-white);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-col h4 {
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p, .footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
  display: block;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  :root {
    --spacing-xxl: 8rem;
    --spacing-xl: 5rem;
    --spacing-lg: 3rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .header .nav-links.active {
    right: 0;
  }

  .header .nav-links a {
    color: var(--color-black);
    font-size: 1.25rem;
  }

  .header .btn {
    display: none; /* Hide header btn on mobile menu */
  }
  
  .header .nav-links .btn {
    display: flex;
    margin-top: var(--spacing-md);
  }

  .mobile-menu-btn {
    display: block;
    z-index: 101;
  }
  
  .header.scrolled .mobile-menu-btn {
    color: var(--color-black);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .credibility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diff-row {
    grid-template-columns: 1fr;
  }

  .diff-row:nth-child(even) .diff-content {
    order: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-item:not(:last-child)::after {
    top: auto;
    bottom: -2rem;
    right: auto;
    left: 0;
    transform: rotate(90deg);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large, .gallery-item.tall, .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* Refinamento visual e WhatsApp */
.logo span {
  color: var(--color-blue);
}

.header {
  padding: 1.25rem 0;
}

.header.scrolled .whatsapp-header {
  color: var(--color-white);
}

.whatsapp-header,
.whatsapp-float {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--color-white) !important;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.24);
}

.whatsapp-header:hover,
.whatsapp-float:hover {
  background: linear-gradient(135deg, #2ee477, #0f7d70);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  pointer-events: none;
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 25%, rgba(37, 211, 102, 0.12), transparent 28%),
    linear-gradient(to right, rgba(6,18,24,0.88) 0%, rgba(6,18,24,0.58) 48%, rgba(6,18,24,0.16) 100%);
}

.hero-eyebrow,
.section-kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}

.hero-eyebrow {
  color: #8ff0bd;
}

.section-kicker.text-center {
  text-align: center;
}

.service-item,
.step-item,
.faq-wrap,
.about-img,
.diff-img,
.gallery-item,
.service-img-wrapper {
  border-radius: 18px;
}

.service-item {
  background: var(--color-white);
  padding: 0.85rem;
  box-shadow: 0 18px 55px rgba(15, 76, 92, 0.08);
  border: 1px solid rgba(15, 76, 92, 0.08);
}

.section:not(.section-light) .service-item {
  box-shadow: none;
}

.service-content {
  padding: 0 0.35rem 0.35rem;
}

.diff-img,
.about-img,
.gallery-item {
  box-shadow: 0 24px 70px rgba(0,0,0,0.10);
}

.gallery-grid {
  gap: 0.85rem;
}

.step-item {
  padding: 1.4rem;
  background: var(--color-white);
  border: 1px solid #e7eef0;
}

.faq-wrap {
  background: var(--color-white);
  border: 1px solid #e7eef0;
  padding: 0 1.5rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.05);
}

.cta-overlay {
  background: linear-gradient(135deg, rgba(7, 28, 36, 0.88), rgba(15, 76, 92, 0.82));
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--transition-normal);
}

.whatsapp-float::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.18);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .whatsapp-header {
    display: inline-flex !important;
  }

  .header .nav-links .whatsapp-header {
    color: var(--color-white) !important;
  }

  .service-item {
    padding: 0.65rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 0.85rem 1rem;
  }
}

.portfolio-section .gallery-grid {
  gap: 1.1rem;
}

.portfolio-section .gallery-item {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(38, 198, 210, 0.14);
}

@media (max-width: 768px) {
  .portfolio-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .portfolio-section .gallery-grid {
    gap: 0.85rem;
  }

  .gallery-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .portfolio-cta {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
    text-align: center;
  }
}

/* Header mais espaçado e com navegação em pílulas */
.header {
  padding: 1.05rem 0;
  background: transparent;
}

.header.scrolled {
  padding: 0.85rem 0;
  background: transparent;
  box-shadow: none;
}

.header .container {
  max-width: 1120px;
  grid-template-columns: 104px 1fr auto;
  gap: 1.25rem;
  padding: 0.72rem 1rem 0.72rem 1.35rem;
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-black);
  box-shadow: 0 18px 50px rgba(7, 18, 24, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo {
  font-size: 1.42rem;
}

.logo-img {
  font-size: 0;
}

.nav-links {
  gap: 0.55rem;
}

.nav-links a:not(.btn) {
  min-width: 88px;
  padding: 0.68rem 1.05rem;
  border: 1px solid rgba(29, 29, 31, 0.18);
  border-radius: 999px;
  color: var(--color-black);
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.nav-links a:not(.btn):first-child {
  border-color: #080b2d;
  background: #080b2d;
  color: var(--color-white);
}

.nav-links a:not(.btn):hover {
  border-color: var(--color-blue);
  background: rgba(15, 76, 92, 0.08);
  color: var(--color-blue);
  transform: translateY(-1px);
}

.nav-links a:not(.btn):first-child:hover {
  background: #10164a;
  color: var(--color-white);
}

.whatsapp-header {
  min-height: 44px;
  padding: 0.78rem 1.45rem;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .header .container {
    max-width: calc(100% - 2rem);
    grid-template-columns: 120px 1fr auto;
  }

  .nav-links a:not(.btn) {
    min-width: auto;
    padding: 0.62rem 0.82rem;
  }
}

@media (max-width: 768px) {
  .header .container {
    display: flex;
    justify-content: space-between;
    max-width: calc(100% - 1.25rem);
    padding: 0.8rem 1rem;
  }

  .header .nav-links {
    gap: 0.75rem;
    border-radius: 28px 0 0 28px;
  }

  .header .nav-links a:not(.btn) {
    width: 100%;
    min-width: 0;
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 768px) {
  .workflow-section h2 {
    margin-bottom: 2.5rem;
  }

  .workflow-row,
  .workflow-row.active {
    grid-template-columns: 40px 1fr;
    min-height: auto;
    padding: 1.15rem 0;
    border-radius: 0;
  }

  .workflow-row.active {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .workflow-tag {
    grid-column: 2;
    justify-self: start;
    margin-top: -0.35rem;
  }
}

/* Logo centralizada dentro do menu */
.header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .nav-links {
  width: 100%;
  justify-content: center;
}

.header .nav-links .nav-logo {
  width: 76px;
  height: 76px;
  min-width: 76px !important;
  margin: 0 0.55rem;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
}

.header .nav-links .nav-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 26px rgba(7, 18, 24, 0.18);
}

.header .nav-links .nav-logo:hover {
  transform: translateY(-2px);
  background: transparent !important;
  border-color: transparent !important;
}

@media (max-width: 768px) {
  .header .container {
    justify-content: space-between;
  }

  .header .nav-links .nav-logo {
    margin: 0.4rem 0;
  }
}

/* Header final */
.header.header-simple {
  padding: 1rem 0;
}

.header.header-simple .container {
  max-width: 1160px;
  display: grid !important;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 1.8rem;
  padding: 0.9rem 1.25rem !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.93) !important;
  box-shadow: 0 20px 46px rgba(9, 30, 41, 0.1) !important;
  backdrop-filter: blur(18px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
}

.header.header-simple.scrolled .container {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 18px 40px rgba(9, 30, 41, 0.12) !important;
}

.header.header-simple .header-logo {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.header.header-simple .header-logo img,
.header-simple .header-logo img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(8, 25, 36, 0.14) !important;
}

.header.header-simple .nav-links,
.header-simple .nav-links {
  width: auto;
  justify-content: center;
  gap: 0.55rem;
}

.header.header-simple .nav-links a:not(.btn),
.header.header-simple .nav-links a:not(.btn):not(.nav-logo),
.header-simple .nav-links a:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 0;
  padding: 0 1rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #24313b !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  transition: background-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.header.header-simple .nav-links a:not(.btn):first-child,
.header.header-simple .nav-links a:not(.btn):not(.nav-logo):first-child,
.header.header-simple.scrolled .nav-links a:not(.btn):first-child,
.header.header-simple.scrolled .nav-links a:not(.btn):not(.nav-logo):first-child,
.header-simple .nav-links a:not(.btn):first-child,
.header-simple.scrolled .nav-links a:not(.btn):first-child {
  color: #24313b !important;
  background: transparent !important;
}

.header.header-simple .nav-links a:not(.btn):hover,
.header.header-simple .nav-links a:not(.btn):not(.nav-logo):hover,
.header-simple .nav-links a:not(.btn):hover {
  color: var(--color-blue) !important;
  background: rgba(15, 76, 92, 0.08) !important;
  transform: translateY(-1px);
}

.header.header-simple .nav-links a.is-active:not(.btn),
.header.header-simple .nav-links a[aria-current=\"page\"]:not(.btn),
.header.header-simple .nav-links a.is-active:not(.btn):not(.nav-logo),
.header.header-simple .nav-links a[aria-current=\"page\"]:not(.btn):not(.nav-logo) {
  color: var(--color-blue) !important;
  background: rgba(15, 76, 92, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(15, 76, 92, 0.1) !important;
}

.header.header-simple .whatsapp-header,
.header-simple .whatsapp-header {
  justify-self: end;
  min-height: 50px;
  padding: 0.9rem 1.45rem !important;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 16px 28px rgba(37, 195, 102, 0.22);
}

.header.header-simple .whatsapp-header:hover,
.header-simple .whatsapp-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37, 195, 102, 0.26);
}

@media (max-width: 768px) {
  .header.header-simple .container,
  .header-simple .container {
    display: flex !important;
    justify-content: space-between;
    max-width: calc(100% - 1.25rem);
    padding: 0.75rem 0.95rem !important;
    border-radius: 28px;
  }

  .header.header-simple .header-logo,
  .header-simple .header-logo {
    width: 60px;
    height: 60px;
  }

  .header.header-simple .header-logo img,
  .header-simple .header-logo img {
    width: 54px !important;
    height: 54px !important;
  }

  .header.header-simple .whatsapp-header,
  .header-simple .whatsapp-header {
    display: none !important;
  }
}

/* Header final */
.header.header-simple {
  padding: 1rem 0;
}

.header.header-simple .container {
  max-width: 1160px;
  display: grid !important;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 1.8rem;
  padding: 0.9rem 1.25rem !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.93) !important;
  box-shadow: 0 20px 46px rgba(9, 30, 41, 0.1) !important;
  backdrop-filter: blur(18px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
}

.header.header-simple.scrolled .container {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 18px 40px rgba(9, 30, 41, 0.12) !important;
}

.header.header-simple .header-logo {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.header.header-simple .header-logo img,
.header-simple .header-logo img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(8, 25, 36, 0.14) !important;
}

.header.header-simple .nav-links,
.header-simple .nav-links {
  width: auto;
  justify-content: center;
  gap: 0.55rem;
}

.header.header-simple .nav-links a:not(.btn),
.header.header-simple .nav-links a:not(.btn):not(.nav-logo),
.header-simple .nav-links a:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 0;
  padding: 0 1rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #24313b !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  transition: background-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.header.header-simple .nav-links a:not(.btn):first-child,
.header.header-simple .nav-links a:not(.btn):not(.nav-logo):first-child,
.header.header-simple.scrolled .nav-links a:not(.btn):first-child,
.header.header-simple.scrolled .nav-links a:not(.btn):not(.nav-logo):first-child,
.header-simple .nav-links a:not(.btn):first-child,
.header-simple.scrolled .nav-links a:not(.btn):first-child {
  color: #24313b !important;
  background: transparent !important;
}

.header.header-simple .nav-links a:not(.btn):hover,
.header.header-simple .nav-links a:not(.btn):not(.nav-logo):hover,
.header-simple .nav-links a:not(.btn):hover {
  color: var(--color-blue) !important;
  background: rgba(15, 76, 92, 0.08) !important;
  transform: translateY(-1px);
}

.header.header-simple .nav-links a.is-active:not(.btn),
.header.header-simple .nav-links a[aria-current="page"]:not(.btn),
.header.header-simple .nav-links a.is-active:not(.btn):not(.nav-logo),
.header.header-simple .nav-links a[aria-current="page"]:not(.btn):not(.nav-logo) {
  color: var(--color-blue) !important;
  background: rgba(15, 76, 92, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(15, 76, 92, 0.1) !important;
}

.header.header-simple .whatsapp-header,
.header-simple .whatsapp-header {
  justify-self: end;
  min-height: 50px;
  padding: 0.9rem 1.45rem !important;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 16px 28px rgba(37, 195, 102, 0.22);
}

.header.header-simple .whatsapp-header:hover,
.header-simple .whatsapp-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37, 195, 102, 0.26);
}

@media (max-width: 768px) {
  .header.header-simple .container,
  .header-simple .container {
    display: flex !important;
    justify-content: space-between;
    max-width: calc(100% - 1.25rem);
    padding: 0.75rem 0.95rem !important;
    border-radius: 28px;
  }

  .header.header-simple .header-logo,
  .header-simple .header-logo {
    width: 60px;
    height: 60px;
  }

  .header.header-simple .header-logo img,
  .header-simple .header-logo img {
    width: 54px !important;
    height: 54px !important;
  }

  .header.header-simple .whatsapp-header,
  .header-simple .whatsapp-header {
    display: none !important;
  }
}

/* Override final do header simples */
.header.header-simple {
  padding: 1rem 0;
}

.header.header-simple .container {
  max-width: 1160px;
  display: grid !important;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 1.8rem;
  padding: 0.9rem 1.25rem !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.93) !important;
  box-shadow: 0 20px 46px rgba(9, 30, 41, 0.1) !important;
  backdrop-filter: blur(18px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
}

.header.header-simple.scrolled .container {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 18px 40px rgba(9, 30, 41, 0.12) !important;
}

.header.header-simple .header-logo {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.header.header-simple .header-logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(8, 25, 36, 0.14);
}

.header.header-simple .nav-links {
  width: auto;
  justify-content: center;
  gap: 0.55rem;
}

.header.header-simple .nav-links a:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border: 0 !important;
  border-radius: 999px;
  background: transparent !important;
  color: #24313b !important;
  box-shadow: none !important;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.header.header-simple .nav-links a:not(.btn):first-child,
.header.header-simple.scrolled .nav-links a:not(.btn):first-child {
  color: #24313b !important;
}

.header.header-simple .nav-links a:not(.btn):hover {
  color: var(--color-blue) !important;
  background: rgba(15, 76, 92, 0.08) !important;
  transform: translateY(-1px);
}

.header.header-simple .nav-links a.is-active:not(.btn),
.header.header-simple .nav-links a[aria-current="page"]:not(.btn) {
  color: var(--color-blue) !important;
  background: rgba(15, 76, 92, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(15, 76, 92, 0.1) !important;
}

.header.header-simple .whatsapp-header {
  justify-self: end;
  min-height: 50px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 16px 28px rgba(37, 195, 102, 0.22);
}

.header.header-simple .whatsapp-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37, 195, 102, 0.26);
}

@media (max-width: 768px) {
  .header.header-simple .container {
    display: flex !important;
    justify-content: space-between;
    max-width: calc(100% - 1.25rem);
    padding: 0.75rem 0.95rem !important;
    border-radius: 28px;
  }

  .header.header-simple .header-logo {
    width: 60px;
    height: 60px;
  }

  .header.header-simple .header-logo img {
    width: 54px;
    height: 54px;
  }

  .header.header-simple .whatsapp-header {
    display: none !important;
  }
}

/* Ajuste fino do topo */
.header-simple {
  padding: 1rem 0;
}

.header-simple .container {
  max-width: 1160px;
  grid-template-columns: 92px 1fr auto;
  gap: 1.8rem;
  padding: 0.9rem 1.25rem !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 20px 46px rgba(9, 30, 41, 0.1) !important;
  backdrop-filter: blur(18px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
}

.header-simple.scrolled .container {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 18px 40px rgba(9, 30, 41, 0.12) !important;
}

.header-simple .header-logo {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-simple .header-logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(8, 25, 36, 0.14);
}

.header-simple .nav-links {
  gap: 0.55rem;
}

.header-simple .nav-links a:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  color: #24313b;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.header-simple .nav-links a:not(.btn):first-child,
.header-simple.scrolled .nav-links a:not(.btn):first-child {
  color: #24313b;
}

.header-simple .nav-links a:not(.btn):hover {
  color: var(--color-blue);
  background: rgba(15, 76, 92, 0.08);
  transform: translateY(-1px);
}

.header-simple .nav-links a.is-active:not(.btn),
.header-simple .nav-links a[aria-current="page"]:not(.btn) {
  color: var(--color-blue);
  background: rgba(15, 76, 92, 0.1);
  box-shadow: inset 0 0 0 1px rgba(15, 76, 92, 0.1);
}

.header-simple .whatsapp-header {
  min-height: 50px;
  padding: 0.9rem 1.45rem;
  font-size: 0.95rem;
  box-shadow: 0 16px 28px rgba(37, 195, 102, 0.22);
}

.header-simple .whatsapp-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37, 195, 102, 0.26);
}

@media (max-width: 768px) {
  .header-simple .container {
    padding: 0.75rem 0.95rem !important;
    border-radius: 28px;
  }

  .header-simple .header-logo {
    width: 60px;
    height: 60px;
  }

  .header-simple .header-logo img {
    width: 54px;
    height: 54px;
  }
}

/* Header invisível: remove a cápsula branca */
.header .container {
  max-width: 1080px;
  padding: 0.55rem 1rem !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.header .nav-links a:not(.btn):not(.nav-logo) {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header .nav-links a:not(.btn):not(.nav-logo):first-child {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.header .nav-links a:not(.btn):not(.nav-logo):hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.22);
  color: var(--color-white);
}

.header.scrolled .nav-links a:not(.btn):not(.nav-logo) {
  border-color: rgba(15, 76, 92, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-black);
  box-shadow: 0 10px 26px rgba(7, 18, 24, 0.08);
}

.header.scrolled .nav-links a:not(.btn):not(.nav-logo):first-child {
  background: #080b2d;
  color: var(--color-white);
}

/* Galeria clean com fotos clicáveis */
.portfolio-clean {
  background: #f7f8fa;
  color: var(--color-black);
  overflow: hidden;
}

.portfolio-clean h2,
.portfolio-clean h3 {
  color: var(--color-black);
}

.portfolio-clean-container {
  max-width: 1180px;
}

.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 78px;
  gap: 1rem;
  align-items: center;
  min-height: 610px;
}

.portfolio-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 20px;
  background: var(--color-white);
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(15, 76, 92, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.portfolio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-normal);
}

.portfolio-photo:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 76, 92, 0.28);
  box-shadow: 0 24px 60px rgba(15, 76, 92, 0.18);
}

.portfolio-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.03);
}

.photo-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.photo-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.photo-3 { grid-column: 5 / 7; grid-row: 1 / 4; }
.photo-4 { grid-column: 7 / 9; grid-row: 1 / 3; }
.photo-5 { grid-column: 9 / 11; grid-row: 1 / 4; }
.photo-6 { grid-column: 11 / 13; grid-row: 1 / 3; }
.photo-7 { grid-column: 1 / 3; grid-row: 3 / 5; }
.photo-8 { grid-column: 3 / 5; grid-row: 2 / 5; }
.photo-9 { grid-column: 9 / 11; grid-row: 4 / 6; }
.photo-10 { grid-column: 11 / 13; grid-row: 3 / 5; }
.photo-11 { grid-column: 2 / 4; grid-row: 5 / 7; }
.photo-12 { grid-column: 10 / 12; grid-row: 5 / 7; }

.portfolio-center {
  grid-column: 4 / 10;
  grid-row: 5 / 8;
  align-self: center;
  justify-self: center;
  max-width: 620px;
  padding: 2rem 1rem 1rem;
  text-align: center;
  z-index: 2;
}

.portfolio-pill {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid #cbd5da;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.portfolio-center h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.portfolio-center p {
  max-width: 440px;
  margin: 0 auto;
  color: #7b848a;
  font-size: 1rem;
}

.clean-portfolio-cta {
  max-width: 620px;
  margin-top: 2.6rem;
  border-color: #dfe7ea;
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 18px 44px rgba(15, 76, 92, 0.08);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(4, 8, 13, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-lightbox-panel {
  max-width: min(920px, 92vw);
  max-height: 88vh;
  text-align: center;
}

.photo-lightbox-panel img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.photo-lightbox-panel p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.photo-lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .portfolio-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 88px;
    min-height: auto;
  }

  .portfolio-center {
    grid-column: 1 / -1;
    grid-row: 1 / 3;
    order: -1;
  }

  .photo-1,
  .photo-2,
  .photo-3,
  .photo-4,
  .photo-5,
  .photo-6,
  .photo-7,
  .photo-8,
  .photo-9,
  .photo-10,
  .photo-11,
  .photo-12 {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 560px) {
  .portfolio-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 0.75rem;
  }

  .portfolio-center {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 0 0 1rem;
  }

  .portfolio-photo {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    border-radius: 16px;
  }

  .portfolio-center h2 {
    font-size: 2.4rem;
  }

  .photo-lightbox {
    padding: 1rem;
  }
}

/* Hero limpo inspirado na referência */
.hero-clean {
  min-height: 780px;
  height: 100vh;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(58, 111, 158, 0.28), transparent 34%),
    linear-gradient(180deg, #111832 0%, #263650 48%, #0b1018 100%);
  overflow: hidden;
}

.hero-clean .hero-bg {
  opacity: 0.28;
  filter: grayscale(0.1) saturate(0.8) contrast(0.95) blur(1px);
  transform: scale(1.04);
}

.hero-clean .hero-overlay {
  background:
    radial-gradient(circle at 22% 12%, rgba(255,255,255,0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 8%, rgba(255,255,255,0.12) 0 1px, transparent 2px),
    linear-gradient(180deg, rgba(6, 10, 22, 0.58) 0%, rgba(22, 34, 56, 0.18) 42%, rgba(6, 9, 15, 0.82) 100%);
}

.hero-clean::after {
  height: 46%;
  background: linear-gradient(to top, rgba(247, 248, 250, 0.92), rgba(247, 248, 250, 0));
}

.hero-clean-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-clean .hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 2rem;
}

.hero-clean .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding: 0.58rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.hero-clean h1 {
  max-width: 860px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-clean p {
  max-width: 640px;
  margin: 0 auto 2.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.65;
}

.hero-clean .hero-buttons {
  justify-content: center;
  gap: 0.85rem;
}

.hero-clean .btn {
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.hero-btn-primary {
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.hero-btn-primary:hover {
  background: var(--color-white);
  color: #111827;
}

.hero-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(14px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}

.hero-mini-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .hero-clean {
    min-height: 720px;
    padding-top: 7rem;
  }

  .hero-clean h1 {
    font-size: clamp(2.6rem, 14vw, 4.8rem);
  }

  .hero-clean .hero-buttons {
    align-items: center;
  }

  .hero-clean .btn {
    width: min(100%, 310px);
  }

  .hero-mini-note {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero com imagem residencial clara */
.hero-photo {
  min-height: 820px;
  align-items: flex-start;
  padding-top: 8.8rem;
  background: transparent;
  isolation: isolate;
}

.hero-photo .hero-bg {
  z-index: 0;
  opacity: 1;
  filter: none;
  transform: none;
  object-position: center bottom;
}

.hero-photo .hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 93, 145, 0.22) 0%, rgba(98, 164, 210, 0.08) 24%, rgba(255,255,255,0) 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.06) 100%);
}

.hero-photo::after {
  height: 28%;
  background: linear-gradient(to top, rgba(247, 248, 250, 0.86), rgba(247, 248, 250, 0));
}

.hero-photo .hero-content {
  max-width: 760px;
  padding-top: 0;
}

.hero-photo .hero-eyebrow {
  margin-bottom: 0.9rem;
  padding: 0.48rem 0.82rem;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  box-shadow: 0 10px 26px rgba(26, 93, 145, 0.16);
}

.hero-photo h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(3.1rem, 6.5vw, 5.7rem);
  text-shadow: 0 14px 46px rgba(26, 65, 102, 0.22);
}

.hero-photo p {
  max-width: 560px;
  margin-bottom: 1.55rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 28px rgba(26, 65, 102, 0.18);
}

.hero-photo .hero-buttons {
  margin-top: 0.3rem;
}

.hero-photo .hero-btn-primary {
  background: rgba(255, 255, 255, 0.94);
  color: #172033;
}

.hero-photo .hero-btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-photo .hero-mini-note {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 8px 24px rgba(26, 65, 102, 0.16);
}

@media (max-width: 768px) {
  .hero-photo {
    min-height: 760px;
    padding-top: 7.4rem;
  }

  .hero-photo .hero-bg {
    object-position: center bottom;
  }
}

/* Header simples e profissional */
.header-simple {
  padding: 1.1rem 0;
}

.header-simple .container {
  max-width: 1120px;
  display: grid !important;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.65rem 1rem !important;
  border: 0 !important;
  background: rgba(8, 14, 27, 0.18) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-radius: 999px;
}

.header-simple.scrolled .container {
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 14px 34px rgba(7, 18, 24, 0.1) !important;
}

.header-simple .header-logo {
  width: 64px;
  height: 64px;
  justify-self: start;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.header-simple .header-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(7, 18, 24, 0.16);
}

.header-simple .nav-links {
  width: auto;
  justify-content: center;
  gap: 2.2rem;
}

.header-simple .nav-links a:not(.btn) {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  backdrop-filter: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header-simple .nav-links a:not(.btn):first-child {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}

.header-simple .nav-links a:not(.btn):hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-1px);
}

.header-simple.scrolled .nav-links a:not(.btn),
.header-simple.scrolled .nav-links a:not(.btn):first-child {
  background: transparent;
  color: var(--color-black);
  box-shadow: none;
}

.header-simple .whatsapp-header {
  justify-self: end;
  min-height: 46px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .header-simple .container {
    display: flex !important;
    justify-content: space-between;
    max-width: calc(100% - 1.25rem);
    border-radius: 26px;
  }

  .header-simple .header-logo {
    width: 56px;
    height: 56px;
  }

  .header-simple .header-logo img {
    width: 52px;
    height: 52px;
  }

  .header-simple .nav-links {
    gap: 0.85rem;
  }

  .header-simple .nav-links a:not(.btn) {
    width: 100%;
    padding: 0.9rem 1rem;
    color: var(--color-black);
  }

  .header-simple .whatsapp-header {
    display: none !important;
  }
}

/* Faixa de confiança mais limpa */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -3.4rem;
  padding: 0 0 5rem;
  background: transparent;
  border: 0;
}

.trust-strip .credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-strip .credibility-item {
  align-items: flex-start;
  gap: 1rem;
  min-height: 150px;
  padding: 1.25rem;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(15, 76, 92, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trust-strip .credibility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #eef8fa;
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-strip strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.trust-strip .credibility-text {
  display: block;
  color: #6f7b84;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .trust-strip .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trust-strip {
    margin-top: -2rem;
    padding-bottom: 4rem;
  }

  .trust-strip .credibility-grid {
    grid-template-columns: 1fr;
  }
}

/* Serviços redesenhados */
.services-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 76, 92, 0.08), transparent 30%),
    #f7f9fa;
  padding-top: 7rem;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.2rem;
}

.services-heading .section-kicker {
  text-align: left;
}

.services-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.services-heading-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.services-heading-copy p {
  max-width: 460px;
  color: #68747c;
  font-size: 1rem;
  line-height: 1.7;
}

.services-heading-copy a {
  display: inline-flex;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
}

.service-card a {
  display: block;
  height: 100%;
  padding: 0.65rem;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(15, 76, 92, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card a:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 76, 92, 0.24);
  box-shadow: 0 30px 80px rgba(15, 76, 92, 0.14);
}

.service-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: #e9eef1;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card a:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-image span {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-card-content {
  padding: 1.2rem 0.75rem 0.8rem;
}

.service-card-content h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.service-card-content p {
  margin-bottom: 1rem;
  color: #747d84;
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-card-content strong {
  color: var(--color-blue);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .services-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .services-section {
    padding-top: 5rem;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }
}

/* Override final: logo no centro da navegação */
.header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .nav-links {
  width: 100%;
  justify-content: center;
}

.header .nav-links .nav-logo {
  width: 76px;
  height: 76px;
  min-width: 76px !important;
  margin: 0 0.55rem;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
}

.header .nav-links .nav-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 26px rgba(7, 18, 24, 0.18);
}

.header .nav-links .nav-logo:hover {
  transform: translateY(-2px);
  background: transparent !important;
  border-color: transparent !important;
}

@media (max-width: 768px) {
  .header .container {
    justify-content: space-between;
  }

  .header .nav-links .nav-logo {
    margin: 0.4rem 0;
  }
}

/* Services redesign */
.services-section {
  background:
    radial-gradient(circle at top left, rgba(15, 76, 92, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbfc 0%, #f2f6f7 100%);
  padding-top: 7rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 7.5rem;
  padding: 1rem 1rem 1rem 0;
}

.services-intro .section-kicker {
  text-align: left;
}

.services-intro h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 10ch;
}

.services-intro p {
  max-width: 34rem;
  color: #61717a;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.services-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0 1rem;
  border: 1px solid rgba(15, 76, 92, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #21414d;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.services-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 76, 92, 0.24);
  background: rgba(15, 76, 92, 0.08);
}

.services-pill.is-active {
  border-color: rgba(15, 76, 92, 0.22);
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(15, 76, 92, 0.16);
}

.services-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(15, 76, 92, 0.18);
}

.services-rail {
  display: grid;
  gap: 1rem;
}

.service-row a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(15, 76, 92, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-row a:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 76, 92, 0.18);
  box-shadow: 0 26px 60px rgba(15, 76, 92, 0.12);
}

.service-row.is-highlighted a {
  border-color: rgba(15, 76, 92, 0.22);
  box-shadow: 0 24px 62px rgba(15, 76, 92, 0.14);
  background: #ffffff;
}

.service-row-image {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1.2 / 1;
  background: #dfe8eb;
}

.service-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-row a:hover .service-row-image img {
  transform: scale(1.04);
}

.service-row-content {
  min-width: 0;
}

.service-row-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.service-row-top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(15, 76, 92, 0.08);
  color: var(--color-blue);
  font-weight: 800;
}

.service-row-top small {
  color: #6d7b82;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-row-content h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.service-row-content p {
  margin: 0;
  color: #6c7980;
  line-height: 1.65;
}

.service-row strong {
  color: var(--color-blue);
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
    padding-right: 0;
  }
}

@media (max-width: 820px) {
  .service-row a {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-row-image {
    aspect-ratio: 16 / 10;
  }

  .service-row strong {
    display: inline-flex;
  }
}

@media (max-width: 580px) {
  .services-section {
    padding-top: 5rem;
  }

  .services-intro h2 {
    max-width: 100%;
  }

  .service-row a {
    padding: 0.85rem;
    border-radius: 24px;
  }
}

/* Differentials typography refinement */
.differentials-wrap {
  gap: clamp(4rem, 7vw, 6rem);
}

.diff-content-inner {
  max-width: 500px;
}

.diff-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diff-content-inner h2 {
  max-width: 9ch;
  margin: 0 0 1.1rem;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.diff-content-inner p {
  max-width: 30rem;
  margin: 0;
  color: #6d7880;
  font-size: 1.08rem;
  line-height: 1.78;
  letter-spacing: -0.01em;
}

.diff-list {
  margin-top: 1.8rem;
  gap: 0.95rem;
}

.diff-list-item {
  gap: 0.9rem;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.diff-list-item svg {
  flex: 0 0 1.7rem;
  width: 1.7rem;
  height: 1.7rem;
}

@media (max-width: 768px) {
  .diff-content-inner h2 {
    max-width: 100%;
    font-size: clamp(2.5rem, 9vw, 3.6rem);
  }

  .diff-content-inner p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .diff-list-item {
    font-size: 1.06rem;
  }
}

/* Workflow refinement */
.workflow-section {
  background:
    radial-gradient(circle at top center, rgba(15, 76, 92, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfcfc 0%, #f4f7f8 100%);
}

.workflow-container {
  max-width: 1020px;
}

.workflow-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.workflow-intro {
  max-width: 40rem;
  margin: 0 auto 3.4rem;
  color: #6a7780;
  font-size: 1.05rem;
  line-height: 1.75;
}

.workflow-list {
  padding: 1rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 26px 70px rgba(15, 76, 92, 0.08);
  backdrop-filter: blur(10px);
}

.workflow-row {
  grid-template-columns: 62px 1fr auto;
  min-height: 92px;
  padding: 0 1.2rem;
  border-bottom: 1px solid rgba(15, 76, 92, 0.1);
}

.workflow-row:last-child {
  border-bottom: 0;
}

.workflow-row.active {
  min-height: 96px;
  padding: 0 1.35rem;
  border: 1px solid rgba(15, 76, 92, 0.22);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 76, 92, 0.08);
}

.workflow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(15, 76, 92, 0.07);
  font-size: 0.95rem;
  font-weight: 800;
  color: #7b8890;
}

.workflow-row.active .workflow-number {
  background: rgba(15, 76, 92, 0.12);
  color: var(--color-blue);
}

.workflow-row h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.workflow-tag {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 76, 92, 0.05);
  color: #6d7c84;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

@media (max-width: 768px) {
  .workflow-section h2 {
    font-size: clamp(2.5rem, 10vw, 3.6rem);
  }

  .workflow-intro {
    margin-bottom: 2.4rem;
    font-size: 0.98rem;
  }

  .workflow-list {
    padding: 0.6rem;
    border-radius: 26px;
  }

  .workflow-row,
  .workflow-row.active {
    grid-template-columns: 48px 1fr;
    gap: 0.85rem;
    padding: 1rem;
    min-height: auto;
  }

  .workflow-tag {
    grid-column: 2;
    justify-self: start;
    margin-top: -0.1rem;
  }
}

/* About refinement */
.about-grid {
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-text {
  max-width: 560px;
}

.about-text h2 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.about-text p {
  font-size: 1.08rem;
  line-height: 1.82;
  color: #66747c;
  margin-bottom: 1.4rem;
}

.about-points {
  display: grid;
  gap: 0.8rem;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.1rem;
  padding: 0 1rem;
  border: 1px solid rgba(15, 76, 92, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: #21343e;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-point::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-blue);
  box-shadow: 0 0 0 6px rgba(15, 76, 92, 0.1);
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 34px;
  background: radial-gradient(circle at top left, rgba(15, 76, 92, 0.12), transparent 45%);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 11;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 76, 92, 0.16);
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: clamp(2.45rem, 9vw, 3.8rem);
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .about-img-wrap::before {
    inset: -10px;
    border-radius: 24px;
  }

  .about-img {
    border-radius: 22px;
  }
}

/* FAQ refinement */
.faq-section {
  background: linear-gradient(180deg, #fbfcfd 0%, #f5f8f9 100%);
}

.faq-container {
  max-width: 1080px;
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto 2.8rem;
}

.faq-heading h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.faq-intro {
  max-width: 38rem;
  margin: 0 auto;
  color: #6c7981;
  font-size: 1.04rem;
  line-height: 1.75;
}

.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(15, 76, 92, 0.08);
}

.faq-question {
  padding: 1.45rem 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: #51616a;
}

.faq-answer-inner {
  max-width: 48rem;
  padding-bottom: 1.45rem;
  color: #6c7981;
  line-height: 1.72;
}

@media (max-width: 768px) {
  .faq-heading {
    margin-bottom: 2rem;
  }

  .faq-heading h2 {
    font-size: clamp(2.4rem, 9vw, 3.7rem);
  }

  .faq-intro {
    font-size: 0.98rem;
  }

  .faq-wrap {
    padding: 0.45rem 1rem;
    border-radius: 24px;
  }

  .faq-question {
    padding: 1.15rem 0;
    font-size: 1.08rem;
  }
}

/* Trust strip alignment refinement */
.trust-strip {
  margin-top: -2.2rem;
  padding: 0 0 4.2rem;
}

.trust-strip .container {
  max-width: 1240px;
}

.trust-strip .credibility-grid {
  gap: 1.15rem;
  align-items: stretch;
}

.trust-strip .credibility-item {
  min-height: 0;
  height: 100%;
  padding: 1.3rem 1.35rem;
  border-radius: 26px;
}

.trust-strip .credibility-item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90px;
}

.trust-strip strong {
  margin-bottom: 0.45rem;
  line-height: 1.15;
}

.trust-strip .credibility-text {
  max-width: 18ch;
}

@media (max-width: 1100px) {
  .trust-strip {
    margin-top: -1.6rem;
  }

  .trust-strip .container {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .trust-strip {
    margin-top: -1rem;
    padding-bottom: 3.2rem;
  }

  .trust-strip .credibility-item > div {
    min-height: 0;
  }

  .trust-strip .credibility-text {
    max-width: none;
  }
}

/* WhatsApp button icons */
.btn-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 1.05rem;
}

.btn-whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-header,
.hero-btn-primary,
.services-main-cta,
.cta-content .btn-primary,
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* Contact map section */
.contact-map-section {
  position: relative;
  padding: 6rem 0;
  color: var(--color-white);
  background:
    radial-gradient(circle at top right, rgba(64, 186, 201, 0.16), transparent 30%),
    linear-gradient(135deg, #0d3b49 0%, #134f62 55%, #0f4657 100%);
}

.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 2rem;
  align-items: stretch;
}

.contact-copy {
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.contact-copy .section-kicker {
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

.contact-copy h2 {
  color: var(--color-white);
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.contact-highlights {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
}

.contact-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-weight: 500;
}

.contact-highlight::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4ed1df;
  box-shadow: 0 0 0 5px rgba(78, 209, 223, 0.18);
}

.contact-map-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(5, 20, 26, 0.22);
  backdrop-filter: blur(16px);
}

.contact-map-frame {
  min-height: 380px;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.contact-map-footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem 1.25rem;
  color: var(--color-white);
}

.contact-map-footer strong {
  font-size: 1rem;
}

.contact-map-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .contact-map-section {
    padding: 5rem 0;
  }

  .contact-copy h2 {
    font-size: clamp(2.45rem, 9vw, 3.7rem);
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 300px;
  }
}

/* Fix mobile alignments */
@media (max-width: 768px) {
  .hero-content, .hero-clean .hero-content, .hero-photo .hero-content,
  .contact-copy, .about-text, .diff-content-inner, 
  .contact-copy p, .about-text p, .diff-content-inner p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  
  .diff-list, .about-points, .contact-highlights {
    justify-content: center;
    align-items: center;
  }
  
  .diff-list-item {
    justify-content: center;
    text-align: left;
  }
  
  .about-point {
    justify-content: center;
    text-align: left;
  }
}

/* Fix mobile header style for round logo */
@media (max-width: 768px) {
  .header.header-simple .container,
  .header-simple .container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    padding: 0.6rem 1.25rem !important;
  }
  
  .header.header-simple .header-logo,
  .header-simple .header-logo {
    width: 65px !important;
    height: 65px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .header.header-simple .header-logo img,
  .header-simple .header-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
  }
}
