/* =============================================================
   QUEM SOMOS — Estilos exclusivos da página quem-somos.html
   Grupo Ingá — Site Institucional
   ============================================================= */


/* ─────────────────────────────────────────
   SOBRE
───────────────────────────────────────── */

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__title {
  font-size: var(--font-size-3xl);
  color: var(--color-brand-green-dark);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.about__text {
  font-size: var(--font-size-base);
  color: var(--color-neutral-600);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-md);
}

.about__text:last-of-type {
  margin-bottom: 0;
}

.about__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Placeholder enquanto hero-bg.jpg não está disponível */
.about__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--color-brand-green-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px dashed var(--color-brand-green);
}

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

  .about__visual {
    order: -1;
  }

  .about__title {
    font-size: var(--font-size-2xl);
  }
}


/* ─────────────────────────────────────────
   NÚMEROS
───────────────────────────────────────── */

.numbers {
  background: var(--grad-green-premium);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../img/pattern.png'); /* If available */
  opacity: 0.05;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.number-item:last-child {
  border-right: none;
}

.number-item__value {
  font-size: var(--font-size-hero);
  font-weight: 900;
  background: var(--grad-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: inline-block;
}

.number-item__label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.80);
  line-height: var(--line-height-normal);
}

@media (max-width: 768px) {
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: var(--space-lg);
  }

  .number-item:nth-child(3),
  .number-item:last-child {
    border-bottom: none;
  }

  .number-item__value {
    font-size: var(--font-size-4xl);
  }
}

@media (max-width: 480px) {
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}


/* ─────────────────────────────────────────
   VALORES — redesign
───────────────────────────────────────── */

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: left;
  border: 1px solid var(--color-neutral-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-gold-metallic);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.value-card:hover::before {
  transform: scaleX(1);
}

/* Detalhe decorativo de fundo */
.value-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-brand-green-light);
  opacity: 0.6;
  pointer-events: none;
  transition: transform var(--transition-slow);
}

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

.value-card:hover::after {
  transform: scale(2);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-brand-green);
  flex-shrink: 0;
  transition: background-color var(--transition-normal),
              color var(--transition-normal);
}

.value-card:hover .value-card__icon {
  background-color: var(--color-brand-green);
  color: var(--color-white);
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-neutral-900);
  margin-bottom: var(--space-sm);
}

.value-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
  line-height: var(--line-height-loose);
}

@media (max-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ─────────────────────────────────────────
   MARCA PRÓPRIA (bloco quem somos)
───────────────────────────────────────── */

.mp-qs {
  background: var(--grad-cream);
  position: relative;
  border-top: 1px solid var(--color-neutral-200);
  padding: var(--section-pad-y) 0;
}

.mp-qs::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 100%;
  background: var(--grad-gold-metallic);
}

.mp-qs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.mp-qs__title {
  font-size: var(--font-size-2xl);
  color: var(--color-neutral-900);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.mp-qs__text {
  font-size: var(--font-size-base);
  color: var(--color-neutral-600);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-xl);
}

.mp-qs__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Placeholder enquanto embalagens.png não está disponível */
.mp-qs__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--color-brand-green-light);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-brand-gold);
}

@media (max-width: 768px) {
  .mp-qs__inner {
    grid-template-columns: 1fr;
  }

  .mp-qs__visual {
    order: -1;
  }

  .mp-qs__title {
    font-size: var(--font-size-xl);
  }
}

.estados-wrap {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-neutral-200);
}

.estados-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.estado-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-brand-green-light);
  border: 1px solid rgba(45, 106, 45, 0.20);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-brand-green);
}
