/* =============================================================
   NUTRIPLAN TRANSITION — SEÇÕES DA HOMEPAGE
   Hero, Institucional, Produtos, Full-bleed, Ecossistemas,
   ESG, FAQ, Contato
   ============================================================= */

/* ——————————————————————————————————————————
   HERO
   —————————————————————————————————————————— */
.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  background-color: var(--color-verde);
  overflow: hidden;
}

.hero::after {
  /* Ruído de textura sutil sobre o verde */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
  padding-block: var(--space-20);
  width: 100%;
}

.hero__content {
  max-width: 600px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-terra);
  opacity: 0.70;
  margin-bottom: var(--space-5);
}

.hero__kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-terra);
  opacity: 0.70;
}

.hero__headline {
  font-size: var(--text-hero);
  font-weight: var(--weight-medium);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-terra);
  margin-bottom: var(--space-6);
}

.hero__headline em {
  font-style: normal;
  position: relative;
}

.hero-glyph-o {
  display: inline-block;
  height: 0.84em;
  width: auto;
  vertical-align: -0.04em;
  margin: 0 0.02em;
  object-fit: contain;
}


.hero__subtext {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-terra);
  opacity: 0.75;
  margin-bottom: var(--space-10);
  max-width: 440px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  min-height: 500px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 60px rgba(61,36,21,0.12));
  animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Hero — responsivo */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__kicker { justify-content: center; }
  .hero__subtext { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__image { min-height: 300px; }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero__inner { padding-block: var(--space-12); }
  .hero__image {
    order: -1;
    min-height: 240px;
  }
}

/* ——————————————————————————————————————————
   SEÇÃO INSTITUCIONAL — "A Nutriplan evoluiu"
   —————————————————————————————————————————— */
.institucional {
  background-color: var(--color-off-white);
}

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

.institucional__media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.institucional__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  transition: transform var(--transition-slow);
}

.institucional__media:hover img {
  transform: scale(1.02);
}

.institucional__text .section__label {
  margin-bottom: var(--space-4);
}

.institucional__headline {
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-terra);
  margin-bottom: var(--space-6);
  line-height: var(--leading-snug);
}

.institucional__desc {
  font-size: var(--text-base);
  color: var(--color-terra-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.institucional__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  background-color: var(--color-bege);
  border-radius: var(--radius-xl);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat__number {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-terra);
  line-height: 1;
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--color-terra-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

@media (max-width: 1024px) {
  .institucional__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* ——————————————————————————————————————————
   SEÇÃO SOLUÇÕES — tabs + produto
   —————————————————————————————————————————— */
.solucoes {
  background-color: var(--color-bege-light);
}

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

.solucoes__text .section__label {
  margin-bottom: var(--space-4);
}

.solucoes__headline {
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-terra);
  margin-bottom: var(--space-4);
}

.solucoes__desc {
  color: var(--color-terra-muted);
  margin-bottom: var(--space-8);
}

.solucoes__image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.solucoes__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

@media (max-width: 1024px) {
  .solucoes__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .solucoes__image { order: -1; }
}

/* ——————————————————————————————————————————
   FULL-BLEED — foto com sobreposição
   —————————————————————————————————————————— */
.fullbleed {
  position: relative;
  height: clamp(300px, 55vw, 700px);
  overflow: hidden;
}

.fullbleed__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.fullbleed:hover .fullbleed__bg {
  transform: scale(1.03);
}

.fullbleed__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(61, 36, 21, 0.80) 0%,
    rgba(61, 36, 21, 0.40) 50%,
    transparent 100%
  );
}

.fullbleed__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.fullbleed__inner {
  max-width: 520px;
}

.fullbleed__headline {
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-off-white);
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}

.fullbleed__sub {
  font-size: var(--text-lg);
  color: rgba(245, 237, 224, 0.80);
  margin-bottom: var(--space-8);
}

/* ——————————————————————————————————————————
   ECOSSISTEMAS
   —————————————————————————————————————————— */
.ecossistemas {
  background-color: var(--color-off-white);
}

.ecossistemas .ecosystem-card {
  background-color: var(--color-off-white);
  color: var(--color-terra);
}

.ecossistemas .ecosystem-card__label,
.ecossistemas .ecosystem-card__desc {
  color: var(--color-terra-muted);
}

.ecossistemas .ecosystem-card__cta {
  color: var(--color-terra);
}


.ecossistemas__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.ecossistemas__headline {
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-terra);
  margin-bottom: var(--space-4);
}

.ecossistemas__sub {
  font-size: var(--text-lg);
  color: var(--color-terra-muted);
}

.ecossistemas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .ecossistemas__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ——————————————————————————————————————————
   ESG / SUSTENTABILIDADE
   —————————————————————————————————————————— */
.esg {
  background-color: var(--color-verde-soft);
}

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

.esg__content .section__label--verde {
  color: var(--color-verde-dark);
}

.esg__headline {
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-terra);
  margin-bottom: var(--space-5);
}

.esg__desc {
  font-size: var(--text-base);
  color: var(--color-terra);
  opacity: 0.80;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.esg__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.esg__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

@media (max-width: 1024px) {
  .esg__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* ——————————————————————————————————————————
   FAQ
   —————————————————————————————————————————— */
.faq {
  background-color: var(--color-bege-light);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
}

.faq__sidebar {
  position: sticky;
  top: calc(72px + var(--space-8));
}

.faq__sidebar-headline {
  font-size: var(--text-3xl);
  font-weight: var(--weight-medium);
  color: var(--color-terra);
  margin-bottom: var(--space-4);
}

.faq__sidebar-desc {
  font-size: var(--text-base);
  color: var(--color-terra-muted);
  margin-bottom: var(--space-6);
}

@media (max-width: 1024px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .faq__sidebar {
    position: static;
  }
}

/* ——————————————————————————————————————————
   CONTATO
   —————————————————————————————————————————— */
.contato {
  background-color: var(--color-terra);
}

.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: start;
}

.contato__info .section__label {
  color: rgba(200, 230, 60, 0.80);
}

.contato__headline {
  font-size: var(--text-4xl);
  font-weight: var(--weight-medium);
  color: var(--color-off-white);
  margin-bottom: var(--space-5);
}

.contato__desc {
  color: rgba(245, 237, 224, 0.70);
  margin-bottom: var(--space-10);
  line-height: var(--leading-relaxed);
}

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contato__form-wrapper {
  background-color: var(--color-off-white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
}

.contato__form-title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-terra);
  margin-bottom: var(--space-6);
}

@media (max-width: 1024px) {
  .contato__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 640px) {
  .contato__form-wrapper {
    padding: var(--space-6);
  }
}

/* ——————————————————————————————————————————
   IDENTIDADE / SÍMBOLO — responsivo
   —————————————————————————————————————————— */
@media (max-width: 1024px) {
  .identidade-simbolo .container > div {
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
    text-align: center;
  }
}

