/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --olive: #494c3d;
  --olive-dark: #3a3d30;
  --olive-soft: #8a6e3e;
  --cream: #f5f0e8;
  --orange: #df7c1e;
  --orange-dark: #c46b14;
  --white: #ffffff;
  --ink: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'League Spartan', sans-serif;
  background: var(--olive);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 48px;
  background: transparent;
  border-radius: 0;
  transition: all 0.4s ease;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 32px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 100%;
  width: auto;
  transition: opacity 0.3s ease;
}

.nav-logo .logo-olive {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--cream);
  color: var(--olive);
}

/* Navbar scrolled state */
.navbar.scrolled {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1280px;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  padding: 16px 40px;
}

.navbar.scrolled .nav-logo .logo-white {
  display: none;
}

.navbar.scrolled .nav-logo .logo-olive {
  display: block;
}

.navbar.scrolled .nav-links a {
  color: var(--olive);
  opacity: 1;
}

.navbar.scrolled .nav-cta {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.navbar.scrolled .nav-cta:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--cream);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  background: var(--olive);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay para manter legibilidade do texto sobre o vídeo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(73, 76, 61, 0.78) 0%,
      rgba(73, 76, 61, 0.55) 45%,
      rgba(73, 76, 61, 0.35) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.hero-headline .line {
  display: block;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--olive);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--orange);
  color: var(--white);
}

.hero-cta:hover span {
  transform: translateX(4px);
}

.hero-cta span {
  transition: transform 0.3s ease;
}

/* ============ HERO FOOTER ============ */
.hero-footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  padding: 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}

.hero-tags .tags-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.tag-rotator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 240, 232, 0.4);
  border-radius: 50px;
  padding: 6px 20px;
  min-width: 160px;
  height: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.tag-rotator:hover {
  border-color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
}

.tag-rotator-track {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.tag-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.tag-word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.tag-word.is-leaving {
  opacity: 0;
  transform: translateY(-100%);
}

.hero-social {
  display: flex;
  gap: 12px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--cream);
  color: var(--olive);
  transform: translateY(-2px);
}

/* ============ FLOATING WIDGET ============ */
.floating-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--cream);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 999;
  max-width: 380px;
}

.widget-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.widget-icon svg {
  width: 22px;
  height: 22px;
}

.widget-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--olive);
  line-height: 1.3;
  flex: 1;
}

.widget-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--orange);
  color: var(--white);
  white-space: nowrap;
  transition: background 0.3s ease;
}

.widget-cta:hover {
  background: #c46b14;
}

/* ============ ANIMAÇÕES DE ENTRADA ============ */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-headline .line.anim {
  transform: translateY(30px);
}

.floating-widget.anim {
  transform: translateX(60px);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-widget.anim.visible {
  transform: translateX(0);
}

/* ============ HELPERS GLOBAIS ============ */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.eyebrow-orange {
  color: var(--orange);
}

.section-headline {
  font-family: 'League Spartan', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 16px;
}

.section-headline.center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-headline.light {
  color: var(--cream);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 32px;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  text-decoration: underline;
}

.btn-primary {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  border-radius: 50px;
  padding: 16px 40px;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(0.92);
  transform: scale(1.02);
}

.btn-primary--lg {
  font-size: 18px;
  padding: 18px 52px;
}

.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  background: transparent;
  border: 1.5px solid var(--cream);
  border-radius: 50px;
  padding: 14px 32px;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--olive);
}

.pill-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 24px;
}

/* ============ BANNER MARQUEE — BLOG ============ */
.blog-marquee {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--olive);
  border-top: 2px solid var(--orange);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  padding: 14px 0 14px 32px;
  overflow: hidden;
  z-index: 1;
}

.marquee-label {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--cream);
  background: #1a1a1a;
  border-radius: 50px;
  padding: 8px 20px;
  z-index: 2;
}

.marquee-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* fade nas bordas */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 32px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 32px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 45s linear infinite;
  padding-left: 24px;
  will-change: transform;
}

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

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

.marquee-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245, 240, 232, 0.45);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.marquee-link:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.marquee-sep {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.4);
  user-select: none;
}

/* ============ SEÇÃO 3 — SOBRE ============ */
.section-about {
  background: var(--white);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 80px;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.75);
}

.quote-card {
  position: relative;
  background: var(--olive);
  border-radius: 16px;
  padding: 48px 40px;
}

.quote-card .quote-mark {
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: 'League Spartan', sans-serif;
  font-size: 120px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.4;
  font-weight: 700;
}

.quote-text {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-source {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  font-size: 13px;
  color: var(--orange);
}

/* ============ SEÇÃO 4 — SERVIÇOS ============ */
.section-services {
  background: var(--cream);
  padding: 100px 0;
}

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

.service-card {
  display: block;
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--orange);
  box-shadow: 0 12px 40px rgba(73, 76, 61, 0.12);
}

.service-icon {
  color: var(--orange);
  margin-bottom: 20px;
}

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

.service-name {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.65);
}

.service-arrow {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--orange);
  font-size: 20px;
  opacity: 0;
  transition: all 0.25s ease;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.services-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

/* ============ SEÇÃO 5 — MIRA.CORE ============ */
.section-core {
  background: var(--olive);
  padding: 100px 0;
}

.core-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.core-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 20px;
}

.core-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.core-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.6;
}

.core-list svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.core-mockup {
  background: var(--olive-dark);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 16px;
  padding: 32px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-brand {
  font-family: 'League Spartan', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.mockup-brand span {
  color: var(--orange);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.25);
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-row {
  background: rgba(245, 240, 232, 0.06);
  border-radius: 10px;
  padding: 16px;
}

.stat-label {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 6px;
}

.stat-value {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}

.mockup-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 16px;
}

.bar-row span {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.7);
}

.bar {
  height: 6px;
  background: rgba(245, 240, 232, 0.08);
  border-radius: 50px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: var(--orange);
  border-radius: 50px;
}

/* ============ SEÇÃO 6 — ASAAS ============ */
.section-asaas {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
}

.asaas-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.asaas-logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 140px;
  flex-shrink: 0;
}

.asaas-logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  transition: opacity 0.3s ease;
}

.asaas-logo-default { opacity: 1; }
.asaas-logo-hover { opacity: 0; }

.asaas-logo-link:hover .asaas-logo-default { opacity: 0; }
.asaas-logo-link:hover .asaas-logo-hover { opacity: 1; }

.asaas-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  max-width: 560px;
}

.asaas-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.asaas-link:hover {
  text-decoration: underline;
}

/* ============ SEÇÃO 7 — CLIENTES ============ */
.section-clients {
  background: var(--cream);
  padding: 80px 0;
}

.clients-headline {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--olive);
  text-align: center;
  margin-bottom: 56px;
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
}

.client-logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--olive);
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============ SEÇÃO 8 — DEPOIMENTOS ============ */
.section-testimonials {
  background: var(--white);
  padding: 100px 0;
}

.testimonials-swiper {
  padding-bottom: 56px;
}

/* slides do swiper esticados pra todos terem mesma altura */
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  position: relative;
  background: var(--cream);
  border-radius: 16px;
  padding: 48px 36px 40px;
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.testimonial-card .testimonial-text {
  flex: 1;
}

.testimonial-card .quote-mark {
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: 'League Spartan', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.3;
  font-weight: 700;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-style: italic;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.8;
  margin-top: 24px;
}

.testimonial-divider {
  height: 1px;
  background: rgba(73, 76, 61, 0.15);
  margin: 28px 0;
}

.author-name {
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--olive);
}

.author-company {
  font-size: 13px;
  color: var(--olive-soft);
  margin-top: 2px;
}

.testimonials-swiper .swiper-pagination {
  bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: var(--olive);
  opacity: 0.35;
  transition: all 0.2s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ============ SEÇÃO 9 — CTA FINAL ============ */
.section-cta-final {
  background: var(--olive);
  padding: 120px 0;
}

.cta-final-content {
  max-width: 800px;
  text-align: center;
}

.cta-final-headline {
  font-family: 'League Spartan', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 24px;
}

.cta-final-sub {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.65);
  margin-top: 20px;
}

.section-cta-final .btn-primary {
  margin-top: 48px;
}

/* ============ RODAPÉ ============ */
.footer {
  background: #1a1a1a;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  max-width: 220px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-icon-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icon-sm svg {
  width: 16px;
  height: 16px;
}

.social-icon-sm:hover {
  background: var(--orange);
}

.footer-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links,
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts {
  gap: 16px;
}

.footer-links a,
.footer-contacts a,
.footer-contacts li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: var(--orange);
}

.footer-contacts svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  margin-top: 64px;
}

.footer-partners {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
  cursor: default;
}

.partner-logo:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ============ PÁGINAS INTERNAS — PATTERNS GLOBAIS ============ */
.page-hero {
  background: var(--olive);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
}

.page-hero .container {
  max-width: 800px;
}

.page-hero-headline {
  font-family: 'League Spartan', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.page-hero-sub {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.7);
  margin: 24px auto 0;
  max-width: 600px;
  line-height: 1.6;
}

.page-hero-cta {
  margin-top: 40px;
}

.page-hero--split .container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: center;
  text-align: left;
}

.page-hero--split .page-hero-sub {
  margin: 24px 0 0;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--olive);
  background: transparent;
  border: 1.5px solid var(--olive);
  border-radius: 50px;
  padding: 14px 32px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: var(--olive);
  color: var(--cream);
}

/* Esconde o marquee em páginas internas (só home tem) */

/* ============ PÁGINA SOBRE ============ */
.section-history {
  background: var(--white);
  padding: 100px 0;
}

.history-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: start;
}

.timeline {
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(223, 124, 30, 0.3);
}

.timeline-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.timeline-text {
  font-size: 14px;
  color: rgba(73, 76, 61, 0.85);
  line-height: 1.5;
}

.section-name-meaning {
  background: var(--cream);
  padding: 100px 0;
}

.name-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.name-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border-top: 4px solid var(--orange);
  box-shadow: 0 4px 24px rgba(73, 76, 61, 0.06);
}

.name-card-icon {
  color: var(--orange);
  margin-bottom: 20px;
}

.name-card-icon svg {
  width: 36px;
  height: 36px;
}

.name-card-icon--img {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.name-card-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.name-card .eyebrow {
  margin-bottom: 8px;
}

.name-card-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 16px;
}

.name-card-text {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
}

.synthesis-card {
  margin-top: 48px;
  background: var(--olive);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.synthesis-card p {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

.section-purpose {
  background: var(--white);
  padding: 100px 0;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.purpose-text {
  font-size: 16px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.8;
  margin-top: 24px;
  white-space: pre-line;
}

.purpose-blocks {
  display: flex;
  flex-direction: column;
  gap: 36px;
  /* alinha o primeiro bloco no início do parágrafo da coluna esquerda
     (compensa eyebrow + headline + margin do texto) */
  padding-top: 108px;
}

.purpose-block {
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}

.purpose-block h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 8px;
}

.purpose-block p {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
}

.section-mvv {
  background: var(--cream);
  padding: 100px 0;
}

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

.mvv-card {
  border-radius: 16px;
  padding: 48px 40px;
}

.mvv-card--mission {
  background: var(--olive);
}

.mvv-card--vision {
  background: var(--orange);
}

.mvv-card--values {
  background: var(--white);
  border: 2px solid var(--cream);
}

.mvv-icon {
  margin-bottom: 20px;
}

.mvv-icon svg {
  width: 40px;
  height: 40px;
}

.mvv-card--mission .mvv-icon { color: var(--orange); }
.mvv-card--vision .mvv-icon { color: var(--white); }
.mvv-card--values .mvv-icon { color: var(--orange); }

.mvv-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mvv-card--mission .mvv-title { color: var(--orange); }
.mvv-card--vision .mvv-title { color: var(--white); }
.mvv-card--values .mvv-title { color: var(--olive); }

.mvv-text {
  font-size: 15px;
  line-height: 1.7;
}

.mvv-card--mission .mvv-text { color: rgba(245, 240, 232, 0.8); }
.mvv-card--vision .mvv-text { color: rgba(255, 255, 255, 0.9); }

.mvv-values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mvv-values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--olive);
}

.mvv-values-list svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ============ PÁGINA SERVIÇOS ============ */
.section-services-alt {
  background: var(--cream);
  padding: 100px 0 60px;
}

.service-block {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(73, 76, 61, 0.1);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block.reverse {
  grid-template-columns: 55% 45%;
}

.service-block.reverse .service-visual {
  order: 2;
}

.service-visual {
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.service-visual svg {
  width: 80px;
  height: 80px;
}

.service-visual--olive { background: var(--olive); }
.service-visual--orange { background: var(--orange); }
.service-visual--bronze { background: var(--olive-soft); }

.service-info .eyebrow {
  margin-bottom: 12px;
}

.service-info h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1.2;
}

.service-info p {
  font-size: 16px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.8;
  margin-top: 16px;
}

.service-bullets {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.6;
}

.service-bullets svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.service-block--soon {
  opacity: 0.6;
}

.core-banner {
  background: var(--olive);
  border-radius: 24px;
  padding: 64px;
  margin: 60px auto 100px;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.core-banner .pill-tag {
  margin-bottom: 16px;
}

.core-banner h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.core-banner p {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============ PÁGINA CASES ============ */
.section-clients-grid {
  background: var(--cream);
  padding: 80px 0;
}

.clients-headline-2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--olive);
  text-align: center;
  margin-bottom: 56px;
}

.client-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.client-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.client-card .client-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--olive);
  transition: all 0.3s ease;
}

.client-card:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.section-cases-detailed {
  background: var(--white);
  padding: 100px 0;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0 48px;
}

.case-filter {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--olive);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.case-filter.active,
.case-filter:hover {
  background: var(--olive);
  color: var(--cream);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.case-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.case-header {
  background: var(--olive);
  padding: 40px;
  color: var(--cream);
}

.case-header--orange { background: var(--orange); }
.case-header--bronze { background: var(--olive-soft); }

.case-client {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
}

.case-segment {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: var(--cream);
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}

.case-body {
  padding: 32px;
}

.case-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.case-text {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.case-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--olive);
}

.case-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.case-metric-value {
  font-family: 'League Spartan', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
}

.case-metric-label {
  font-size: 13px;
  color: var(--olive-soft);
}

.case-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.case-link:hover {
  text-decoration: underline;
}

/* ============ PÁGINA BLOG ============ */
.section-blog-grid {
  background: var(--cream);
  padding: 100px 0;
}

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

.post-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.post-cover {
  height: 200px;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.3);
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.post-cover--orange { background: linear-gradient(135deg, var(--orange) 0%, #b35e10 100%); }
.post-cover--bronze { background: linear-gradient(135deg, var(--olive-soft) 0%, #6d5630 100%); }

/* Imagem de capa dentro do card (preenche a caixa 16:9 sem distorcer) */
.post-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(223, 124, 30, 0.15);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 50px;
  align-self: flex-start;
  margin-bottom: 12px;
}

.post-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1.35;
  margin-bottom: 10px;
}

.post-excerpt {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 16px;
}

.post-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
}

.post-link:hover {
  text-decoration: underline;
}

.newsletter-block {
  background: var(--olive);
  border-radius: 24px;
  padding: 64px 56px;
  margin: 60px auto 100px;
  max-width: 800px;
  text-align: center;
}

.newsletter-block h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.newsletter-block p {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.7);
  margin-top: 12px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}

.newsletter-form input {
  flex: 1;
  background: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
  color: var(--olive);
  outline: none;
}

.newsletter-form button {
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s ease;
}

.newsletter-form button:hover {
  filter: brightness(0.92);
}

/* ============ PÁGINA CONTATO ============ */
.section-contact {
  background: var(--cream);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--olive);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--cream);
  border: 1.5px solid rgba(73, 76, 61, 0.2);
  border-radius: 8px;
  padding: 14px 20px;
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
  color: var(--olive);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-family: 'League Spartan', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  filter: brightness(0.92);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-block {
  display: flex;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(73, 76, 61, 0.1);
}

.contact-info-block:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--olive);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-icon--orange {
  background: var(--orange);
  color: var(--white);
}

.contact-info-block h4 {
  font-family: 'League Spartan', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 4px;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-info-block a:hover {
  color: var(--orange);
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.contact-social a:hover {
  background: var(--orange);
}

.contact-social svg {
  width: 16px;
  height: 16px;
}

.asaas-partner-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.asaas-partner-card .asaas-mini {
  font-family: 'League Spartan', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--olive);
}

.asaas-partner-card span {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.7);
}

.section-faq {
  background: var(--white);
  padding: 80px 0;
}

.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-headline {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--olive);
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--cream);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'League Spartan', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--olive);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-toggle {
  color: var(--orange);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
  padding: 0 0 24px;
}

.section-whatsapp-cta {
  background: var(--olive);
  padding: 100px 0;
  text-align: center;
}

.section-whatsapp-cta h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.section-whatsapp-cta p {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.65);
  margin: 16px auto 40px;
  max-width: 500px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 16px 40px;
  font-family: 'League Spartan', sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.03);
  filter: brightness(0.95);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
}

/* ============ RESPONSIVO PÁGINAS INTERNAS ============ */
@media (max-width: 1024px) {
  .page-hero-headline { font-size: 42px; }
  .page-hero--split .container { grid-template-columns: 1fr; }
  .history-grid,
  .purpose-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .purpose-blocks { padding-top: 0; }
  .name-cards-grid,
  .mvv-grid { grid-template-columns: 1fr; }
  .service-block,
  .service-block.reverse { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse .service-visual { order: 0; }
  .cases-grid,
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .client-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .core-banner { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 80px; }
  .page-hero-headline { font-size: 32px; }
  .section-history,
  .section-name-meaning,
  .section-purpose,
  .section-mvv,
  .section-services-alt,
  .section-cases-detailed,
  .section-blog-grid,
  .section-contact,
  .section-faq,
  .section-whatsapp-cta { padding: 64px 0; }
  .cases-grid,
  .posts-grid,
  .client-cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; }
  .synthesis-card { padding: 32px 24px; }
  .synthesis-card p { font-size: 18px; }
  .service-info h2 { font-size: 26px; }
  .core-banner { padding: 32px 24px; }
  .core-banner h2 { font-size: 24px; }
  .section-whatsapp-cta h2 { font-size: 28px; }
}

/* ============ SCROLL ANIMATIONS GLOBAIS ============ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.from-left {
  transform: translateX(-30px);
}

.animate-on-scroll.from-right {
  transform: translateX(30px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.stagger-item:nth-child(1) { transition-delay: 0.00s; }
.stagger-item:nth-child(2) { transition-delay: 0.10s; }
.stagger-item:nth-child(3) { transition-delay: 0.20s; }
.stagger-item:nth-child(4) { transition-delay: 0.30s; }
.stagger-item:nth-child(5) { transition-delay: 0.40s; }
.stagger-item:nth-child(6) { transition-delay: 0.50s; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 56px;
  }

  .about-grid,
  .core-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .section-headline {
    font-size: 34px;
  }

  .cta-final-headline {
    font-size: 42px;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 18px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 0 24px;
    min-height: 640px;
  }

  .hero-headline {
    font-size: 42px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-footer {
    padding: 0 24px;
    bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-social {
    position: static;
    transform: none;
  }

  .floating-widget {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }

  .widget-text {
    font-size: 13px;
  }

  .navbar.scrolled {
    width: calc(100% - 32px);
    padding: 12px 20px;
  }

  /* Marquee blog */
  .blog-marquee {
    gap: 16px;
    padding-left: 20px;
  }

  .marquee-label {
    font-size: 12px;
    padding: 6px 14px;
  }

  .marquee-link {
    font-size: 13px;
  }

  /* Sobre */
  .section-headline {
    font-size: 28px;
  }

  /* Serviços */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* mira.core */
  .core-mockup {
    aspect-ratio: auto;
    height: 320px;
  }

  /* Asaas */
  .asaas-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  /* Clientes */
  .clients-row {
    gap: 32px;
  }

  .clients-headline {
    font-size: 26px;
  }

  /* CTA Final */
  .section-cta-final {
    padding: 80px 0;
  }

  .cta-final-headline {
    font-size: 32px;
  }

  /* Rodapé */
  .footer {
    padding: 60px 0 32px;
  }

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

  .footer-bottom {
    margin-top: 40px;
  }

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

  /* Seções padding mobile */
  .section-about,
  .section-services,
  .section-core,
  .section-testimonials {
    padding: 64px 0;
  }
}

/* ============ PÁGINA DE ARTIGO (BLOG POST) ============ */
.article-hero {
  background: var(--olive);
  padding: 150px 0 72px;
  position: relative;
}

.article-hero .container {
  max-width: 760px;
}

.article-hero .breadcrumb {
  margin-bottom: 20px;
}

.article-hero .breadcrumb a:hover {
  color: var(--orange);
}

.article-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.article-lead {
  font-size: 19px;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.6;
  margin-top: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  margin-top: 28px;
}

.article-body {
  background: var(--cream);
  padding: 72px 0 96px;
}

.article-body .container {
  max-width: 760px;
}

/* Imagem de capa no topo do artigo (proporção 16:9) */
.article-cover {
  max-width: 760px;
  margin: -128px auto 48px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-content {
  color: #2c2c26;
  font-size: 18px;
  line-height: 1.75;
}

.article-content > p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 48px 0 20px;
}

.article-content h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--olive);
  line-height: 1.3;
  margin: 36px 0 14px;
}

.article-content ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.article-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.65;
}

.article-content ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.article-content strong {
  color: var(--olive);
  font-weight: 700;
}

/* Links inline no corpo do artigo (referências citadas no texto) */
.article-content p a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content p a:hover {
  text-decoration: none;
}

/* Lista de referências ao final do artigo */
.article-refs a {
  color: var(--orange);
  font-weight: 600;
  word-break: break-word;
}

.article-refs a:hover {
  text-decoration: underline;
}

.article-content .article-quote {
  font-size: 22px;
  font-weight: 600;
  color: var(--olive);
  line-height: 1.4;
  padding: 8px 0 8px 24px;
  border-left: 4px solid var(--orange);
  margin: 32px 0;
}

.article-content .article-divider {
  border: none;
  border-top: 1px solid rgba(73, 76, 61, 0.15);
  margin: 48px 0;
}

/* FAQ dentro do artigo */
.article-faq {
  margin-top: 48px;
}

.article-faq .faq-q {
  font-family: 'League Spartan', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--olive);
  margin: 28px 0 8px;
}

/* CTA final do artigo */
.article-cta {
  background: var(--olive);
  border-radius: 20px;
  padding: 40px;
  margin: 56px 0 0;
  text-align: center;
}

.article-cta h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin: 0 0 12px;
}

.article-cta p {
  color: rgba(245, 240, 232, 0.72);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 28px;
}

/* Links internos relacionados */
.article-related {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(73, 76, 61, 0.15);
}

.article-related h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.article-related ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.article-related a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--olive);
  transition: color 0.2s ease, gap 0.2s ease;
}

.article-related a:hover {
  color: var(--orange);
  gap: 12px;
}

@media (max-width: 768px) {
  .article-hero { padding: 120px 0 56px; }
  .article-title { font-size: 32px; }
  .article-lead { font-size: 17px; }
  .article-body { padding: 56px 0 72px; }
  .article-content { font-size: 17px; }
  .article-content h2 { font-size: 25px; }
  .article-content h3 { font-size: 20px; }
  .article-cta { padding: 32px 24px; }
  .article-cover { margin: -72px auto 32px; border-radius: 14px; }
}
