* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Mukta', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background-color: #F1EDDE; /* cor de fundo da página */
  color: #221d1d;
  overflow-x: hidden;
}

/* ===== Header fixo (mínimo necessário p/ offset funcionar) ===== */
:root {
  --header-h: 88px;                     /* altura aproximada do header */
  --page-pad: 24px;                     /* padding lateral da página */
  --panel-max: 1220px;                  /* largura máx. do painel */
  --panel-bg: #f2ead9;                  /* painel (um pouco + escuro p/ destacar) */
  --panel-border: #eadfc7;              /* borda sutil */
  --panel-radius: 12px;
  --shadow: 0 10px 35px rgba(0,0,0,.06);
  --brand-red: #e4163a;
}

.btn {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff2d45;
  color: #F1EDDE;
  border: 2px solid transparent;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    background-color: #F1EDDE;
    color: #ff2d45;
    border: 2px solid #ff2d45;
}

.btn-outline {
  border: 2px solid #ff2d45;
  color: #ff2d45;
}

.btn-outline:hover {
  background-color: #ff2d45;
  color: #fff;
}

.btn-secondary {
  background-color: #9ee3e0;
  color: #6f1a3b;
  font-weight: 500;
  padding: 8px 20px;
  font-size: 15px;
}

.btn-secondary:hover {
  background-color: #6f1a3b;
  color:#9ee3e0 ;
  border:2px solid #9ee3e0 ;
}

.site-header {
  height: 100px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px;
    height: 100px;
    background-color: #F1EDDE;
}

button#menu-toggle {
    display: none;
}

.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 320px;
  display: block;
}

/* Compensa o header fixo */
.header-offset {
  padding-top: 120px;
}

.logo {
    max-width: 50vh;
}

.nav-menu .menu-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-left: 50px;
}
.nav-menu a {
  position: relative;
  color: #700831;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 1px 0;
  display: inline-block;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #ff2d45;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  opacity: 1;
}

.blog-btn {
    background-color: #ff2d45;
    color: #F1EDDE;
    border: 2px solid transparent;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.35);
    font-size: 14px;
}

/* ===== Compensa o header fixo ===== */
.header-offset { padding-top: calc(var(--header-h) + 24px); }


.container {
    max-width: 1600px;
}

/* Página inteira com fundo bege e respiro parecido com o print */
.nt-page {
  padding: 40px 0 60px;
}

.nt-container {
  width: min(1400px, 92%);
  margin: 0 auto;
}

/* Grid: no print parece 5 colunas no desktop */
.nt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px 44px; /* espaço horizontal/vertical */
}

/* Card inteiro clicável */
.nt-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* === Seção Posts === */
.posts-section {
  background-color: #F1EDDE;
  padding: 80px 20px 120px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 10px;
    justify-items: center;
}

.post {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.post-foto {
  margin-bottom: 15px;
}


.post-foto img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
/* Estilo para o título e o texto abaixo */
/* Estilo para o título */
.post-titulo a {
    font-size: 18px;
    font-weight: bold;
    color: #700831;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 7px;
}

.post-texto {
  font-size: 14px; /* Tamanho do texto */
  color: #FA2A46; /* Cor do texto */

  text-align: center; /* Alinhamento centralizado */
}
p.post-texto {
   font-size: 14px; /* Tamanho do texto */
  color: #FA2A46; /* Cor do texto */

  text-align: center; /* Alinhamento centralizado */
}

/* Responsivo para telas menores */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas para tablets */
  }
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr; /* 1 coluna para dispositivos móveis */
  }

  .post-foto img {
    width: 100%;  /* A imagem ocupa 100% da largura disponível */
    height: 300px;  /* Ajuste da altura das imagens em telas menores */
    object-fit: cover;
  }

  .post-titulo {
    font-size: 1.1rem; /* Ajuste de tamanho do título */
  }

  .post-texto {
    font-size: 0.9rem; /* Ajuste de tamanho do texto */
  }
}

/* Thumb quadrado e “limpo” */
.nt-thumb {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 1 / 1; /* mantém o quadrado */
}

.nt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder se não tiver imagem */
.nt-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #ddd;
}

/* Título com tracking e uppercase (bem parecido com o print) */
.nt-title {
  margin: 14px 0 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.35em; /* espaçamento entre letras */
  text-transform: uppercase;
  color: #7d0a0a; /* vinho */
  line-height: 1.3;
}

/* Subtítulo em vermelho, menor, com underline */
.nt-subtitle {
  margin: 0;
  font-size: 12px;
  color: #e11b1b;
  text-decoration: underline;
  line-height: 1.4;
}

/* Hover: levinho (se quiser 100% igual e sem efeito, pode remover) */
.nt-card-link:hover .nt-thumb img {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* Responsivo */
@media (max-width: 1200px) {
  .nt-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 980px) {
  .nt-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .nt-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .nt-title { letter-spacing: 0.22em; }
}
@media (max-width: 420px) {
  .nt-grid { grid-template-columns: 1fr; }
}



.linha {
  margin: 0 0 10px 0;
  color: #700831;
  font-size: 14px;
  line-height: 1.35;
}


.linha-footer {
  width: 100%;
  height: 2px;              /* espessura da linha */
  background: #e21b1b;      /* vermelho */
margin-top: 10rem;
}



.footer {
  background-color: #F1EDDE;
  padding: 60px 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5a0029;
  margin: 50px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-col h3 {
  color: #5a0029;
  font-family: 'Inter' sans-serif;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-logo {
    height: auto;
    width: 40%;
    margin-bottom: 15px;
}
.footer-privacidade {
  display: block;
  color: #c1002b;
  font-weight: 500;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 12px;
  font-family: 'Mukta'sans-serif;

}

.footer-dpo a {
  color: #c1002b;
  text-decoration: none;
  font-size: 12px;
}

.footer-text {
  font-size: 11px;
  color: #444;
  margin-top: 10px;
}

.links-col ul {
  list-style: none;
  padding: 0;
}

.links-col li {
  margin-bottom: 5px;
}

.links-col a {
  color: #5a0029;
  text-decoration: none;
  font-size: 12px;
  font-family: 'Mukta', sans-serif;

}

.footer-social a {
  margin-right: 12px;
  font-size: 12px;
  color: #5a0029;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  color: #5a0029;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    gap: 30px;
  }
  .linha-footer{
    margin-top: 5rem;
  }
}


/* Responsivo */
@media (max-width: 980px) {
  .list-content-2__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-list-2 {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
    gap: 28px;
  }

  .service-card-2__text {
    max-width: none;
  }
}

@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .banner-servicos__wrapper { min-height: 420px; }
  }

  /* === Menu Mobile === */
@media (max-width: 768px) {
     .header-container {
        gap: 10px;
        padding: 10px;
        display: flex;
        justify-content: center;
    }

    button#menu-toggle {
    display: flex;
}

    .logo {
    max-width: 19vh;
}

      .logo img {
        /* max-height: 39px; */
        height: auto;
        width: 90%;
    }

   .menu-toggle {
        display: flex;
    }

  .menu-toggle .icon {
        transition: transform 0.2s ease;
        font-size: 2.2rem;
        line-height: 1;
    }

    .btn {
        padding: 5px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 12px;
    }

      .menu-list {
        width: 130vw;
        background: #f2ecda;
        display: none;
        flex-direction: column;
        margin-left: 1px;
        gap: 10px;
    }

  .nav-menu .menu-list {
    display: none;
  }

  /* Aberto: transforma em lista vertical, full width, sem “ml-60” e sem “gap-40” */
          .nav-menu.open {
        position: absolute;
        /* left: 100px; */
        /* right: 2px; */
        top: 9%;
        width: 100%;
        background: #f3efe4;
        z-index: auto;
    }

  .nav-menu.open .menu-list {
    display: flex;
    flex-direction: column;

    /* mata os estilos do desktop (ml-60 / gap-40) */
    gap: 0 !important;
    margin: 0 !important;
    padding: 0;
    width: 100%;
    list-style: none;
  }

  .nav-menu.open .menu-list li {
    width: 100%;
    border-top: 1px solid #ff2d45;
  }

  .nav-menu.open .menu-list li:first-child {
    border-top: none;
  }

  .nav-menu.open .menu-list a {
    display: block;
    width: 100%;
    padding: 18px 20px; /* <- espaçamento como no seu print “correto” */
    font-size: 14px;
    color: #ff2d45;
    font-weight: 500;
    text-decoration: none;
  }

  /* Remove sublinhado/efeito do menu no mobile */
  .nav-menu.open a::after {
    display: none !important;
  }

  /* (Opcional) deixa o botão do menu acima do dropdown */
  .menu-toggle {
    font-size: 2rem;
    background: none;
    border: none;
    color: #ff2d45;
    cursor: pointer;
    gap: 0;
}
}


@media (max-width:320px){
      .logo {
        max-width: 12vh;
    }
        .btn {
        padding: 5px 16px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 12px;
    }
}

@media (max-width: 425px) {
              .logo {
        max-width: 12vh;
    }

}

@media (max-width: 640px) {
  .header-container { padding: 12px var(--page-pad); }
  .banner-hero { width: min(780px, 94%); }
  .linha-vermelha--servicos { margin-top: 18px; }
}

@media (max-width: 425px) {
         .contact-banner {
        display: flex;
        margin-top: 5rem;
        padding-left: 0rem;
        justify-content: flex-start;
    }
    .contact-banner img {
        height: auto;
        width: 99%;
    }
    .contato {
        padding-left: 0rem;
        max-width: 1200px;
        padding-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
.container {
    padding: 15px;
}
}

