/* reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* logo no topo do seu style.css */
body {
  font-family: 'Montserrat', sans-serif;
  color: #3a3a3a;
  font-weight: 300;
  /* antes você tinha: font-family: sans-serif; */
}

/* Se quiser garantir que inputs e legendas usem também Montserrat: */
input, textarea, button, a, p, li, span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
strong,
b {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor:  pointer;
}

/* container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.header__container {
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 60px;
  margin-top: 10px;
}
.header__nav-wrapper {
  background: #f5f5f5;
  border-radius: 999px;
  padding: 0.25em;
  display: flex;
  gap: 0.5em;
  font-size: 13px;
}
.header__nav-link {
  padding: 0.6em 1.2em;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.header__nav-link.active {
  background: #c00;
  color: #fff;
}
.header__whatsapp {
  background: #25d366;
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  font-size: 13px;
}
.header__whatsapp svg {
  flex-shrink: 0;
}

/* BANNER */
.banner {
  position: relative;
  overflow: hidden;
}
.banner__slides {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}
.banner__slide {
  flex: 0 0 100%;
  position: relative;
}
.banner__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.banner__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.banner__prev { left: 10px; }
.banner__next { right: 10px; }
.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.arrow.left {
  border-right: 8px solid #fff;
}
.arrow.right {
  border-left: 8px solid #fff;
}
.banner__dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.banner__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s;
}
.banner__dot.active,
.banner__dot:hover {
  opacity: 1;
}

/* NOTÍCIAS RECENTES */
.noticias {
  background: #faf5e9;
  padding: 4em 0;
}
.noticias .container {
  text-align: center;
}
.noticias__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
}
.noticias__line {
  flex: 1;
  height: 1px;
  background: #c4bfae;
}
.noticias__header h2 {
  margin: 0 1em;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  color: #3a3a3a;
}
.noticias__grid {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}
.noticia__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.noticia__card:hover {
  transform: translateY(-5px);
}
.noticia__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.noticia__info {
  padding: 1em;
}
.noticia__categoria {
  display: inline-block;
  padding: 0.2em 0.6em;
  border: 1px solid #c4bfae;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #695e4f;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.noticia__separador {
  display: inline-block;
  width: 30px;
  border-bottom: 1px solid #c4bfae;
  margin: 0 0.5em;
  vertical-align: middle;
}
.noticia__date {
  font-size: 0.875rem;
  color: #695e4f;
  vertical-align: middle;
}
.noticia__titulo {
  margin: 0.75em 0 0;
  font-size: 1.2rem;
  color: #a51b23;
  line-height: 1.2;
}
.btn--secundario {
  display: inline-block;
  background: #c00;
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 50px;
  font-weight: 500;
  margin: 2em auto 0;
  cursor: pointer;
  transition: background 0.2s;
}
.btn--secundario:hover {
  background: #a00;
}

/* === LOJAS EM DESTAQUE === */
.lojas {
  background: #faf5e9;
  padding: 4em 0;
}

/* container já existente garante alinhamento */
.lojas .container {
  text-align: left;
}

/* cabeçalho com linhas flexíveis, igual ao das notícias */
.lojas__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
}
.lojas__line {
  flex: 1;
  height: 1px;
  background: #c4bfae;
}
.lojas__header h2 {
  margin: 0 1em;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 2.5rem;
  color: #3a3a3a;
}

/* destaque grande: usa grid sem gap para imagem e texto colados */
.lojas__highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* sem gap */
  margin-bottom: 2em;
}
.lojas__highlight img {
  width: 100%;
  /* border radius somente no canto externo */
  border-radius: 16px 0 0 16px;
  object-fit: cover;
  /* garanta proporção mais “alta” */
  aspect-ratio: 4 / 3;
}
.lojas__highlight-info {
  background: #fff;
  padding: 2em;
  text-align: left;
  border-radius: 0 16px 16px 0;
}
.lojas__highlight-info h3 {
  margin-bottom: .5em;
  color: #a51b23;
}
.lojas__highlight-info .tag {
  margin-bottom: 1em;
  color: #695e4f;
}

/* grid de 3 cards: responsivo */
.lojas__grid {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2em;
}
.loja__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform .2s;
}
.loja__card:hover {
  transform: translateY(-5px);
}
.loja__card img {
  width: 100%;
  /* mesmo aspect-ratio do destaque, para não “rasgar” muito */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  /* borda arredondada só no topo externo */
  border-radius: 16px 16px 0 0;
}
.loja__card-info {
  padding: 1em;
  text-align: left;
}
.loja__card-info h3 {
  margin-bottom: .25em;
  font-size: 1.25rem;
  color: #a51b23;
}
.loja__card-info .tag {
  margin-bottom: .75em;
  color: #695e4f;
}
.loja__card-info p {
  margin: .25em 0;
}

/* botão “Ver todas” */
.btn--secundario {
  display: inline-block;
  margin: 2em auto 0;
}

/* destaque e cards usam mesmo box-shadow e border-radius */
.lojas__highlight,
.loja__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}
.lojas__highlight:hover,
.loja__card:hover {
  transform: translateY(-5px);
}

/* destaque em grid sem gap */
.lojas__highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2em;
}
.lojas__highlight img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  /* borda arredondada somente no exterior */
  border-radius: 16px 0 0 16px;
}
.lojas__highlight-info {
  padding: 2em;
  text-align: left;
  border-radius: 0 16px 16px 0;
}
.lojas__highlight-info .tag {
  margin: 0.5em 0 1em;
  color: #695e4f;
}

/* cards */
.lojas__grid {
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2em;
}
.loja__card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.loja__card-info {
  padding: 1em;
  text-align: left;
}
.loja__card-info .tag {
  margin: 0.25em 0 0.75em;
  color: #695e4f;
}

/* MAPA */
.mapa {
  width: 100%;
  margin: 0;      /* sem gaps */
  padding: 0;
}
.mapa iframe {
  width: 100vw;              /* ocupa toda a viewport */
  max-width: 100%;           /* para não extrapolar se estiver em container */
  height: 400px;             /* ou o tamanho que preferir */
  border: 0;
  display: block;
  /* centraliza caso queira usar 100% em vez de 100vw:
     margin-left: 50%;
     transform: translateX(-50%);
  */
}

/* ========== FOOTER ========== */
.site-footer {
  background: #8b1c25;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* FOOTER MAIN: 5 colunas */
.footer-main {
  display: grid;
  grid-template-columns:
    minmax(250px, 2fr)    /* Coluna 1: mais larga */
    repeat(4, minmax(100px, 1fr)); /* Colunas 2–5 */
  gap: 2em;
  padding: 3em 0 2em;
}
.footer-col {
  /* nada extra */
}
.footer-col--info .footer-logo {
  max-width: 140px;
  margin-bottom: 1em;
}
.footer-contact,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact li,
.footer-links li {
  margin-bottom: 0.6em;
  display: flex;
  align-items: center;
}
.footer-contact li i,
.footer-links li i {
  margin-right: 0.5em;
  width: 1em;
  text-align: center;
}
.footer-contact a,
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-contact a:hover,
.footer-links a:hover {
  opacity: 0.8;
}
.footer-col h4 {
  margin-bottom: 0.8em;
  font-weight: 700;
  font-size: 1.1rem;
}

/* divisor entre main e bottom */
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* FOOTER BOTTOM */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
}
.footer-social {
  display: flex;
  gap: 1em;
}
.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #f4f4f4;
}
.footer-copy {
  margin: 0;
  flex: 1 1 auto;
  text-align: center;
}
.footer-terms {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-terms:hover {
  opacity: 0.8;
}

/* remove qualquer overflow horizontal */
html, body { overflow-x: hidden; }

/* HERO full-width */
.historia-hero {
  width: 100%;
  overflow: hidden;
}
.historia-hero__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* estrutura de linha/coluna */
.historia__row {
  display: flex;
  gap: 2em;
  align-items: flex-start;
}
.historia__row--reverse {
  flex-direction: row-reverse;
}
.historia__col {
  flex: 1;
}

/* textos */
.historia__title,
.historia__subtitle {
  font-family: 'Playfair Display', serif;
  color: #3a3a3a;
  margin-bottom: 1em;
}
.historia__title {
  font-size: 2rem;
}
.historia__subtitle {
  font-size: 1.5rem;
}
.historia__texto {
  font-size: 1rem;
  line-height: 1.7;
  color: #3a3a3a;
}

/* tons de fundo alternados */
.historia {
  padding: 4em 0;
}
.historia--tone1 {
  background-color: #FFFDF7; /* creme claro */
}
.historia--tone2 {
  background-color: #F6F6F6; /* cinza suave */
}

/* imagens dos blocos 2 e 3 */
.historia__col--img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* === CONTATO === */
.contato {
  background-color: #FFFDF7;  /* tom claro creme */
  padding: 4em 0;
}
.contato__title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #c00;
  margin-bottom: 0.5em;
}
.contato__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2em;
  color: #3a3a3a;
  line-height: 1.6;
}

/* GRID do formulário (2 colunas) */
.contato__form .contato__grid {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1em;
}

/* Campo de telefone com prefixo */
.contato__telefone {
  display: flex;
}
.contato__ddi {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 0.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contato__telefone input {
  border: 1px solid #ccc;
  border-radius: 0 4px 4px 0;
  border-left: none;
  padding: 0.6em;
  flex: 1;
}

/* Inputs e textarea */
.contato__form input,
.contato__form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.6em;
  font-size: 1rem;
  font-family: inherit;
  color: #3a3a3a;
}
.contato__form textarea {
  resize: vertical;
  min-height: 180px;
}

/* Botão */
.contato__btn {
  display: block;
  margin: 0 auto;
  background: #c00;
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 50px;
  font-weight: 500;
  transition: background 0.2s;
}
.contato__btn:hover {
  background: #a00;
}
/* === AJUSTES PARA A PÁGINA DE CONTATO === */

/* 1) Limita a largura do formulário e centraliza */
.contato__form {
  max-width: 800px;
  margin: 0 auto;       /* centra dentro da section */
  padding: 0;           /* remove qualquer padding branco */
  background: none;     /* tira fundo branco */
}

/* 2) Deixa inputs/textarea com o mesmo fundo da section */
.contato__form input,
.contato__form textarea {
  background: transparent;
}

/* 3) Aumenta espaçamento entre form e botão */
.contato__btn {
  margin-top: 2em;
  border: none;         /* remove borda escura grossa */
  box-shadow: none;     /* remove eventual sombra de foco */
}

/* 4) Melhora o hover e outline do botão */
.contato__btn:hover {
  background: #a00;
}
.contato__btn:focus {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

/* 5) Espaçamento interno dos campos para ficarem menores e alinhados */
.contato__form input,
.contato__form textarea {
  padding: 0.75em 1em;
}

/* 6) Ajusta container (se quiser alongar a section até as bordas) */
.contato {
  padding: 4em 1em;      /* mantém o padding vertical e adiciona 1em lateral */
}

/* 7) Se quiser inputs levemente sombreados ao foco */
.contato__form input:focus,
.contato__form textarea:focus {
  border-color: #c00;
  box-shadow: 0 0 0 2px rgba(197,0,0,0.2);
}
/* em assets/css/style.css, logo após o import das fontes */

/* Títulos H1/H2 da seção de contato */
.contato__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;       /* peso mais carregado, igual ao mock */
  font-size: 2.5rem;      /* já deve estar assim */
  color: #c00;
}
/* === BANNER ESTÁTICO DA NOTÍCIA === */
.noticia-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* === DETALHE DA NOTÍCIA === */
.noticia-detail {
  background: #faf5e9;
  padding: 4em 0;
}
.noticia-detail .container {
  max-width: 800px;
  margin: 0 auto;
  color: #3a3a3a;
}

/* Título centralizado com linhas iguais às seções */
.noticia-detail__title {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  color: #3a3a3a;
  text-align: left;
  margin-bottom: 0.5em;
}
.noticia-detail__title::before,
.noticia-detail__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 15%;
  height: 1px;
  background: #c4bfae;
  transform: translateY(-50%);
}
.noticia-detail__title::before { left: 0; }
.noticia-detail__title::after  { right: 0; }

/* Data embaixo do título */
.noticia-detail__date {
  display: block;
  text-align: left;
  font-size: 0.875rem;
  color: #695e4f;
  margin-bottom: 2em;
}

/* Texto da notícia */
.noticia-detail__content {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
}

/* garante que nada extrapole horizontalmente */
html, body { overflow-x: hidden; }

/* 1) remove linhas do título */
.noticia-detail__title::before,
.noticia-detail__title::after {
  display: none;
}

/* 2) estilo para a imagem da notícia */
.noticia-detail__img {
  float: left;
  width: 40%;              /* ajusta conforme você queira */
  max-width: 300px;         /* limita o tamanho */
  margin: 0 1.5em 1.5em 0;  /* espaçamento */
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

/* 3) garante que o container limpe o float */
.noticia-detail__content {
  overflow: hidden;
  text-align: left;
}

.noticia-detail__wrapper {
  display: flex;
  gap: 2em;
  align-items: flex-start;
}

.noticia-detail__img {
  flex: 0 0 40%;
  max-width: 300px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.noticia-detail__content {
  flex: 1;
}
/* wrapper flexível para detalhe da loja */
.loja-detail__wrapper {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* coluna da imagem */
.loja-detail__img {
  flex: 1;
}
.loja-detail__img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

/* coluna de informações */
.loja-detail__info {
  flex: 1;
}
.loja-detail__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3a3a3a;
}
.loja-detail__info p {
  margin: 0.5em 0;
  line-height: 1.6;
}
.loja-detail__desc {
  margin-top: 1.5em;
}
/* ========== HEADER BASE ========== */
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* desktop: logo + nav + whatsapp */
  padding: 0.5em 1em;
  position: relative; /* para o dropdown mobile */
}

.header__logo        { order: 1; flex: 0 0 auto; }
.header__nav-wrapper { order: 2; display: inline-flex; justify-content: center; gap: 0.5em; background: #f5f5f5; border-radius: 999px; padding: 0.25em; }
.header__nav-wrapper .header__nav-link { padding: 0.6em 1.2em; border-radius: 999px; font-weight: 500; transition: background 0.2s, color 0.2s; }
.header__nav-wrapper .header__nav-link.active { background: #c00; color: #fff; }

.header__whatsapp    { order: 3; flex: 0 0 auto; margin-left: 1em; background: #25d366; color: #fff; padding: 0.6em 1.2em; border-radius: 999px; display: inline-flex; align-items: center; gap: 0.5em; font-size: 13px; }
.header__hamburger   { order: 4; display: none; background: none; border: none; cursor: pointer; padding: 0.5em; }
.header__hamburger span { display: block; width: 24px; height: 3px; margin: 4px 0; background: #333; border-radius: 2px; }

/* ========== MOBILE HEADER (<=768px) ========== */
@media (max-width: 768px) {
  .header__container {
    justify-content: flex-start; /* empurra itens à esquerda */
  }

  /* esconde nav “pill” e mostra apenas no .open */
  .header__nav-wrapper {
    display: none !important;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: #8b1c25; /* vermelho do site */
    flex-direction: column;
    padding: 0.5em 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 0;
    z-index: 20;
  }
  .header__nav-wrapper.open {
    display: flex !important;
  }
  .header__nav-wrapper .header__nav-link {
    color: #fff;
    padding: 0.75em 1em;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    text-align: center;
  }
  .header__nav-wrapper .header__nav-link:last-child {
    border-bottom: none;
  }
  .header__nav-wrapper .header__nav-link.active {
    background: rgba(255,255,255,0.15);
  }

  /* WhatsApp menor e posicionado logo após o nav-dropdown */
  .header__whatsapp {
    padding: 0.4em 0.8em;
    font-size: 12px;
    order: 3;
    margin-left: auto;
  }

  /* exibe hambúrguer à direita */
  .header__hamburger {
    display: block;
    margin-left: 1em;
  }
}
/* Detalhe da notícia: wrapper flex imagem + conteúdo */
.noticia-detail__wrapper {
  display: flex;
  gap: 2em;
  align-items: flex-start;
}

/* Garante que a imagem não fique gigante */
.noticia-detail__img {
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

/* No mobile (até 768px), empilha imagem → texto */
@media (max-width: 768px) {
  .noticia-detail__wrapper {
    flex-direction: column;
  }
   .noticia-detail__img {
    /* faz a imagem ocupar 100% da largura disponível */
    width: 100%;
    max-width: none;      /* remove a limitação anterior */
    height: auto;
    margin-bottom: 1em;
  }
  .noticia-detail__content {
    width: 100%;
  }
   .historia__row {
    flex-direction: column !important;
    gap: 1.5em; /* opcional, aumenta o espaçamento entre blocos */
  }

  /* garante que cada coluna ocupe 100% da largura */
  .historia__col {
    width: 100%;
  }
}


