/* ============================================================
   SEÇÕES PADRONIZADAS ENTRE AS LOJAS
   Estilos isolados das seções que devem existir em TODAS as
   páginas, logo antes do "Sobre nós":
     • "O kit festa perfeito"  -> .dav-festa*
     • "Temperos e Bebidas"    -> .cler-temperos*
   Cópia enxuta (sem as regras de padaria/reviews da clermont.css,
   que afetariam as outras lojas). Linkado por Four Corners,
   Kissimmee e Clermont. A Davenport já tem esses estilos.
   ============================================================ */

/* ============================================================
   TEMPEROS E BEBIDAS
   ============================================================ */
.cler-temperos {
  padding: 80px 0;
  background-color: #fffdf9;
  background-image: url('img/bg-brasil-padrao-claro.webp');
  background-position: center top;
  background-repeat: repeat;
  background-size: auto;
}

.cler-temperos__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.cler-temperos__title {
  color: #3b200a;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
}

.cler-temperos__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background-color: #ee7600;
  border-radius: 2px;
}

.cler-temperos__inner {
  max-width: 1016px;
  margin: 0 auto;
}

.cler-temperos__subtitle {
  color: #3b200a;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin: 0 0 1.6rem;
}

.cler-temperos__row {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: 2.75rem;
}

.cler-temperos__image {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(59, 32, 10, 0.1);
}

.cler-temperos__item-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ee7600;
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  margin: 0 0 0.8rem;
}

.cler-temperos__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cler-temperos__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cler-temperos__text {
  color: #3b200a;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.cler-temperos__cta {
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .cler-temperos__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cler-temperos {
    padding: 50px 0;
  }

  .cler-temperos__image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .cler-temperos__subtitle {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cler-temperos {
    padding: 36px 0;
  }
}

/* ============================================================
   O KIT FESTA PERFEITO — fundo marrom escuro, título laranja +
   subtítulo claro, três fotos e CTA de encomenda.
   ============================================================ */
.dav-festa {
  background: #3b200a;
  padding: 80px 0;
}

.dav-festa .container {
  max-width: 1016px;
}

.dav-festa__heading {
  text-align: center;
  margin-bottom: 2.6rem;
}

.dav-festa__title {
  color: #ee7600;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  line-height: 1.02;
  margin: 0;
}

.dav-festa__subtitle {
  color: #f7ede1;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.1;
  margin: 0.35rem 0 0;
}

.dav-festa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
}

.dav-festa__item {
  margin: 0;
}

.dav-festa__img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.dav-festa__note {
  color: #f7ede1;
  text-align: center;
  font-style: italic;
  font-size: 1.05rem;
  margin: 2rem 0 1.4rem;
}

.dav-festa__cta {
  text-align: center;
}

@media (max-width: 768px) {
  .dav-festa {
    padding: 50px 0;
  }

  .dav-festa__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dav-festa__img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
