/* ============================================
   1789 TRADIÇÃO — BASE STYLE.CSS
   Design Tokens & Component Library
   ============================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  /* Cores */
  --wine: #56090F;
  --wine-deep: #3D060A;
  --beige: #CD9E6C;
  --beige-light: #E8D5B8;
  --brown: #9F6B41;
  --cream: #FAF6F0;
  --gray-light: #F3EDE5;
  --gray-mid: #6B6259;
  --black: #020202;
  --white: #FFFFFF;

  /* Gradiente dourado (retirado do logo SVG) */
  --gold-gradient: linear-gradient(135deg, #a26b41 0%, #dcad77 35%, #d9ab77 55%, #9f6b41 100%);

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  /* Espaçamentos */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 32px;
  --spacing-lg: 64px;
  --spacing-xl: 120px;

  /* Border-radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Sombras */
  --shadow-soft: 0 2px 12px rgba(61, 6, 10, 0.08);
  --shadow-med: 0 6px 28px rgba(61, 6, 10, 0.14);
  --shadow-hard: 0 12px 48px rgba(61, 6, 10, 0.22);

  /* Transições */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  background: var(--cream);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* --- TIPOGRAFIA --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.8;
}

em {
  font-style: italic;
  font-weight: 300;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-mid);
  max-width: 600px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 16px;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(61, 6, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(205, 158, 108, 0.15);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 52px;
  width: auto;
}

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

.header__nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.75);
  transition: color var(--transition);
}

.header__nav a:hover {
  color: var(--beige);
}

.header__cta {
  background: var(--beige);
  color: var(--wine-deep) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.header__cta:hover {
  background: var(--beige-light) !important;
  color: var(--wine-deep) !important;
}

/* --- BOTÕES --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}

.btn--primary:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-med);
}

.btn--ghost {
  background: transparent;
  color: var(--wine-deep);
  border-color: var(--wine-deep);
}

.btn--ghost:hover {
  background: var(--wine-deep);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}

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

.btn--beige {
  background: var(--beige);
  color: var(--wine-deep);
  border-color: var(--beige);
}

.btn--beige:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

.btn--cream {
  background: var(--cream);
  color: var(--wine-deep);
  border-color: var(--cream);
}

.btn--cream:hover {
  background: var(--beige-light);
  border-color: var(--beige-light);
}

.btn--lg {
  padding: 18px 48px;
  font-size: 0.88rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --- LAYOUT HELPERS --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

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

/* --- CARDS --- */
.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(205, 158, 108, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--wine);
}

.problem-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--wine-deep);
}

.problem-card p {
  font-size: 0.95rem;
}

.step {
  padding: 32px;
  border: 1px solid rgba(205, 158, 108, 0.2);
  border-radius: var(--radius-md);
}

.step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(205, 158, 108, 0.35);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.step h3 {
  color: var(--cream);
  margin-bottom: 10px;
}

.step p {
  color: rgba(250, 246, 240, 0.65);
  font-size: 0.95rem;
}

.step__icon {
  color: var(--beige);
  margin-bottom: 16px;
}

/* --- PLAN CARDS --- */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid rgba(205, 158, 108, 0.15);
  position: relative;
}

.plan-card--featured {
  background: var(--wine-deep);
  border-color: var(--beige);
}

.plan-card--featured h3,
.plan-card--featured .plan-card__freq,
.plan-card--featured .plan-card__value {
  color: var(--cream);
}

.plan-card--featured .plan-card__unit {
  color: var(--beige-light);
}

.plan-card--featured li {
  color: rgba(250, 246, 240, 0.8);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--wine-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
}

.plan-card__freq {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.plan-card__value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--wine-deep);
}

.plan-card__value sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.plan-card__unit {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-left: 4px;
}

.plan-card__features {
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-mid);
}

.plan-cta {
  margin-top: auto;
}

/* --- TRUST BADGES --- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown);
  background: rgba(205, 158, 108, 0.12);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(205, 158, 108, 0.25);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item p {
  color: rgba(250, 246, 240, 0.8);
  font-size: 0.88rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wine-deep);
}

.feat-check {
  width: 18px;
  height: 18px;
  background: rgba(159, 107, 65, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown);
}

/* --- QUALITY LIST --- */
.quality__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quality__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.quality__list strong {
  display: block;
  font-weight: 600;
  color: var(--wine-deep);
  margin-bottom: 2px;
  font-size: 1rem;
}

.quality__list p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- FORM CARD --- */
.form-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-hard);
}

.form-card h3 {
  color: var(--wine-deep);
  margin-bottom: 8px;
}

.form-card__sub {
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(107, 98, 89, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--beige);
  box-shadow: 0 0 0 3px rgba(205, 158, 108, 0.18);
}

.form-group input::placeholder {
  color: rgba(107, 98, 89, 0.5);
}

/* CEP input group */
.cep-input-group {
  display: flex;
  gap: 0;
}

.cep-input-group input {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border-right: none;
  background: rgba(250, 246, 240, 0.1);
  color: var(--cream);
}

.cep-input-group input::placeholder {
  color: rgba(250, 246, 240, 0.4);
}

.cep-input-group input:focus {
  border-color: var(--beige);
}

.cep-input-group .btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.cep-card {
  background: transparent;
}

.cep-card h2 {
  color: var(--cream);
}

/* --- DIVIDER --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 158, 108, 0.3), transparent);
  border: none;
  margin: 0;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .header__inner {
    padding: 18px 28px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header__inner {
    padding: 16px 20px;
  }

  .header__nav {
    display: none;
  }

  .header.is-open {
    height: 100vh;
    background: rgba(61, 6, 10, 0.98);
    backdrop-filter: blur(16px);
  }

  .header.is-open .header__inner {
    align-items: flex-start;
  }

  .header.is-open .header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .header.is-open .header__nav a {
    font-size: 1.8rem;
    font-family: var(--font-display);
    color: var(--cream);
    font-style: italic;
  }

  .section {
    padding: 72px 0;
  }

  .section--sm {
    padding: 48px 0;
  }
}

/* ============================================
   LANDING PAGE — ESTILOS ESPECÍFICOS
   ============================================ */

/* HERO */
.hero {
  min-height: 100vh;
  background-color: var(--wine-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 92px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(205, 158, 108, 0.03) 0px,
      rgba(205, 158, 108, 0.03) 1px,
      transparent 1px,
      transparent 60px);
  pointer-events: none;
}

.hero__line {
  position: absolute;
  top: 0;
  right: 18%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(205, 158, 108, 0.5) 30%,
      rgba(205, 158, 108, 0.8) 60%,
      rgba(205, 158, 108, 0.3) 85%,
      transparent 100%);
}

.hero__line::after {
  content: '';
  position: absolute;
  top: 42%;
  left: -3px;
  width: 7px;
  height: 7px;
  background: var(--beige);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(205, 158, 108, 0.6);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--beige);
}

.hero__eyebrow span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__title em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 300;
}

.hero__sub {
  color: rgba(250, 246, 240, 0.65);
  max-width: 480px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero__logo-wrap {
  position: relative;
}

.hero__logo-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(205, 158, 108, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__logo {
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 8px 40px rgba(205, 158, 108, 0.25));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(205, 158, 108, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}

.hero__stat {
  background: rgba(61, 6, 10, 0.7);
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--beige);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.5);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.35);
}

.hero__scroll-bar {
  width: 1px;
  height: 48px;
  background: rgba(205, 158, 108, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--beige);
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(200%);
  }
}

/* SOBRE */
.sobre {
  background: var(--cream);
  padding: var(--spacing-md) 0;
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.sobre__quote {
  border-left: 3px solid var(--beige);
  padding-left: 32px;
  margin-top: 40px;
}

.sobre__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--wine-deep);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.sobre__right {
  position: relative;
}

.sobre__visual {
  background: var(--wine-deep);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.sobre__visual::before {
  content: '1789';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 600;
  color: rgba(205, 158, 108, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sobre__pilares {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.sobre__pilar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.sobre__pilar-dot {
  width: 8px;
  height: 8px;
  background: var(--beige);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.sobre__pilar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.sobre__pilar p {
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.55);
}

/* ECOSSISTEMA */
.ecossistema {
  background: var(--gray-light);
  padding: var(--spacing-md) 0;
}

.ecossistema__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.ecossistema__header h2 {
  color: var(--wine-deep);
  margin-bottom: 16px;
}

.ecossistema__header p {
  font-size: 1.05rem;
}

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

.eco-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid rgba(205, 158, 108, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.eco-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
}

.eco-card:hover::after {
  transform: scaleX(1);
}

.eco-card--wide {
  grid-column: span 2;
}

.eco-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  margin-bottom: 24px;
}

.eco-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
  display: block;
}

.eco-card h3 {
  color: var(--wine-deep);
  margin-bottom: 8px;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.eco-card>p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.eco-card .btn {
  font-size: 0.75rem;
  padding: 10px 22px;
}

/* ORIGEM */
.origem {
  background: var(--wine-deep);
  padding: var(--spacing-md) 0;
  position: relative;
  overflow: hidden;
}

.origem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(205, 158, 108, 0.025) 0px,
      rgba(205, 158, 108, 0.025) 1px,
      transparent 1px,
      transparent 60px);
}

.origem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.origem__left h2 {
  color: var(--cream);
  margin-bottom: 24px;
}

.origem__left p {
  color: rgba(250, 246, 240, 0.65);
  margin-bottom: 20px;
}

.origem__left .origem__destaque {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--beige);
  font-style: italic;
  margin-top: 8px;
}

.origem__map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.origem__map-bg {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: rgba(205, 158, 108, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(205, 158, 108, 0.12);
}

.origem__map-bg::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(205, 158, 108, 0.08);
}

.origem__map-inner {
  text-align: center;
  padding: 48px;
}

.origem__map-minas {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 4px;
  display: block;
}

.origem__map-estado {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: block;
}

.origem__map-seta {
  display: block;
  font-size: 1.5rem;
  color: rgba(205, 158, 108, 0.5);
  margin: 12px 0;
}

.origem__map-brasil {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.5);
  display: block;
}

/* CADEIA */
.cadeia {
  background: var(--cream);
  padding: var(--spacing-md) 0;
}

.cadeia__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.cadeia__header h2 {
  color: var(--wine-deep);
  margin-bottom: 16px;
}

.cadeia__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.cadeia__step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.cadeia__step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  transition: background var(--transition), color var(--transition);
  border: 1px solid rgba(205, 158, 108, 0.2);
}

.cadeia__step:hover .cadeia__step-icon {
  background: var(--wine-deep);
  color: var(--beige);
}

.cadeia__step h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine-deep);
}

.cadeia__arrow {
  color: var(--beige);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cadeia__quote {
  text-align: center;
  margin: 64px auto 0;
  padding: 40px;
  background: var(--wine-deep);
  border-radius: var(--radius-lg);
  max-width: 720px;
}

.cadeia__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  font-weight: 300;
}

/* VALORES */
.valores {
  background: var(--gray-light);
  padding: var(--spacing-md) 0;
}

.valores__header {
  text-align: center;
  max-width: 640px;
  margin-bottom: 64px;
}

.valores__header h2 {
  color: var(--wine-deep);
  margin-bottom: 16px;
}

.valores__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(205, 158, 108, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.valor-item {
  background: var(--white);
  padding: 40px 28px;
  transition: background var(--transition);
}

.valor-item:hover {
  background: var(--wine-deep);
}

.valor-item:hover .valor-item__title {
  color: var(--cream);
}

.valor-item:hover .valor-item__icon {
  color: var(--beige);
  background: rgba(205, 158, 108, 0.1);
}

.valor-item:hover p {
  color: rgba(250, 246, 240, 0.6);
}

.valor-item__icon {
  width: 44px;
  height: 44px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition);
}

.valor-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--wine-deep);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.valor-item p {
  font-size: 0.88rem;
  transition: color var(--transition);
}

/* IMPACTO */
.impacto {
  background: var(--cream);
  padding: var(--spacing-md) 0;
}

.impacto__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.impacto__header h2 {
  color: var(--wine-deep);
  margin-bottom: 16px;
}

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

.impacto-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(205, 158, 108, 0.12);
  box-shadow: var(--shadow-soft);
}

.impacto-card__value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.impacto-card__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* FUNDADOR */
.fundador {
  background: var(--gray-light);
  padding: var(--spacing-xl) 0;
}

.fundador__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.fundador__quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(205, 158, 108, 0.25);
  line-height: 0.8;
  margin-bottom: -20px;
  display: block;
}

.fundador__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--wine-deep);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 32px;
}

.fundador__name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
}

.fundador__foto {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(205, 158, 108, 0.25);
  background: var(--gray-light);
  position: relative;
}

.fundador__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fundador__foto img:not([src]),
.fundador__foto img[src=""] {
  visibility: hidden;
}

.fundador__foto:has(img:not([src])),
.fundador__foto:has(img[src=""]) {
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fundador__foto:has(img:not([src]))::after,
.fundador__foto:has(img[src=""])::after {
  content: 'Sua foto aqui';
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(107, 98, 89, 0.4);
}

.fundador__right h2 {
  color: var(--wine-deep);
  margin-bottom: 20px;
}

.fundador__right p {
  margin-bottom: 16px;
}

.fundador__right strong {
  color: var(--wine-deep);
  font-weight: 600;
}

/* FUTURO */
.futuro {
  background: var(--wine-deep);
  padding: var(--spacing-md) 0;
  position: relative;
  overflow: hidden;
}

.futuro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(205, 158, 108, 0.025) 0px,
      rgba(205, 158, 108, 0.025) 1px,
      transparent 1px,
      transparent 60px);
}

.futuro__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.futuro__inner h2 {
  color: var(--cream);
  margin-bottom: 24px;
}

.futuro__bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 48px 0;
}

.futuro__bullet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(205, 158, 108, 0.08);
  border: 1px solid rgba(205, 158, 108, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 300;
}

.futuro__bullet-dot {
  width: 6px;
  height: 6px;
  background: var(--beige);
  border-radius: 50%;
  flex-shrink: 0;
}

.futuro__assinatura {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--beige);
  font-weight: 300;
}

/* CTA FINAL */
.cta-final {
  background: var(--cream);
  padding: var(--spacing-xl) 0;
}

.cta-final__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final__inner h2 {
  color: var(--wine-deep);
  margin-bottom: 16px;
}

.cta-final__inner>p {
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-final__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.cta-final__contact p {
  font-size: 0.9rem;
}

/* FOOTER */
.footer {
  background: var(--wine-deep);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(205, 158, 108, 0.12);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(250, 246, 240, 0.5);
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.55);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--beige);
}

.footer__bottom {
  border-top: 1px solid rgba(205, 158, 108, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.3);
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =====================
   RESPONSIVE — LANDING
   ===================== */
@media (max-width: 1100px) {
  .valores__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 28px;
  }

  .hero__logo {
    width: 260px;
  }

  .hero__stats {
    max-width: 380px;
  }

  .sobre__inner,
  .origem__inner,
  .fundador__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .eco-card--wide {
    grid-column: span 1;
  }

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

  .footer__inner > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }

  .cadeia__step {
    padding: 16px 8px;
  }

  .cadeia__step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
  }

  .cadeia__step h4 {
    font-size: 0.7rem;
  }

  .cadeia__arrow {
    font-size: 1.2rem;
    margin: 0 4px;
  }

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

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

  .cta-final__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero__line {
    display: none;
  }
}

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

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}