* {
  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: 15px;
  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;
}

.contact-banner {
    display: flex;
    justify-content: flex-start;
    margin-top: 10rem;
    padding-left: 8rem;
}

.contact-banner img {
    height: auto;
    width: 55%;
}

.contato {
    padding-left: 8rem;
    max-width: 1200px;
    padding-top: 2rem;
}

.bloco {
  margin: 0 0 44px 0;
}

.titulo {
  margin: 0 0 8px 0;
  color: #FA2A46;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.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: 16px;
    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 18px;
        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;
}
}

