.home-nova {
  padding-top: 82px;
  background: #faf8f5;
  font-family: "Montserrat", sans-serif;
}

/* =========================
   BANNER / SLIDER NOVO
========================= */

.home-hero {
  position: relative;
  height: min(760px, calc(100vh - 82px));
  min-height: 520px;
  overflow: hidden;
  background: #414019;
}

.hero-slide {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 0 clamp(25px, 7vw, 120px) clamp(70px, 10vh, 110px);

  background-size: cover;
  background-position: center;

  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 5s ease, visibility 0.8s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(20, 20, 15, 0.58) 0%,
      rgba(20, 20, 15, 0.16) 48%,
      rgba(20, 20, 15, 0.05) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.22) 0%,
      transparent 42%
    );
}

.hero-slide.ativo {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-selos {
  position: absolute;
  top: 30px;
  right: 38px;
  z-index: 10;

  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-selos img {
  width: 180px;
  height: 180px;

  display: block;
  object-fit: contain;

  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

.hero-legenda {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;

  max-width: 500px;
  padding: 20px 25px 21px;

  color: #fff;
  text-decoration: none;

  border-left: 5px solid #e79058;
  background: rgba(65, 64, 25, 0.75);
  backdrop-filter: blur(5px);

  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-legenda:hover {
  transform: translateY(-5px);
  background: rgba(121, 71, 42, 0.92);
}

.hero-legenda span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-legenda strong {
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}

.hero-legenda b {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-top: 6px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-controles {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;

  display: flex;
  gap: 10px;

  transform: translateX(-50%);
}

.hero-bolinha {
  width: 10px;
  height: 10px;
  padding: 0;

  cursor: pointer;

  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;

  transition: 0.25s ease;
}

.hero-bolinha.ativo,
.hero-bolinha:hover {
  background: #e79058;
  border-color: #e79058;
  transform: scale(1.2);
}

/* =========================
   DESTAQUES
========================= */

.home-destaques {
  padding: 95px 20px 105px;
  background: #faf8f5;
}

.home-destaques-topo {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.home-destaques-topo span {
  color: #79472a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.home-destaques-topo h2 {
  margin: 13px 0 0;
  color: #414019;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
}

.destaques-grid {
  width: min(1280px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.destaque-card {
  display: block;
  overflow: hidden;

  color: inherit;
  text-decoration: none;

  background: #fff;
  box-shadow: 0 8px 25px rgba(65, 64, 25, 0.10);

  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.destaque-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(65, 64, 25, 0.18);
}

.destaque-img {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: #e3d8d0;
}

/* Só a primeira imagem é a foto do card */
.destaque-img > img:first-child {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  transition: transform 0.5s ease;
}

.destaque-card:hover .destaque-img > img:first-child {
  transform: scale(1.06);
}

/* Selo pequeno, independente da foto */
.destaque-selo {
  position: absolute;
  top: 12px;
  left: 12px;

  width: 80px;
  height: 80px;

  display: block;
  object-fit: contain;
  object-position: center;

  z-index: 3;

  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.22));
}

.destaque-info {
  padding: 20px 20px 22px;
}

.destaque-info > span {
  display: block;
  margin-bottom: 7px;

  color: #79472a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.destaque-info h3 {
  margin: 0 0 18px;

  color: #414019;
  font-size: 26px;
  letter-spacing: 1px;
}

.destaque-info b {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #79472a;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {
  .destaques-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}
/* =========================
   CHAMADA FINAL / HISTÓRIA
========================= */

.home-chamada {
  position: relative;
  overflow: hidden;

  padding: 115px 20px;
  text-align: center;

  background:
    linear-gradient(
      rgba(34, 42, 22, 0.74),
      rgba(34, 42, 22, 0.74)
    ),
    url("../images/home/newquem-somos.webp") center / cover no-repeat;
}

.home-chamada::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.14),
      transparent 50%,
      rgba(0, 0, 0, 0.14)
    );
}

.home-chamada-conteudo {
  position: relative;
  z-index: 2;

  width: min(760px, 100%);
  margin: 0 auto;
}

.home-chamada span {
  display: block;

  color: #ffeccd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-chamada h1 {
  margin: 15px 0 20px;

  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.14;
}

.home-chamada p {
  max-width: 650px;
  margin: 0 auto 36px;

  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.home-chamada-botoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.btn-home-produtos,
.btn-home-historia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-width: 240px;
  padding: 18px 30px;

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;

  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-home-produtos {
  color: #fff;
  background: #e79058;
  border: 1px solid #e79058;
}

.btn-home-produtos:hover {
  color: #fff;
  background: #79472a;
  border-color: #79472a;
  transform: translateY(-4px);
}

.btn-home-historia {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #fff;
}

.btn-home-historia:hover {
  color: #414019;
  background: #fff;
  border-color: #fff;
  transform: translateY(-4px);
}
/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
  .home-nova {
    padding-top: 72px;
  }

  .home-hero {
    height: 570px;
    min-height: auto;
  }

  .hero-slide {
    padding: 0 20px 75px;
    background-position: center;
  }

  .hero-slide::before {
    background:
      linear-gradient(
        0deg,
        rgba(20, 20, 15, 0.68) 0%,
        rgba(20, 20, 15, 0.10) 70%
      );
  }

  .hero-selos {
    top: 18px;
    right: 18px;
  }

  .hero-selos img {
    width: 110px;
    height: 110px;
  }

  .hero-legenda {
    width: min(100%, 380px);
    padding: 14px 16px;
  }

  .hero-legenda strong {
    font-size: 32px;
  }

  .hero-controles {
    bottom: 25px;
  }

  .home-chamada {
  padding: 82px 20px;
  background-position: center;
}
  
}

@media (max-width: 560px) {
  .home-destaques {
    padding: 65px 20px 72px;
  }

  .destaques-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .destaque-img {
    height: 250px;
  }

  .destaque-selo {
    width: 62px;
    height: 62px;
  }

  .home-chamada-botoes {
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.btn-home-produtos,
.btn-home-historia {
  width: 100%;
  min-width: 0;
}

.home-chamada-botoes a {
  justify-content: center;
}
}

/* =========================
   ATALHOS / AÇÕES
========================= */

.home-acoes {
  padding: 0 20px 95px;
  background: #faf8f5;
}

.home-acoes-grid {
  width: min(1280px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.acao-card {
  display: flex;
  align-items: center;
  gap: 15px;

  min-height: 118px;
  padding: 20px;

  color: #414019;
  text-decoration: none;

  border: 1px solid #e3d8d0;
  background: #fff;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.acao-card:hover {
  transform: translateY(-5px);
  border-color: #e79058;
  box-shadow: 0 14px 28px rgba(65, 64, 25, 0.13);
}

.acao-icone {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  color: #fff;
  font-size: 19px;

  border-radius: 50%;
  background: #79472a;
}

.acao-texto {
  flex: 1;
}

.acao-texto h3 {
  margin: 0 0 6px;

  color: #414019;
  font-size: 15px;
  font-weight: 700;
}

.acao-texto p {
  margin: 0;

  color: #795f4d;
  font-size: 12px;
  line-height: 1.45;
}

.acao-seta {
  color: #e79058;
  font-size: 14px;

  transition: transform 0.25s ease;
}

.acao-card:hover .acao-seta {
  transform: translateX(4px);
}

@media (max-width: 1050px) {
  .home-acoes-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

@media (max-width: 560px) {
  .home-acoes {
    padding: 0 20px 65px;
  }

  .home-acoes-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
  }

  .acao-card {
    min-height: 105px;
  }
}


/* =========================
   BOX TRABALHE CONOSCO
========================= */

.email-box {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  background: rgba(25, 25, 18, 0.48);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.email-box.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.email-box-conteudo {
  position: relative;

  width: min(420px, 100%);
  padding: 38px 32px 32px;

  text-align: center;

  background: #fffaf4;
  border-top: 5px solid #e79058;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);

  transform: translateY(14px);
  transition: transform 0.25s ease;
}

.email-box.is-open .email-box-conteudo {
  transform: translateY(0);
}

.email-box-fechar {
  position: absolute;
  top: 12px;
  right: 14px;

  border: 0;
  background: transparent;
  color: #79472a;
  font-size: 20px;
  cursor: pointer;
}

.email-box-icone {
  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;
  margin: 0 auto 16px;

  border-radius: 50%;
  background: #79472a;
  color: #fff;
  font-size: 21px;
}

.email-box h3 {
  margin: 0 0 11px;
  color: #414019;
  font-size: 24px;
}

.email-box p {
  margin: 0;
  color: #5a4736;
  font-size: 15px;
  line-height: 1.6;
}

.email-box p a {
  display: inline-block;
  margin-top: 4px;
  color: #79472a;
  font-weight: 700;
  text-decoration: none;
}

.email-box p a:hover {
  color: #e79058;
}


/* ========================================
   MARCAS DO GRUPO PARIS
======================================== */

.grupo-paris {
  padding: 42px 20px 48px;
  background: #f7f2ed;
  border-top: 1px solid rgba(121, 71, 42, 0.10);
}

.grupo-paris-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.grupo-paris-titulo {
  margin-bottom: 22px;
  text-align: center !important;
}

.grupo-paris-titulo span {
  display: block;
  margin-bottom: 6px;
  color: #e79058;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.grupo-paris-titulo h2 {
  margin: 0;
  color: #79472a;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 600;
}

.grupo-paris-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}

.partner-card {
  height: 96px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4d321f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(73, 49, 31, 0.14);
  transition: transform 0.25s ease, background 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  background: #5e3b25;
}

.partner-card img {
  width: 100%;
  max-width: 170px;
  max-height: 64px;
  object-fit: contain;
}

.partner-luciane img {
  max-width: 135px;
  max-height: 68px;
}

/* Logo da Vitta maior */
.partner-card.vitta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card.vitta-logo img {
    width: 62%;
    max-width: none;
    max-height: none;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}



@media (max-width: 900px) {
  .grupo-paris-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .grupo-paris {
    padding: 34px 18px 38px;
  }

  .grupo-paris-titulo {
    margin-bottom: 18px;
  }

  .grupo-paris-titulo h2 {
    font-size: 21px;
    line-height: 1.25;
  }

  .grupo-paris-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .partner-card {
    height: 82px;
    padding: 12px;
    border-radius: 12px;
  }

  .partner-card img {
    max-width: 120px;
    max-height: 48px;
  }

  .partner-luciane img {
    max-width: 112px;
    max-height: 52px;
  }
}