/* ═══════════════════════════════════════════════════
   RAMOS GARCIA ADVOGADOS — DESIGN SYSTEM
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Colors */
  --c-dark: #064734;
  --c-dark-deep: #032A1F;
  --c-light: #CDEDB3;
  --c-accent: #CEF17B;
  --c-bg: #F7FAF4;
  --c-bg-alt: #EDF5E4;
  --c-white: #FFFFFF;
  --c-black: #0A0A0A;
  --c-text: #1A2E24;
  --c-text-secondary: #5A6E62;
  --c-border: rgba(6, 71, 52, 0.12);
  --c-border-light: rgba(205, 237, 179, 0.15);

  /* Typography */
  --f-body: 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 1.5rem;
  --s-lg: 2.5rem;
  --s-xl: 4rem;
  --s-2xl: 6rem;
  --s-3xl: 8rem;
  --s-4xl: 10rem;

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 960px;
  --max-w-text: 680px;
  --gutter: 2rem;
  --nav-h: 72px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s;
  --t-base: 0.4s;
  --t-slow: 0.7s;
}


/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--f-body);
  font-weight: var(--fw-regular);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--c-accent);
  color: var(--c-dark);
}


/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding: var(--s-3xl) 0;
}

.section--dark {
  background: var(--c-dark);
  color: var(--c-light);
}

.section--dark-deep {
  background: var(--c-dark-deep);
  color: var(--c-light);
}

.section--alt {
  background: var(--c-bg-alt);
}


/* ── TYPOGRAPHY ── */
.t-display {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.t-h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.t-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.t-h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.t-h4 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

.t-body-lg {
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  line-height: 1.7;
}

.t-body {
  font-size: 1rem;
  line-height: 1.7;
}

.t-body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.t-caption {
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.t-accent {
  color: var(--c-accent);
}

.t-light {
  color: var(--c-light);
}

.t-secondary {
  color: var(--c-text-secondary);
}

.t-dark {
  color: var(--c-dark);
}


/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-md);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.eyebrow--accent {
  color: var(--c-accent);
}

.eyebrow--accent::before {
  background: var(--c-accent);
}


/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  padding: 14px 32px;
  border-radius: var(--r-full);
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--c-accent);
  color: var(--c-dark);
}

.btn--primary:hover {
  background: #d8f590;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 241, 123, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--c-light);
  border: 1px solid rgba(205, 237, 179, 0.3);
}

.btn--outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--c-dark);
  border: 1px solid var(--c-border);
}

.btn--outline-dark:hover {
  border-color: var(--c-dark);
  background: var(--c-dark);
  color: var(--c-light);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--c-dark);
  color: var(--c-light);
}

.btn--dark:hover {
  background: var(--c-dark-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 71, 52, 0.25);
}

.btn__arrow {
  transition: transform var(--t-fast) var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}


/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--t-base) var(--ease);
  background: transparent;
}

.nav--scrolled {
  background: rgba(247, 250, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
}

.nav--scrolled .nav__logo-img--light {
  display: none;
}

.nav--scrolled .nav__logo-img--dark {
  display: block;
}

.nav--scrolled .nav__link {
  color: var(--c-text);
}

.nav--scrolled .nav__link:hover {
  color: var(--c-dark);
}

.nav--scrolled .nav__cta {
  background: var(--c-dark);
  color: var(--c-light);
}

.nav--scrolled .nav__cta:hover {
  background: var(--c-dark-deep);
}

.nav--scrolled .nav__toggle span {
  background: var(--c-dark);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav__logo-img {
  height: 80px;
  width: auto;
}

.nav__logo-img--dark {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: rgba(205, 237, 179, 0.8);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--t-base) var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--c-accent);
}

.nav__cta {
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  color: var(--c-dark);
  background: var(--c-accent);
  padding: 10px 24px;
  border-radius: var(--r-full);
  transition: all var(--t-fast) var(--ease);
}

.nav__cta:hover {
  background: #d8f590;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-light);
  transition: all var(--t-base) var(--ease);
  border-radius: 2px;
}

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}


/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-xl) var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}

.mobile-menu--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  display: block;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--c-light);
  padding: 0.75rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-base) var(--ease);
}

.mobile-menu--open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu--open .mobile-menu__link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu--open .mobile-menu__link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu--open .mobile-menu__link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu--open .mobile-menu__link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu--open .mobile-menu__link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu--open .mobile-menu__link:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu__link:hover {
  color: var(--c-accent);
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: var(--s-lg);
  border-top: 1px solid var(--c-border-light);
}

.mobile-menu__cta {
  margin-top: var(--s-md);
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--c-dark);
  color: var(--c-light);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}

.hero__bg-pattern svg {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--s-3xl) 0;
}

.hero__headline {
  max-width: 900px;
  margin-bottom: var(--s-lg);
}

.hero__headline .t-accent {
  position: relative;
}

.hero__sub {
  max-width: 520px;
  margin-bottom: var(--s-xl);
  color: rgba(205, 237, 179, 0.7);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollHint 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-light), transparent);
}

@keyframes scrollHint {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.7;
    transform: translateX(-50%) translateY(8px);
  }
}


/* ── EDITORIAL STRIP ── */
.strip {
  padding: var(--s-xl) 0;
  border-bottom: 1px solid var(--c-border);
}

.strip__inner {
  display: flex;
  align-items: flex-start;
  gap: var(--s-lg);
}

.strip__line {
  width: 3px;
  min-height: 60px;
  background: var(--c-dark);
  flex-shrink: 0;
  border-radius: 2px;
}

.strip__quote {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--fw-light);
  font-style: italic;
  line-height: 1.6;
  color: var(--c-text);
  max-width: 780px;
}


/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: var(--s-xl);
}

.section-header__title {
  margin-top: 0.25rem;
}

.section-header__sub {
  margin-top: var(--s-sm);
  max-width: var(--max-w-text);
}


/* ── DIFFERENTIALS GRID ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.diff-cell {
  background: var(--c-bg);
  padding: var(--s-lg);
  transition: background var(--t-base) var(--ease);
}

.diff-cell:hover {
  background: var(--c-bg-alt);
}

.diff-num {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: var(--c-accent);
  background: var(--c-dark);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  margin-bottom: var(--s-md);
}

.section--dark .diff-cell {
  background: var(--c-dark);
}

.section--dark .diff-cell:hover {
  background: rgba(205, 237, 179, 0.05);
}

.section--dark .diff-grid {
  background: var(--c-border-light);
}

.diff-title {
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.diff-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
}

.section--dark .diff-text {
  color: rgba(205, 237, 179, 0.6);
}


/* ── AREAS LIST ── */
.areas-list {
  display: flex;
  flex-direction: column;
}

.area-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-lg) 0;
  border-bottom: 1px solid var(--c-border);
  gap: var(--s-md);
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
}

.area-item:first-child {
  border-top: 1px solid var(--c-border);
}

.area-item:hover {
  padding-left: var(--s-md);
}

.area-item:hover .area-name {
  color: var(--c-dark);
}

.area-item:hover .area-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.area-left {
  display: flex;
  align-items: baseline;
  gap: var(--s-md);
  flex: 1;
}

.area-num {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: var(--c-text-secondary);
  min-width: 24px;
}

.area-name {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-semibold);
  transition: color var(--t-fast) var(--ease);
}

.area-tag {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
}

.area-arrow {
  font-size: 1.25rem;
  opacity: 0.3;
  transition: all var(--t-fast) var(--ease);
  flex-shrink: 0;
}

.area-badge {
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  color: var(--c-dark);
  background: var(--c-accent);
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ── SECTOR CARDS ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
}

.sector-card {
  padding: var(--s-lg);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  transition: all var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.sector-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6, 71, 52, 0.15);
}

.section--dark .sector-card:hover {
  background: rgba(206, 241, 123, 0.05);
}

.sector-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(206, 241, 123, 0.12);
  border-radius: var(--r-md);
}

.sector-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.5;
}

.sector-card__name {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
}

.sector-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(205, 237, 179, 0.6);
}

.sector-card--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: var(--s-lg);
  border-style: dashed;
}


/* ── PHILOSOPHY / QUOTE BLOCK ── */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
}

.philosophy__visual {
  position: relative;
}

.philosophy__accent {
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: var(--fw-extrabold);
  color: var(--c-accent);
  opacity: 0.08;
  line-height: 0.85;
  user-select: none;
}

.philosophy__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}


/* ── FOUNDER ── */
.founder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
}

.founder__photo {
  background: var(--c-bg-alt);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.founder__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--c-text-secondary);
  opacity: 0.5;
}

.founder__photo-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.founder__content {
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-lg);
}

.founder__name {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--c-dark);
}

.founder__role {
  font-size: 0.875rem;
  color: var(--c-text-secondary);
  margin-top: 4px;
}

.founder__bio {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-text-secondary);
}

.founder__creds {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: var(--s-md);
  border-top: 1px solid var(--c-border);
}

.founder__cred {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder__cred::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}


/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: var(--s-4xl) 0;
}

.cta-section__heading {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: var(--s-md);
}

.cta-section__sub {
  max-width: 480px;
  margin: 0 auto var(--s-xl);
  color: rgba(205, 237, 179, 0.6);
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  flex-wrap: wrap;
}


/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
}

.form-group {
  margin-bottom: var(--s-md);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: all var(--t-fast) var(--ease);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-dark);
  box-shadow: 0 0 0 3px rgba(6, 71, 52, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--s-md);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-alt);
  border-radius: var(--r-md);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-dark);
  fill: none;
  stroke-width: 1.5;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-secondary);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: var(--fw-medium);
}

.contact-info__value a:hover {
  color: var(--c-dark);
}


/* ── FOOTER ── */
.footer {
  background: var(--c-dark-deep);
  color: var(--c-light);
  padding: var(--s-2xl) 0 var(--s-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-xl);
  padding-bottom: var(--s-2xl);
  margin-bottom: var(--s-xl);
  border-bottom: none;
  position: relative;
}

.footer__top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-dark-deep), var(--c-accent), var(--c-dark-deep));
  opacity: 0.4;
}

.footer__brand-description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(205, 237, 179, 0.5);
  margin-top: var(--s-md);
  max-width: 320px;
}

.footer__logo {
  height: 80px;
  width: auto;
  margin-left: -14px;
  /* Ajuste ótico para alinhar com o texto abaixo */
}

.footer__heading {
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-md);
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(205, 237, 179, 0.6);
  padding: 6px 0;
  transition: color var(--t-fast) var(--ease);
}

.footer__link:hover {
  color: var(--c-accent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(205, 237, 179, 0.35);
}

.footer__copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__credit {
  font-size: 0.7rem;
  color: rgba(205, 237, 179, 0.3);
  letter-spacing: 0.02em;
}

.footer__credit-link {
  color: rgba(205, 237, 179, 0.55);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: color var(--t-fast) var(--ease);
}

.footer__credit-link:hover {
  color: var(--c-accent);
}

.footer__social {
  display: flex;
  gap: var(--s-sm);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border-light);
  border-radius: 50%;
  transition: all var(--t-fast) var(--ease);
}

.footer__social-link:hover {
  border-color: var(--c-accent);
  background: rgba(206, 241, 123, 0.1);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--c-light);
}


/* ── PAGE HEADER ── */
.page-header {
  background: var(--c-dark);
  color: var(--c-light);
  padding-top: calc(var(--nav-h) + var(--s-3xl));
  padding-bottom: var(--s-3xl);
  position: relative;
  overflow: hidden;
}

.page-header__accent {
  position: absolute;
  right: -5%;
  bottom: -20%;
  font-size: clamp(10rem, 20vw, 20rem);
  font-weight: var(--fw-extrabold);
  color: var(--c-accent);
  opacity: 0.04;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}


/* ── AREA DETAIL ── */
.area-detail {
  padding: var(--s-xl) 0;
  border-bottom: 1px solid var(--c-border);
}

.area-detail:last-child {
  border-bottom: none;
}

.area-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: var(--s-sm) 0;
}

.area-detail__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  transition: all var(--t-base) var(--ease);
  flex-shrink: 0;
}

.area-detail__toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-text);
  fill: none;
  stroke-width: 2;
  transition: transform var(--t-base) var(--ease);
}

.area-detail--open .area-detail__toggle {
  background: var(--c-dark);
  border-color: var(--c-dark);
}

.area-detail--open .area-detail__toggle svg {
  stroke: var(--c-accent);
  transform: rotate(45deg);
}

.area-detail__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out);
}

.area-detail--open .area-detail__body {
  max-height: 800px;
}

.area-detail__content {
  padding: var(--s-md) 0 var(--s-lg);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-xl);
}

.area-detail__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--c-text-secondary);
}

.area-detail__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.area-detail__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--c-dark);
}

.area-detail__feature::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}


/* ── SECTOR DETAIL ── */
.sector-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
  padding: var(--s-3xl) 0;
  border-bottom: 1px solid var(--c-border);
}

.sector-detail:last-child {
  border-bottom: none;
}

.sector-detail:nth-child(even) {
  direction: rtl;
}

.sector-detail:nth-child(even)>* {
  direction: ltr;
}

.sector-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-alt);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.sector-detail__visual-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark);
  border-radius: var(--r-lg);
}

.sector-detail__visual-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.5;
}

.sector-detail__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}


/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

.reveal--delay-4 {
  transition-delay: 0.4s;
}

.reveal--delay-5 {
  transition-delay: 0.5s;
}

.reveal--left {
  opacity: 0;
  transform: translateX(-32px);
}

.reveal--left.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(32px);
}

.reveal--right.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
}

.reveal--scale.reveal--visible {
  opacity: 1;
  transform: scale(1);
}


/* ── UTILITIES ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

.mb-xs {
  margin-bottom: var(--s-xs);
}

.mb-sm {
  margin-bottom: var(--s-sm);
}

.mb-md {
  margin-bottom: var(--s-md);
}

.mb-lg {
  margin-bottom: var(--s-lg);
}

.mb-xl {
  margin-bottom: var(--s-xl);
}

.mt-sm {
  margin-top: var(--s-sm);
}

.mt-md {
  margin-top: var(--s-md);
}

.mt-lg {
  margin-top: var(--s-lg);
}


/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --gutter: 1.5rem;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }

  .founder {
    grid-template-columns: 1fr;
  }

  .founder__photo {
    min-height: 380px;
    max-height: 450px;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }

  .founder__photo-img {
    object-position: center 15%;
  }

  #fundador .btn {
    display: none;
  }

  #fundador.section {
    padding-top: var(--s-md);
    padding-bottom: var(--s-md);
  }

  .founder__content {
    padding: var(--s-md);
    gap: var(--s-md);
  }

  .founder__bio {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .founder__creds {
    padding-top: var(--s-sm);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-lg);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }

  .sector-detail {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
  }

  .sector-detail:nth-child(even) {
    direction: ltr;
  }

  .area-detail__content {
    grid-template-columns: 1fr;
    gap: var(--s-md);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --gutter: 1.25rem;
  }

  .section {
    padding: var(--s-xl) 0;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    min-height: 90vh;
  }

  .hero__content {
    padding: var(--s-xl) 0;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sector-card--wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .area-left {
    flex-direction: column;
    gap: 4px;
  }

  .area-tag {
    display: none;
  }

  .strip__inner {
    gap: var(--s-md);
  }

  .footer {
    padding-top: var(--s-lg);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
    padding-bottom: var(--s-lg);
    margin-bottom: var(--s-md);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-section {
    padding: var(--s-xl) 0;
  }

  .philosophy__accent {
    font-size: 6rem;
  }

  .philosophy__visual {
    display: none;
  }

  .sector-detail__visual {
    min-height: 200px;
  }

  .page-header {
    padding-top: calc(var(--nav-h) + var(--s-xl));
    padding-bottom: var(--s-xl);
  }

  .diff-grid[style*="repeat(2, 1fr)"] {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--s-md);
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding-left: calc(var(--gutter) + 0.75rem);
    padding-right: var(--gutter);
    padding-top: var(--s-md);
    padding-bottom: var(--s-md);
    scrollbar-width: none;
    align-items: stretch;
    box-sizing: border-box;
    border-radius: 0;
  }

  .diff-grid[style*="repeat(2, 1fr)"] .diff-cell {
    flex: 0 0 calc(78vw - var(--gutter));
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    border-radius: var(--r-lg);
    box-shadow: 0 2px 16px rgba(6, 71, 52, 0.08);
  }

  .diff-grid[style*="repeat(2, 1fr)"]::-webkit-scrollbar {
    display: none;
  }
}

/* ── ADDITIONAL POLISH ── */

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Hero accent word underline */
.hero__headline .t-accent {
  display: inline-block;
  background-image: linear-gradient(var(--c-accent), var(--c-accent));
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: 0 88%;
  padding-bottom: 2px;
}

/* Sector detail visual gradient */
.sector-detail__visual {
  background: linear-gradient(135deg, var(--c-bg-alt) 0%, rgba(206, 241, 123, 0.08) 100%);
}

/* Form input hover */
.form-input:hover,
.form-textarea:hover {
  border-color: rgba(6, 71, 52, 0.3);
}

/* Smooth page transitions */
.page-header {
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--c-bg));
  pointer-events: none;
}

.page-header+.section--dark::before,
.page-header+.section::before {
  content: none;
}

/* Area item subtle left accent on hover */
.area-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--c-accent);
  border-radius: 2px;
  transition: height var(--t-base) var(--ease-out);
}

.area-item {
  position: relative;
}

.area-item:hover::before {
  height: 60%;
}

/* Diff cell number counter effect */
.diff-cell {
  position: relative;
}

/* Strip quote marks */
.strip__quote::before {
  content: '"';
  display: inline;
}

.strip__quote::after {
  content: '"';
  display: inline;
}

/* Loading animation for page entry */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content>* {
  animation: fadeInUp 0.8s var(--ease-out) backwards;
}

.hero__content>*:nth-child(1) {
  animation-delay: 0.2s;
}

.hero__content>*:nth-child(2) {
  animation-delay: 0.35s;
}

.hero__content>*:nth-child(3) {
  animation-delay: 0.5s;
}

.hero__content>*:nth-child(4) {
  animation-delay: 0.65s;
}

/* Subtle text gradient on display headings in dark sections */
.section--dark .t-h1,
.section--dark .t-display,
.cta-section .cta-section__heading {
  background: linear-gradient(180deg, var(--c-light) 0%, rgba(205, 237, 179, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav CTA micro-pulse on page load */
@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(206, 241, 123, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(206, 241, 123, 0);
  }
}

.nav__cta {
  animation: ctaPulse 3s ease-in-out 2s 2;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--c-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-dark-deep);
}


/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --gutter: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section__actions {
    flex-direction: column;
  }
}

/* ── MÍDIA ── */
#midia {
  border-bottom: 1px solid var(--c-border);
}

/* ── MIDIA FILTERS ── */
.midia-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--s-lg, 2.5rem);
}

.midia-filter {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  color: var(--c-text-secondary);
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 7px 18px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}

.midia-filter:hover {
  border-color: var(--c-dark);
  color: var(--c-dark);
}

.midia-filter--active {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-accent);
}

.midia-filter--active:hover {
  color: var(--c-accent);
}

/* ── MIDIA SECTION ── */
.midia-section {
  margin-bottom: var(--s-lg, 2.5rem);
}

.midia-section__title {
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-secondary);
  margin-bottom: var(--s-sm);
  padding-bottom: var(--s-sm);
  border-bottom: 1px solid var(--c-border);
}

.midia-section--hidden {
  display: none;
}

.midia-intro {
  font-size: 0.875rem;
  color: var(--c-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s-md);
}

.midia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-sm);
  margin-bottom: var(--s-sm);
}

.midia-card {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-md);
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
  transition: all var(--t-base) var(--ease);
  background: var(--c-bg);
  min-height: 140px;
  justify-content: space-between;
}

.midia-card:hover {
  background: var(--c-bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 71, 52, 0.04);
}

.midia-type {
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--s-xs);
}

.midia-type svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.midia-title {
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  color: var(--c-dark);
  line-height: 1.4;
}

.midia-source {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
}

.midia-placeholder {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--c-text-secondary);
  font-style: italic;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.midia-footer {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-sm) var(--s-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
}

.midia-footer-text {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
}

.midia-link {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--c-dark);
  text-decoration: none;
  border: 1px solid var(--c-border);
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: all var(--t-fast) var(--ease);
}

.midia-link:hover {
  background: var(--c-bg-alt);
  border-color: var(--c-dark);
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .midia-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .midia-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-sm);
  }

  .midia-link {
    width: 100%;
    text-align: center;
  }
}

/* ═══ INDEX-ONLY STYLES ═══ */

/* ── HERO V2: Asymmetric split ── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  background: var(--c-dark);
  color: var(--c-light);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-v2__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter) calc(var(--s-3xl) + 60px) calc((100vw - var(--max-w)) / 2 + var(--gutter));
  position: relative;
  z-index: 2;
}

.hero-v2__tag {
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--s-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-v2__tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-accent);
}

.hero-v2__heading {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: var(--fw-light);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.hero-v2__heading strong {
  font-weight: var(--fw-bold);
  color: var(--c-accent);
}

.hero-v2__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-3xl) var(--gutter) calc(var(--s-3xl) + 60px) clamp(1.5rem, 5vw, 4rem);
  border-left: 1px solid rgba(205, 237, 179, 0.035);
}

.hero-v2__right-inner {
  max-width: 400px;
}

.hero-v2__desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(205, 237, 179, 0.6);
  margin-bottom: var(--s-lg);
}

.hero-v2__ctas {
  display: flex;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.hero-v2__credibility {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-lg);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  color: rgba(205, 237, 179, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-v2__credibility::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 8px var(--c-accent);
  flex-shrink: 0;
}

.hero-v2__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(205, 237, 179, 0.25);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}

.hero-v2__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(205, 237, 179, 0.3), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.3;
  }

  50% {
    transform: scaleY(1.3);
    opacity: 0.6;
  }
}

.hero-v2__accent-number {
  position: absolute;
  top: 15%;
  right: 4vw;
  font-size: clamp(13rem, 22vw, 24rem);
  font-weight: var(--fw-extrabold);
  color: rgba(206, 241, 123, 0.02);
  line-height: 0.8;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* ── MARQUEE STRIP ── */
.marquee {
  background: var(--c-accent);
  color: var(--c-dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marqueeScroll 70s linear infinite;
}

.marquee__item {
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}

.marquee__item::after {
  content: '◆';
  font-size: 0.5rem;
  opacity: 0.4;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── MANIFESTO: editorial strip ── */
.manifesto {
  background: var(--c-bg-alt);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 400px;
  padding: 5rem 0;
}

.manifesto__text {
  font-size: clamp(1.2rem, 2.2vw, 1.95rem);
  font-weight: var(--fw-light);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #1a2b18;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.manifesto__text em {
  font-style: normal;
  color: #1a2b18;
  font-weight: var(--fw-bold);
}

.manifesto__attr {
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a7a54;
  display: flex;
  align-items: center;
  gap: 12px;
}

.manifesto__attr::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #5a7a54;
}

/* ── CAPABILITIES: Horizontal scroll cards ── */
.capabilities {
  padding: var(--s-3xl) 0 var(--s-4xl);
  overflow: hidden;
}

.capabilities__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s-xl);
  gap: var(--s-md);
  flex-wrap: wrap;
}

.capabilities__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(6, 71, 52, 0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.cap-card {
  background: var(--c-bg);
  padding: var(--s-xl) var(--s-lg);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  cursor: pointer;
}

.cap-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--s-lg);
  right: var(--s-lg);
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}

.cap-card:hover {
  background: var(--c-bg-alt);
}

.cap-card:hover::after {
  transform: scaleX(1);
}

.cap-card:hover .cap-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.cap-card>div[style] {
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cap-card__num {
  font-size: 0.6875rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  color: var(--c-text-secondary);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.cap-card__title {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
}

.cap-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
  margin-bottom: var(--s-md);
}

.cap-card__arrow {
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  color: var(--c-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t-base) var(--ease);
  margin-top: auto;
}

/* ── SECTORS: Horizontal dividers, BCG-style ── */
.sectors-v2 {
  padding: var(--s-3xl) 0 var(--s-4xl);
  background: var(--c-dark-deep);
}

.sectors-v2__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-xl);
  margin-bottom: var(--s-xl);
  align-items: end;
}

.sectors-v2__header .t-h2,
.sectors-v2__header h2 {
  color: var(--c-light);
}

.sector-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: var(--s-lg);
  align-items: center;
  padding: var(--s-lg) 0;
  border-top: 1px solid rgba(205, 237, 179, 0.15);
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
}

.sector-row:last-child {
  border-bottom: 1px solid rgba(205, 237, 179, 0.15);
}

.sector-row:hover {
  padding-left: var(--s-sm);
}

.sector-row:hover .sector-row__name {
  color: var(--c-accent);
}

.sector-row:hover .sector-row__arrow {
  opacity: 1;
  transform: translateX(0);
}

.sector-row__name {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--c-light);
  transition: color var(--t-fast) var(--ease);
}

.sector-row__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(205, 237, 179, 0.5);
}

.sector-row__arrow {
  font-size: 1.125rem;
  color: var(--c-light);
  opacity: 0.3;
  transition: all var(--t-fast) var(--ease);
  transform: translateX(-4px);
}

/* ── SPLIT: Baselarea-style asymmetric content ── */
.split {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  min-height: 80vh;
  overflow: hidden;
}

.split__left {
  background: var(--c-bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-3xl) var(--s-xl) var(--s-3xl) calc((100vw - var(--max-w)) / 2 + var(--gutter));
  position: relative;
}

.split__left-accent {
  font-size: clamp(10rem, 18vw, 16rem);
  font-weight: var(--fw-extrabold);
  color: var(--c-dark);
  opacity: 0.04;
  position: absolute;
  bottom: 1rem;
  right: -2rem;
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
}

.split__right {
  background: var(--c-dark);
  color: var(--c-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-3xl) calc((100vw - var(--max-w)) / 2 + var(--gutter)) var(--s-3xl) var(--s-xl);
}

.split__right p {
  color: rgba(205, 237, 179, 0.65);
  line-height: 1.8;
  margin-bottom: var(--s-md);
}

.split__stat-row {
  display: flex;
  gap: var(--s-xl);
  margin-top: var(--s-xl);
  padding-top: var(--s-lg);
  border-top: 1px solid var(--c-border-light);
}

.split__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.split__stat-num {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--c-accent);
  letter-spacing: -0.02em;
}

.split__stat-label {
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(205, 237, 179, 0.45);
}

.mobile-text {
  display: none;
}

.desktop-text {
  display: inline;
}

.split__stat-icon {
  display: none;
}

/* ── FOUNDER COMPACT ── */
.founder-strip {
  padding: var(--s-3xl) 0;
  border-top: 1px solid var(--c-border);
}

.founder-strip__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-xl);
  align-items: center;
}

.founder-strip__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
}

.founder-strip__avatar svg {
  width: 28px;
  height: 28px;
  stroke: var(--c-text-secondary);
  fill: none;
  stroke-width: 1.5;
}

.founder-strip__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-strip__name {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  color: var(--c-dark);
}

.founder-strip__role {
  font-size: 0.8125rem;
  color: var(--c-text-secondary);
}

.founder-strip__quote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--c-text-secondary);
  line-height: 1.7;
  max-width: 320px;
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 1024px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-v2__left {
    padding: var(--s-xl) var(--gutter) var(--s-md);
  }

  .hero-v2__right {
    border-left: none;
    border-top: none;
    padding: 0 var(--gutter) var(--s-xl);
  }

  .hero-v2__credibility {
    margin-top: var(--s-sm);
    justify-content: center;
  }

  .hero-v2__brazil {
    display: none;
  }

  .hero-v2__accent-number {
    right: 0;
    left: 0;
    text-align: center;
    color: rgba(206, 241, 123, 0.01);
  }

  .capabilities__track {
    grid-template-columns: repeat(2, 1fr);
  }

  .cap-card {
    min-height: 280px;
  }

  .sectors-v2__header {
    grid-template-columns: 1fr;
  }

  .sector-row {
    grid-template-columns: 160px 1fr auto;
  }

  .split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split__left,
  .split__right {
    padding: var(--s-xl) var(--gutter);
  }

  .founder-strip__inner {
    grid-template-columns: auto 1fr;
  }

  .founder-strip__quote {
    display: none;
  }
}

@media (max-width: 768px) {

  .nav__logo-img {
    height: 50px;
  }

  .hero-v2__heading {
    max-width: 100%;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .capabilities,
  .sectors-v2 {
    padding: var(--s-xl) 0 var(--s-2xl);
  }

  .capabilities__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--s-md);
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding-bottom: var(--s-md);
    scroll-padding-left: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: transparent;
    order: 2;
    margin-bottom: var(--s-lg);
  }

  .capabilities__track::-webkit-scrollbar {
    display: none;
  }

  .capabilities .container {
    display: flex;
    flex-direction: column;
  }

  .capabilities__header {
    display: contents;
  }

  .capabilities__header>div {
    order: 1;
    margin-bottom: var(--s-md);
  }

  .capabilities__header .btn {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .cap-card {
    min-height: auto;
    padding: var(--s-md);
    flex: 0 0 75vw;
    scroll-snap-align: start;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
  }

  .cap-card:first-child {
    margin-left: var(--gutter);
  }

  .cap-card:last-child {
    margin-right: var(--gutter);
  }

  .cap-card__arrow {
    opacity: 1;
    transform: none;
  }

  .sector-row {
    grid-template-columns: 1fr auto;
  }

  .sector-row__desc {
    display: none;
  }

  .hero-v2__scroll {
    display: none;
  }

  .split__stat-row {
    flex-direction: column;
    gap: var(--s-sm);
  }

  .split__stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(206, 241, 123, 0.04);
    border: 1px solid rgba(206, 241, 123, 0.18);
    padding: 1.5rem;
    border-radius: var(--r-lg);
  }

  .split__stat-icon {
    display: none !important;
  }

  .split__stat-num {
    position: relative;
    right: auto;
    bottom: auto;
    font-size: 3rem;
    font-weight: var(--fw-bold);
    color: var(--c-accent);
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: auto;
    z-index: 2;
    margin-bottom: 0.5rem;
  }

  .split__stat-label {
    position: relative;
    z-index: 2;
    text-align: left;
    font-size: 0.75rem;
    font-weight: var(--fw-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(205, 237, 179, 0.8);
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .split__stat-label::before {
    content: '';
    display: block;
    width: 2.25rem;
    height: 2px;
    background-color: var(--c-accent);
  }

  .split__stat-label .desktop-text {
    display: block;
  }

  .split__stat-label .mobile-text {
    display: none;
  }

  .mobile-accent {
    display: none;
  }


  .founder-strip__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-strip__avatar {
    display: none;
  }

  #fundador {
    background-image: linear-gradient(to bottom, rgba(247, 250, 244, 0.85), rgba(247, 250, 244, 0.85)), url('../assets/images/joao_pedro.webp');
    background-size: cover;
    background-position: center;
  }

  .midia-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--s-md);
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    padding-bottom: var(--s-md);
    scroll-padding-left: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .midia-grid::-webkit-scrollbar {
    display: none;
  }

  .midia-card {
    flex: 0 0 75vw;
    scroll-snap-align: start;
  }

  .midia-card:first-child {
    margin-left: var(--gutter);
  }

  .midia-card:last-child {
    margin-right: var(--gutter);
  }

  .manifesto {
    min-height: 280px;
    padding: 3.5rem 0;
  }

  .manifesto__text br {
    display: none;
  }
}

#fundador {
  background-color: var(--c-bg-alt);
  padding: var(--s-3xl) 0 var(--s-4xl);
}

.sector-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.founder__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
  display: block;
}

.founder-strip__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
  display: block;
}

.hero-v2__location {
  margin-top: var(--s-md);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(205, 237, 179, 0.65);
}

.hero-v2__brazil {
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  max-width: 580px;
  pointer-events: none;
  z-index: 0;
}

.hero-v2__brazil svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* --- THANKS PAGE STYLES --- */
.obrigado {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark);
  padding: 6rem 2rem;
}

.obrigado__inner {
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.obrigado__icon {
  width: 64px;
  height: 64px;
  color: var(--c-accent);
  animation: fadeUp 0.7s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.obrigado__icon svg {
  width: 100%;
  height: 100%;
}

.obrigado__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.obrigado__line {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--c-accent);
  opacity: 0.5;
}

.obrigado__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-light);
  margin: 0;
  animation: fadeUp 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.obrigado__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(205, 237, 179, 0.6);
  margin: 0;
  animation: fadeUp 0.7s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.obrigado__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
  animation: fadeUp 0.7s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}