/* ============================================================
   RH Resolve — Corporate site shared styles
   Palette: corporate green + neutral grays
   ============================================================ */

:root {
  /* Brand */
  --green-900: #0f3d1f;
  --green-800: #155c2c;
  --green-700: #1a7a38;
  --green-600: #1f9844;   /* primary brand green from logo */
  --green-500: #27b356;
  --green-100: #e7f5ec;
  --green-50:  #f2faf5;

  /* Neutrals */
  --ink-900: #0b1a10;
  --ink-700: #2b3a30;
  --ink-500: #5b6b62;
  --ink-300: #9aa5a0;
  --ink-200: #d7dcd9;
  --ink-100: #edefee;
  --ink-50:  #f6f7f6;
  --white:   #ffffff;

  /* Semantic */
  --bg:        var(--white);
  --bg-muted:  var(--ink-50);
  --text:      var(--ink-900);
  --text-dim:  var(--ink-500);
  --border:    var(--ink-200);
  --primary:   var(--green-600);
  --primary-dark: var(--green-700);

  /* Type */
  --font-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter Tight", "Inter", sans-serif;

  /* Radii / shadows */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,61,31,.06), 0 1px 3px rgba(15,61,31,.04);
  --shadow-md: 0 4px 14px rgba(15,61,31,.08), 0 2px 4px rgba(15,61,31,.04);
  --shadow-lg: 0 20px 40px rgba(15,61,31,.12), 0 4px 10px rgba(15,61,31,.06);

  /* Rhythm */
  --container: 1200px;
  --gap: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  color: var(--ink-900);
}
h1 { font-size: clamp(38px, 5.2vw, 64px); }
h2 { font-size: clamp(28px, 3.4vw, 42px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }

p { margin: 0; }
.lead { font-size: 18px; color: var(--text-dim); line-height: 1.6; }

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

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--border);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink-900);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  transition: background .15s;
}
.nav-toggle:hover { background: var(--ink-100); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s, opacity .22s, width .22s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  z-index: 49;
  padding: 16px 28px 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-mobile.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 641px) {
  .nav-mobile { display: none !important; }
}
.nav-mobile .nav-m-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-700);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color .15s, padding-left .15s;
}
.nav-mobile .nav-m-link:hover { color: var(--primary); padding-left: 6px; }
.nav-mobile .nav-m-link.active { color: var(--primary); }
.nav-mobile .nav-m-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-logo .hex {
  width: 36px; height: 40px;
  display: grid; place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  background: var(--primary);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.nav-logo .nav-logo-text { line-height: 1; }
.nav-logo .nav-logo-text b { display:block; font-weight: 800; color: var(--ink-900); }
.nav-logo .nav-logo-text small { display:block; font-size:10px; font-weight:600; color: var(--primary); letter-spacing:.15em; text-transform: uppercase; margin-top: 2px; }
.logo-img {
  height: 135px;
  width: auto;
  display: block;
}
.footer-about .logo-img {
  height: 150px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 8px 0;
  position: relative;
  transition: color .15s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--ink-900); }
.nav-links a.active::after {
  content:"";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
}
.lang-toggle button {
  background: transparent;
  border: none;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-dim);
  font: inherit;
}
.lang-toggle button.active {
  background: var(--ink-900);
  color: var(--white);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .08s ease, background .15s, border-color .15s, color .15s;
  line-height: 1;
  white-space: nowrap;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-200);
}
.btn-ghost:hover { border-color: var(--ink-900); }
.btn-dark {
  background: var(--ink-900);
  color: var(--white);
}
.btn-dark:hover { background: #000; }
.btn-lg { padding: 16px 26px; font-size: 16px; }

.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--primary); }
.hero .lead { max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: nowrap; align-items: center; }
.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-trust .item strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-trust .item span { font-size: 13px; color: var(--text-dim); }

/* ============================================================
   HERO VISUAL — geometric green placeholder
   ============================================================ */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--green-50);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(31,152,68,.18), transparent 45%),
    linear-gradient(135deg, var(--green-50), var(--white));
}
.hero-visual .block-a,
.hero-visual .block-b,
.hero-visual .block-c {
  position: absolute;
  background: var(--primary);
}
.hero-visual .block-a {
  top: 0; right: 0;
  width: 55%; height: 38%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-visual .block-b {
  bottom: 0; left: 0;
  width: 60%; height: 28%;
  background: var(--green-800);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
}
.hero-visual .block-c {
  top: 35%; left: 28%;
  width: 42%; height: 32%;
  background: var(--green-700);
  clip-path: polygon(0 0, 100% 15%, 85% 100%, 0 85%);
  opacity: .9;
}
.hero-visual .label {
  position: absolute;
  left: 24px; bottom: 24px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  mix-blend-mode: normal;
  z-index: 2;
}
.hero-visual .hex-big {
  position: absolute;
  top: 8%; right: -8%;
  width: 180px; height: 200px;
  background: var(--white);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  display: grid; place-items: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 28px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SECTION
   ============================================================ */
section { padding: 88px 0; }
section.alt { background: var(--bg-muted); }
section.dark { background: var(--ink-900); color: var(--ink-100); }
section.dark h2, section.dark h3 { color: var(--white); }
section.dark .lead { color: var(--ink-300); }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-head.left { margin-left: 0; text-align: left; }

/* ============================================================
   CARDS / SERVICES
   ============================================================ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.service-card .icon {
  width: 48px; height: 48px;
  background: var(--green-100);
  color: var(--primary);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; font-size: 20px; }
.service-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 16px; flex: 1; }
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink-700);
}
.service-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}
.service-card .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: auto;
}
.service-card .card-link:hover { gap: 10px; }

/* ============================================================
   VALUES / FEATURE BLOCKS
   ============================================================ */
.value {
  padding: 28px;
  border-left: 3px solid var(--primary);
  background: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.value h4 { color: var(--ink-900); margin-bottom: 8px; font-size: 18px; }
.value p { color: var(--text-dim); font-size: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial .quote-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--green-100);
  position: absolute;
  top: 16px; right: 24px;
}
.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-900);
  flex: 1;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial .author .who strong {
  display: block;
  font-size: 14px;
  color: var(--ink-900);
}
.testimonial .author .who span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: var(--ink-900);
  border-radius: var(--r-lg);
  padding: 56px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: -60px; right: -80px;
  width: 280px; height: 280px;
  background: var(--primary);
  border-radius: 50%;
  opacity: .15;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: var(--ink-300); margin-bottom: 0; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }
@media (max-width: 780px) {
  .cta-banner { grid-template-columns: 1fr; padding: 36px; }
  .cta-banner .actions { justify-self: start; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-about p { font-size: 14px; line-height: 1.6; }
.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.footer-contact-list li b {
  color: var(--white);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.fc-detail {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.fc-detail svg {
  flex-shrink: 0;
  color: var(--primary);
  opacity: 1;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  transition: background .15s;
}
.footer-social a:hover { background: var(--green-700); color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   PAGE HEADER (internal pages)
   ============================================================ */
.page-head {
  padding: 64px 0 56px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: -40px; right: -80px;
  width: 300px; height: 300px;
  background: var(--green-100);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  opacity: .7;
}
.page-head-inner { position: relative; }
.page-head .crumbs {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-head .crumbs a:hover { color: var(--primary); }
.page-head h1 { margin-bottom: 16px; max-width: 720px; }
.page-head p { max-width: 620px; }

/* ============================================================
   LOGO CLOUD / PARTNERS
   ============================================================ */
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.logo-cloud .logo {
  height: 64px;
  border: 1px dashed var(--border);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--ink-300);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; max-width: 100%; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-wrap: wrap; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }
  .logo-img { height: 90px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 36px 0 48px; }
  .hero-copy { text-align: center; }
  .hero h1 .accent { display: block; }
  .hero .lead { max-width: 100%; }
  .hero-trust { gap: 16px; justify-content: center; }
  .hero-trust .item { text-align: center; }
  .hero-trust .item strong { font-size: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-visual { aspect-ratio: 4/3; max-width: 100%; }
  .partners-wrap { padding: 16px; }
  .cta-banner { padding: 32px 24px; }
  .page-head { padding: 48px 0 40px; }
  .about-milestones { grid-template-columns: repeat(2, 1fr) !important; }
}

.apply-cta {
  padding: 36px 0 18px;
}
.apply-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(31, 152, 68, 0.08);
  border: 1px solid rgba(31, 152, 68, 0.15);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  gap: 14px;
}
.apply-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(31, 152, 68, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 4px;
}
.apply-icon svg {
  width: 28px;
  height: 28px;
}
.apply-label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.apply-arrow-down {
  font-size: 28px;
  line-height: 1;
  color: var(--primary);
}
.apply-btn {
  margin-top: 4px;
  padding: 14px 20px;
}

/* ============================================================
   PARTNERS / REFERENCIAS
   ============================================================ */
#referencias { background: var(--bg-muted); padding-top: 40px; padding-bottom: 56px; }

.partners-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s;
}
.partners-wrap:hover { box-shadow: var(--shadow-md); }
.partners-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-sm);
}

/* ============================================================
   FORMAÇÃO GRID
   ============================================================ */
.formacao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.formacao-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.formacao-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.formacao-icon {
  width: 40px; height: 40px;
  background: var(--green-100);
  color: var(--primary);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.formacao-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.3;
}
.formacao-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) { .formacao-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .formacao-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PARTNERS CAROUSEL
   ============================================================ */
.partners-carousel-section {
  padding: 56px 0;
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-carousel {
  overflow: hidden;
  position: relative;
}
.partners-carousel::before,
.partners-carousel::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-muted), transparent);
}
.partners-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-muted), transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: scroll-partners 45s linear infinite;
  padding: 8px 0;
  will-change: transform;
}
.partners-track:hover {
  animation-play-state: paused;
}
.partners-track img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
@keyframes scroll-partners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@-webkit-keyframes scroll-partners {
  0%   { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); }
}

/* ============================================================
   UTILS
   ============================================================ */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
