:root {
  --bege-claro: #f7f0e6;
  --bege-acizentado: #f6f0e6;
  --marrom: rgb(187, 105, 38);
  --verde-escuro: #1e3c2f;
  --background: white;
  --dark: rgb(49, 49, 49);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.center {
  max-width: 1280px;
  padding: 0 2%;
  margin: 0 auto;
}

.w33 {
  width: 33.3%;
}

.w50 {
  padding: 0 10px;
  width: 50%;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
  scroll-behavior: smooth;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

header {
  position: relative;
  width: 100%;
  height: 150px;
  background-color: var(--bege-claro);
}

header img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 150px;
}

.menu-desktop {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  position: relative;
  top: -100px;
  left: 70%;
  transition: 300ms;
}

.menu-desktop ul {
  margin: 20px;
}

.menu-desktop form {
  position: relative;
  margin: 20px;
  left: 10px;
}

.menu-desktop form input {
  position: relative;
  height: 30px;
  width: 300px;
  border-radius: 10px;
  border: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  padding: 7px;
  bottom: 30px;
}

.menu-desktop a {
  color: var(--verde-escuro);
  text-decoration: none;
  transition: 300ms;
}

.menu-desktop a:hover {
  color: var(--marrom);
}

.hero {
  position: relative;
  width: 100%;
  min-height: var(--hero-min-h);
  overflow: hidden;
  height: 30vh;
  /* Garante que as imagens não vazem */
}

/* Viewport e track do carrossel (ajustes para posicionamento) */
.bcr-viewport {
  position: relative;
  /* Importante para z-index do conteúdo */
  width: 100%;
  height: 100%;
  /* Ocupa toda a altura do hero */
}

.bcr-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slide individual */
.bcr-slide {
  position: absolute;
  inset: 0;
  /* Ocupa todo o espaço do track */
  width: 100%;
  height: 100%;
  margin: 0;
  /* Resetar margem padrão de figure */
  display: none;
  /* Controlado por JS */
}

.bcr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garante que a imagem preencha o slide */
  filter: brightness(0.7);
  /* Escurece a imagem para melhor legibilidade do texto */
}

/* Container do conteúdo sobre a imagem */
.bcr-content {
  position: absolute;
  /* Mudamos de 'relative' para 'absolute' para que 'inset: 0' funcione corretamente */
  inset: 0;
  /* Ocupa todo o slide */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Centraliza verticalmente */
  align-items: center;
  /* Centraliza horizontalmente */
  text-align: center;
  color: #fff;
  padding: 20px;
  /* Espaçamento interno */
  gap: var(--content-gap);
  /* Espaçamento entre os itens de conteúdo */
  z-index: 1;
  /* Para garantir que fique acima da imagem */
  background: linear-gradient(180deg, var(--overlay-from), var(--overlay-to));
  /* Overlay escuro */
}

/* OBSERVAÇÃO IMPORTANTE: Removida a linha margin-bottom: 1000px;
     no .hero__content (agora .bcr-content), pois ela estava causando uma 
     rolagem vertical gigantesca e desnecessária no seu banner.
  */
/* Título */
.bcr-title {
  font-size: clamp(2rem, 5vw, 4rem);
  /* Tamanho responsivo */
  margin: 0;
  /* Resetar margem padrão */
  text-shadow: var(--text-shadow);
  line-height: 1.1;
}

/* Descrição */
.bcr-description {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 800px;
  margin: 0;
  /* Resetar margem padrão */
  text-shadow: var(--text-shadow);
}

/* Botão CTA */
.bcr-cta {
  display: inline-block;
  background-color: #007bff;
  /* Exemplo de cor azul */
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.bcr-cta:hover,
.bcr-cta:focus {
  background-color: #0056b3;
  /* Cor mais escura no hover/focus */
  transform: translateY(-2px);
  /* Efeito sutil de levantar */
}

/* Dots de navegação (já deve existir, apenas para contexto) */
.bcr-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  /* Acima do conteúdo */
}

.bcr-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bcr-dot[aria-current="true"] {
  background-color: #fff;
  transform: scale(1.2);
}

.home-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: clamp(520px, 80vh, 760px);
  color: #fff;
  background: var(--verde-escuro);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  overflow: hidden;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

.home-hero__slide.is-active {
  opacity: 1;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 60, 47, 0.85) 0%, rgba(30, 60, 47, 0.45) 45%, rgba(30, 60, 47, 0.7) 100%);
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 4rem);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
}

.home-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.home-hero__title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 600;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.home-hero__description {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  max-width: 540px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.home-cta--primary {
  background: linear-gradient(135deg, rgba(0, 213, 109, 1) 0%, rgba(65, 150, 102, 1) 100%);
  color: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.home-cta--primary:hover,
.home-cta--primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
}

.home-cta--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.home-cta--ghost:hover,
.home-cta--ghost:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

.home-hero__metrics {
  display: grid;
  grid-auto-flow: row;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(246, 240, 230, 0.12);
  border-radius: 24px;
  min-width: 220px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-metric {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-metric__value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.home-metric__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.home-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-hero__dot[aria-current="true"] {
  background: #fff;
  transform: scale(1.2);
}

.home-section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: var(--background);
}

.home-section__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.home-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.home-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--verde-escuro);
}

.home-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--verde-escuro);
}

.home-section__lead {
  font-size: 1.05rem;
  color: rgba(49, 49, 49, 0.85);
  line-height: 1.7;
}

.home-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.home-about__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--dark);
  line-height: 1.7;
}

.home-about__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.home-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--bege-acizentado);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(49, 49, 49, 0.08);
  border: 1px solid rgba(30, 60, 47, 0.08);
  color: var(--dark);
}

.home-card--compact {
  background: rgba(246, 240, 230, 0.7);
}

.home-card__icon {
  font-size: 1.75rem;
  color: var(--verde-escuro);
}

.home-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--verde-escuro);
}

.home-card__body {
  color: rgba(49, 49, 49, 0.85);
  line-height: 1.6;
}

.home-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: rgba(49, 49, 49, 0.8);
}

.home-card__list li {
  position: relative;
  padding-left: 1.2rem;
}

.home-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(30, 60, 47, 0.8);
}

.home-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-about__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 1rem;
}

.home-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(30, 60, 47, 0.18);
}

.home-gallery__item--tall {
  grid-row: span 2;
}

.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-gallery__item:hover img {
  transform: scale(1.05);
}

.home-about__metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.home-metric--secondary {
  background: rgba(246, 240, 230, 0.65);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(30, 60, 47, 0.08);
  color: var(--verde-escuro);
}

.home-metric--secondary .home-metric__value {
  color: var(--verde-escuro);
}

.home-metric--secondary .home-metric__label {
  color: rgba(30, 60, 47, 0.75);
}

.home-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 50px;
}

.home-products__footer {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--bege-acizentado);
}

.home-showcase__background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 213, 109, 0.25), rgba(30, 60, 47, 0.8));
  opacity: 0.6;
}

.home-showcase__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.home-showcase__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--dark);
}

.home-showcase__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(49, 49, 49, 0.85);
}

.home-showcase__list i {
  color: var(--verde-escuro);
  margin-right: 0.5rem;
}

.home-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-showcase__carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.home-showcase__viewport {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 290px);
  gap: 1rem;
  padding: 0.6rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.home-product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 22px 40px rgba(30, 60, 47, 0.18);
  border: 1px solid rgba(30, 60, 47, 0.08);
  overflow: hidden;
  scroll-snap-align: start;
  min-height: 100%;
}

.home-product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-product-card:hover .home-product-card__media img {
  transform: scale(1.05);
}

.home-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  color: var(--dark);
}

.home-product-card__category {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--verde-escuro);
}

.home-product-card__title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--verde-escuro);
}

.home-product-card__description {
  line-height: 1.6;
  color: rgba(49, 49, 49, 0.85);
}

.home-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-product-card__tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(30, 60, 47, 0.12);
  color: var(--verde-escuro);
  font-size: 0.8rem;
}

.home-showcase__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 60, 47, 0.9);
  color: #fff;
  box-shadow: 0 12px 24px rgba(30, 60, 47, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-showcase__nav:hover,
.home-showcase__nav:focus {
  transform: translateY(-2px);
  background: rgba(0, 213, 109, 1);
  box-shadow: 0 16px 30px rgba(0, 213, 109, 0.3);
}

.home-showcase__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .home-hero {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .home-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero__metrics {
    flex-direction: row;
    grid-auto-flow: column;
    gap: 1.5rem;
  }

  .home-showcase__inner {
    grid-template-columns: 1fr;
  }

  .home-showcase__carousel {
    grid-template-columns: 1fr;
  }

  .home-showcase__nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .home-about__layout {
    grid-template-columns: 1fr;
  }

  .home-about__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 520px;
  }

  .home-hero__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .home-hero__metrics {
    width: 100%;
    grid-auto-flow: row;
    gap: 1rem;
  }

  .home-section__header {
    text-align: left;
    align-items: flex-start;
  }

  .home-about__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .home-products__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 100px;
  }

  .home-showcase__background {
    opacity: 0.75;
  }

  .bcr-content {
    padding: 15px;
    gap: 1rem;
  }
}

@media (max-width: 540px) {
  .home-hero__title {
    font-size: 2.1rem;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__dots {
    bottom: 18px;
  }

  .home-showcase__viewport {
    grid-auto-columns: minmax(220px, 100%);
  }

  .home-products__footer {
    flex-direction: column;
  }
}

footer {
  display: none;
}

.form-login {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -135%);
  bottom: 150px;
}

.form-login input {
  margin-top: 7px;
}

.form-login span {
  margin-top: 7px;
}

.form-login input[type="submit"] {
  height: 33px;
  border-radius: 10px;
  background-color: var(--bege-claro);
  border: none;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  color: black;
  transition: 300ms;
}

.form-login input[type="text"] {
  height: 33px;
  border-radius: 10px;
  background-color: var(--bege-claro);
  border: none;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: 300ms;
  padding: 7px;
}

.form-login input[type="text"]:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: var(--verde-escuro);
  color: white;
}

.form-login input[type="password"]:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: var(--verde-escuro);
  color: white;
}

.form-login input[type="password"] {
  height: 33px;
  border-radius: 10px;
  background-color: var(--bege-claro);
  border: none;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: 300ms;
  padding: 7px;
}

.form-login input[type="submit"]:hover {
  background-color: var(--verde-escuro);
  color: white;
}

.button-section {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpp-link {
  padding: 12px;
  background: #419666;
  background: linear-gradient(90deg, rgba(65, 150, 102, 1) 0%, rgba(0, 213, 109, 1) 100%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  color: white;
  position: relative;
  top: 10px;
  text-decoration: none;
  border-radius: 9px;
  right: 5px;
}

.insta-link {
  padding: 12px;
  background: #419666;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  color: white;
  position: relative;
  top: 10px;
  text-decoration: none;
  border-radius: 9px;
  margin-left: 10px;
}

.insta-link:hover {
  opacity: 0.8;
}

.form-register {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  /* Aumentei a largura máxima para acomodar mais campos */
  padding: 20px;
  border-radius: 15px;
  /* Adicionei um arredondamento e padding geral */
  background-color: white;
  /* Cor de fundo para dar destaque ao formulário */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  /* Sombra sutil para destacar */

  /* Centralização em relação à tela */
  position: absolute;
  left: 50%;
  top: 50%;
  /* Ajustei a transformação para centralizar verticalmente de forma mais estável */
  transform: translate(-50%, -50%);
  margin: 20px 0;
  position: static;
  transform: none;
  margin: 20px auto;
  /* Margem vertical para telas menores */
}

/* Campos em grupo (Nome/Sobrenome e CEP/Endereço) */
.bcr-field-group {
  display: flex;
  gap: 15px;
  margin-top: 7px;
}

.bcr-field-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* Permite que os campos dividam o espaço igualmente */
}

/* Campos de entrada e labels (mantendo a estética do login) */
.form-register label {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
  /* Cor escura para melhor contraste */
}

.form-register input:not([type="checkbox"]) {
  height: 38px;
  /* Ligeiramente mais alto que o login para melhor toque */
  border-radius: 10px;
  background-color: var(--bege-claro);
  border: none;
  cursor: auto;
  /* Remove o cursor 'pointer' dos campos de texto */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: 300ms;
  padding: 10px;
  margin-top: 7px;
}

/* Estilo do Input em Foco (verde escuro) */
.form-register input:focus:not([type="checkbox"]) {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: var(--verde-escuro);
  color: white;

  /* Ajuste no placeholder para ser legível */
  &::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Estilo do Botão de Envio */
.form-register .bcr-submit-button {
  height: 45px;
  /* Mais alto que o login para destaque */
  margin-top: 25px;
  /* Mais espaçamento antes do botão */
  background-color: white;
  /* Cor principal do botão */
  color: black;
  font-weight: bold;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 8px 15px -4px, rgba(0, 0, 0, 0.4) 0px 4px 8px -4px;
}

/* Efeito Hover do Botão */
.form-register .bcr-submit-button:hover {
  background-color: var(--verde-escuro);
  color: white;
  cursor: pointer;
  /* Uma versão mais escura se possível */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 4px 8px -2px, rgba(0, 0, 0, 0.3) 0px 2px 4px -2px;
  opacity: 0.9;
}

/* ===================================== */
/* TERMOS E CONDIÇÕES */
/* ===================================== */

.bcr-terms-box {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 0.9em;
}

.bcr-terms-box input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 20px;
  /* Alinhamento visual com o texto */
  cursor: pointer;
}

.bcr-terms-box label a {
  color: var(--verde-escuro);
  text-decoration: none;
  font-weight: bold;
  transition: color 300ms;
}

.bcr-terms-box label a:hover {
  color: darken(var(--verde-escuro), 10%);
}

.box-sucesso {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #e8f5e9;
  color: #256029;
  border: 1px solid #a5d6a7;
}

.box-alerta {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}



/* Acessibilidade / preferências do usuário */
@media (prefers-reduced-motion: reduce) {
  .hero__track {
    transition: none;
  }

  .hero__dot {
    transition: none;
  }
}

@media screen and (max-width: 768px) {


  .grade {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .grade img {
    max-width: 90%;
    margin-top: 1%;
    border-radius: 2%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: relative;
    left: 50%;
    transform: translateX(-51%);
  }

  .menu-desktop {
    display: none;
  }

  .hero {
    height: 30vh;
  }

  footer {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-color: var(--bege-claro);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 999;
    margin-top: 40px;
  }

  .menu-mobile {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 15px;
  }

  .option {
    display: flex;
    width: 80px;
    height: 80px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .option a {
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
  }

  .option i {
    font-size: 24px;
  }

  .wpp-link {
    padding: 12px;
    background: #419666;
    background: linear-gradient(90deg, rgba(65, 150, 102, 1) 0%, rgba(0, 213, 109, 1) 100%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    color: white;
    position: relative;
    top: 10px;
    text-decoration: none;
    border-radius: 9px;
  }

  .insta-link {
    padding: 12px;
    background: #419666;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    color: white;
    position: relative;
    top: 10px;
    text-decoration: none;
    border-radius: 9px;
    margin-left: 10px;
  }

  .form-register {
    max-width: 90%;
    /* Ocupa 90% da largura em telas pequenas */
    padding: 15px;
    /* Remove o posicionamento absoluto em mobile para que o scroll funcione bem */
    position: static;
    transform: none;
    margin-top: 50px;
    margin-bottom: 120px;
  }

  /* Campos Nome/Sobrenome e CEP/Endereço voltam a ser coluna no mobile */
  .bcr-field-group {
    flex-direction: column;
    gap: 0;
    /* Remove o gap quando estão empilhados */
  }

  /* O elemento interno precisa de sua própria margem superior agora */
  .bcr-field-item {
    margin-top: 10px;
  }

  .home-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background: var(--bege-acizentado);
    margin-bottom: 50px;
  }

  .home-product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    color: var(--dark);
    max-height: 380px;
  }
}

/*novo layout*/
/* ---------- Resetzinho seguro para evitar estresse ---------- */
.home-about * {
  box-sizing: border-box;
}


.home-about img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- Cabeçalho da seção ---------- */
.home-section__header {
  margin-inline: auto;
  max-width: 70ch;
  text-align: center;
  display: grid;
  gap: 0.75rem;
}

.home-section__title {
  line-height: 1.2;
  font-size: 42px;
}

.home-section__lead {
  color: var(--dark, #222);
  opacity: .85;
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
}

/* ---------- Layout principal: mobile-first ---------- */
.home-about__layout {
  display: grid;
  grid-template-columns: 1fr;
  /* mobile: 1 coluna */
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: start;
  margin-top: 220px;
  text-align: justify;
  font-weight: 400;
}

/* Desktop: 2 colunas proporcionais */
@media (min-width: 900px) {
  .home-about__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }
}

/* ---------- Coluna de conteúdo ---------- */
.home-about__content {
  display: grid;
  gap: 1.25rem;
  color: var(--dark, #222);
  line-height: 1.7;
  max-width: 70ch;
  /* limita largura do texto */
}

/* Ações (botões) alinhadas e responsivas */
.home-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .5rem;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  padding: .75rem 1rem;
}

/* ---------- Cards de pilares ---------- */
.home-about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  /* mobile: 1 por linha */
  gap: 1rem;
  margin-top: .25rem;
}

@media (min-width: 600px) {
  .home-about__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .home-about__pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* desktop: 3 colunas */
  }
}

/* Opcional: visual mais clean pros cards (se já houver, pode pular) */
.home-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 1rem;
}

.home-card__title {
  margin: .25rem 0 .25rem;
  line-height: 1.2;
}

.home-card__body {
  opacity: .9;
}

/* ---------- Galeria ---------- */
.home-about__gallery {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr 1fr;
  /* base da grade */
  align-content: start;
}

.home-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f4f4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

/* imagens com corte bonito */
.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* proporções harmoniosas */
.home-about__gallery .home-gallery__item:not(.home-gallery__item--tall) {
  aspect-ratio: 4 / 3;
  /* retângulo padrão */
}

.home-gallery__item--tall {
  grid-row: span 2;
  /* a “alta” ocupa 2 linhas */
  aspect-ratio: 3 / 4;
}

/* Mobile: galeria vira lista vertical bonitinha */
@media (max-width: 899px) {
  .home-about__gallery {
    grid-template-columns: 1fr;
    /* 1 coluna */
  }

  .home-gallery__item--tall {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .home-section__title {
    line-height: 1.2;
    font-size: 30px;
  }

  .home-section__lead {
    color: var(--dark, #222);
    opacity: .85;
    margin-top: 20px;
    text-align: justify;
  }
}

/* ---------- Métricas ---------- */
.home-about__metrics {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 700px) {
  .home-about__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.home-metric {
  display: grid;
  gap: .25rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  text-align: center;
}

.home-metric__value {
  font-weight: 700;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
}

.home-metric__label {
  opacity: .8;
}

/* ---------- Pequenos polimentos ---------- */
.center {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.home-section {
  padding-block: clamp(2rem, 6vw, 4rem);
}