/* ==========================================================================
   SOGECAPRI · components.css — todos os componentes visuais reutilizáveis
   ========================================================================== */

/* ---------- Eyebrow / cabeçalhos de secção ---------- */
.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow--on-dark {
  color: var(--gold-bright);
}
.eyebrow .rule {
  width: 80px;
  height: 0.5px;
  background: rgba(184, 120, 10, 0.3);
}

.section-head {
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 60px);
}
.section-head--center {
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
}
.section-title--lg {
  font-size: clamp(30px, 3.6vw, 44px);
}
.section-lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 22px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition:
    background var(--t-fast),
    transform var(--t-fast),
    border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--wine-dark);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--wine-dark);
  color: var(--gold-pale);
}
.btn--dark:hover {
  background: var(--wine);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 242, 236, 0.4);
}
.btn--outline:hover {
  background: rgba(247, 242, 236, 0.08);
  border-color: rgba(247, 242, 236, 0.7);
}
.btn--sm {
  padding: 11px 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* Link de texto com seta */
.link-arrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-fast);
}
.link-arrow:hover {
  gap: 14px;
}

/* ---------- Topbar (selector de idioma) ---------- */
.topbar {
  background: var(--espresso);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-inline: var(--gutter);
}
.lang-opt {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--on-dark-soft);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.lang-opt.active {
  color: var(--gold-bright);
  font-weight: 700;
}
.lang-sep {
  color: rgba(247, 242, 236, 0.22);
  font-size: 11px;
}

/* ---------- Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 1px 0 rgba(61, 12, 12, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-nav);
}
.navbar {
  position: relative;
  background: #fff;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: none;
}
.brand__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--wine-dark);
  line-height: 1;
}
.brand__sub {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.brand__text {
  display: flex;
  flex-direction: column;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--wine-dark);
}
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  padding: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wine-dark);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--wine-dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    var(--wine-deep) 0 18px,
    #330a0a 18px 36px
  );
  animation: kenburns 18s ease-out forwards;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.4) 68%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.hero__overlay--soft {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 18, 8, 0.55), transparent 42%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 11vw, 150px) clamp(60px, 7vw, 88px);
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 16ch;
}
.hero h1 .alt {
  color: var(--gold-pale);
  font-weight: 300;
}
.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--on-dark);
  max-width: 54ch;
  margin-top: 30px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 64px;
  padding-top: 36px;
  border-top: 0.5px solid var(--on-dark-line);
}
.stat__num {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-top: 9px;
}

/* ---------- Page header (heros de páginas internas) ---------- */
.page-header {
  position: relative;
  background: var(--wine-deep);
  overflow: hidden;
  min-height: clamp(360px, 50vh, 520px);
  display: flex;
  align-items: center;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
}

.page-header__overlay--video {
   background: linear-gradient(
    102deg,
    rgba(74, 64, 64, 0.82) 30%,
    rgba(0, 0, 0, 0.55) 68%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.page-header__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(72px, 9vw, 120px);
  width: 100%;
}
.page-header h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 700;
  color: var(--cream);
  max-width: 16ch;
}
.page-header h1 .alt {
  color: var(--gold-pale);
  font-weight: 300;
}
.page-header__lead {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-dark);
  max-width: 52ch;
  margin-top: 26px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 162, 64, 0.14);
  border: 1px solid rgba(212, 162, 64, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
}

/* ---------- Grelha de números ---------- */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(184, 120, 10, 0.22);
  border: 1px solid rgba(184, 120, 10, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
}
.number-cell {
  background: var(--wine-dark);
  padding: 34px 26px;
}
.number-cell__num {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
}
.number-cell__label {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark);
  margin-top: 14px;
}

/* ---------- Pilares (cards full-bleed com zoom) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid rgba(61, 12, 12, 0.1);
}
.pillar-card {
  position: relative;
  height: clamp(440px, 54vh, 580px);
  overflow: hidden;
  display: block;
}
.pillar-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
}
.pillar-card:hover .pillar-card__media {
  transform: scale(1.07);
}
.pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 8, 8, 0.9) 4%,
    rgba(40, 10, 10, 0.5) 38%,
    rgba(40, 10, 10, 0.12) 68%,
    rgba(40, 10, 10, 0.28) 100%
  );
  pointer-events: none;
}
.pillar-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(22px, 2vw, 30px);
  pointer-events: none;
}
.pillar-card__title {
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.pillar-card__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Split (texto + media) ---------- */
.media-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 0.5px solid rgba(61, 12, 12, 0.08);
  box-shadow: var(--shadow-card);
}
.media-frame--portrait {
  aspect-ratio: 4 / 5;
}
.media-frame--square {
  aspect-ratio: 1 / 1;
}
.media-frame--wide {
  aspect-ratio: 4 / 3;
}
.media-frame--banner {
  aspect-ratio: 16 / 9;
}
.media-frame__tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: none;
  backdrop-filter: none;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ---------- Lista de verificação (✦) ---------- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.7;
}
.check-item .mark {
  color: var(--gold);
  flex: none;
}

/* ---------- Cards de valores ---------- */
/* ── Values grid ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(61, 12, 12, 0.12);
}

.value-item {
  padding: clamp(32px, 3.5vw, 52px) clamp(24px, 2.5vw, 40px);
  border-bottom: 1px solid rgba(61, 12, 12, 0.12);
  border-right: 1px solid rgba(61, 12, 12, 0.12);
  position: relative;
  transition: background var(--t-med);
}

.value-item:nth-child(3n) {
  border-right: none;
}

.value-item:hover {
  background: rgba(184, 120, 10, 0.04);
}

.value-item__num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.value-item__title {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.value-item__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-item:nth-child(3n) {
    border-right: 1px solid rgba(61, 12, 12, 0.12);
  }
  .value-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 620px) {
  .values-grid {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .value-item {
    border-right: none;
    border-top: 1px solid rgba(61, 12, 12, 0.12);
    border-bottom: none;
    padding: 28px 0;
  }
  .value-item:first-child {
    border-top: none;
  }
}

/* ---------- Cards genéricos (vantagens / impacto) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(61, 12, 12, 0.1);
  border: 0.5px solid rgba(61, 12, 12, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: #fff;
  padding: clamp(32px, 3.4vw, 52px);
}
.feature-card--on-dark {
  background: var(--wine-dark);
}
.feature-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #c4b89a;
  margin-bottom: 20px;
  font-family: ui-monospace, monospace;
}
.feature-card__title {
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.feature-card--on-dark .feature-card__title {
  color: var(--cream);
}
.feature-card__desc {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}
.feature-card--on-dark .feature-card__desc {
  color: var(--on-dark);
}

/* ---------- Equipa ---------- */
.team-list {
  border-top: 1px solid rgba(61, 12, 12, 0.12);
}

.team-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 32px;
  padding: clamp(32px, 4vw, 52px) 0;
  border-bottom: 1px solid rgba(61, 12, 12, 0.12);
  align-items: start;
  transition: background var(--t-med);
}

.team-item__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding-top: 6px;
  font-variant-numeric: tabular-nums;
}

.team-item__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(32px, 4vw, 64px);
  align-items: start;
}

.team-item__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-item__name {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

.team-item__role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-item__profile {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  padding-top: 6px;
}

/* ---------- CTA band ---------- */
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--cream);
  max-width: 22ch;
}
.cta-band--center .cta-band__inner {
  flex-direction: column;
  text-align: center;
}
.cta-band--center .cta-band__title {
  margin-inline: auto;
}
.cta-band__lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-dark);
  max-width: 54ch;
  margin: 16px auto 0;
}

/* ---------- Contactos ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 0.5px solid rgba(61, 12, 12, 0.1);
}
.contact-row__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--gold);
}
.contact-row__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-row__value {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  border: 0.5px solid rgba(61, 12, 12, 0.08);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--shadow-card);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.input,
.textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1px solid rgba(61, 12, 12, 0.16);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}
.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.textarea {
  resize: vertical;
  min-height: 130px;
}
.form-success {
  background: var(--wine-dark);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.form-success__title {
  color: var(--gold-pale);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 72px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}
.footer__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: none;
}
.footer__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
}
.footer__about {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(247, 242, 236, 0.5);
  max-width: 320px;
}
.footer__addr {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(247, 242, 236, 0.5);
}
.footer__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__link {
  font-size: 14px;
  font-weight: 300;
  color: rgba(247, 242, 236, 0.62);
  transition: color var(--t-fast);
}
.footer__link:hover {
  color: var(--gold-pale);
}
.footer__link--accent {
  font-weight: 600;
  color: var(--gold-bright);
}
.footer__bottom {
  padding-block: 40px;
  margin-top: 56px;
  border-top: 0.5px solid rgba(247, 242, 236, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(247, 242, 236, 0.32);
}
.footer__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, 0.32);
}

/* ---------- image-slot (estado vazio on-brand) ---------- */
image-slot {
  color: #a1937a;
}
image-slot::part(frame) {
  background: var(--cream-2);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(61, 12, 12, 0.045) 0 14px,
    transparent 14px 28px
  );
}
image-slot::part(ring) {
  display: none;
}
image-slot.on-dark {
  color: rgba(237, 211, 138, 0.55);
}
image-slot.on-dark::part(frame) {
  background: var(--slot);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(212, 162, 64, 0.08) 0 14px,
    transparent 14px 28px
  );
}
/* Slot de fundo full-bleed (hero): mantém a textura, esconde o texto do estado vazio */
image-slot.bg-slot::part(empty) {
  display: none;
}

/* ================================================================
   VANTAGENS — adv-grid
   ================================================================ */

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(61, 12, 12, 0.12);
  border-left: 1px solid rgba(61, 12, 12, 0.12);
}

.adv-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: clamp(36px, 4vw, 60px) clamp(28px, 3vw, 48px);
  border-right: 1px solid rgba(61, 12, 12, 0.12);
  border-bottom: 1px solid rgba(61, 12, 12, 0.12);
  transition: background var(--t-med);
}

.adv-item:hover {
  background: rgba(184, 120, 10, 0.03);
}

.adv-item__num {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: rgba(184, 120, 10, 0.18);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  transition: color var(--t-med);
}

.adv-item:hover .adv-item__num {
  color: rgba(184, 120, 10, 0.32);
}

.adv-item__title {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.adv-item__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ================================================================
   IMPACTO — impact-grid
   ================================================================ */

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

.impact-item {
  position: relative;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  padding-left: clamp(32px, 3.5vw, 48px);
  background: #fff;
  border-radius: 4px;
  transition:
    box-shadow var(--t-med),
    transform var(--t-med);
}

.impact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  transition:
    top var(--t-med),
    bottom var(--t-med);
}

.impact-item:hover {
  box-shadow: 0 8px 32px rgba(61, 12, 12, 0.08);
  transform: translateY(-2px);
}

.impact-item:hover::before {
  top: 20px;
  bottom: 20px;
}

.impact-item__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}

.impact-item__title {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.impact-item__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ================================================================
   CENTRO BOER — centre-grid (accordion)
   ================================================================ */

.centre-grid {
  border-top: 1px solid rgba(61, 12, 12, 0.12);
}

.centre-item {
  border-bottom: 1px solid rgba(61, 12, 12, 0.12);
}

.centre-item__summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.centre-item__summary::-webkit-details-marker {
  display: none;
}

.centre-item__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
}

.centre-item__title {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--ink);
  flex: 1;
  transition: color var(--t-med);
}

.centre-item__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(61, 12, 12, 0.2);
  position: relative;
  transition:
    transform var(--t-med),
    border-color var(--t-med);
}

.centre-item__arrow::before,
.centre-item__arrow::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.centre-item__arrow::before {
  width: 8px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.centre-item__arrow::after {
  width: 1.5px;
  height: 8px;
  transform: translate(-50%, -50%);
  transition:
    transform var(--t-med),
    opacity var(--t-med);
}

.centre-item[open] .centre-item__arrow {
  border-color: var(--gold);
  transform: rotate(45deg);
}

.centre-item[open] .centre-item__title {
  color: var(--gold);
}

.centre-item__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  padding: 0 0 28px 44px;
}

/* ================================================================
   PARCERIAS — part-grid
   ================================================================ */

.part-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(61, 12, 12, 0.12);
  border-left: 1px solid rgba(61, 12, 12, 0.12);
}

.part-item {
  border-right: 1px solid rgba(61, 12, 12, 0.12);
  border-bottom: 1px solid rgba(61, 12, 12, 0.12);
  overflow: hidden;
}

.part-item__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  transition: transform var(--t-med);
}

.part-item:hover .part-item__inner {
  transform: translateX(6px);
}

.part-item__text {
  flex: 1;
}

.part-item__title {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.part-item__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

.part-item__arrow {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity var(--t-med),
    transform var(--t-med);
}

.part-item:hover .part-item__arrow {
  opacity: 1;
  transform: translateX(0);
}
