* {
  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;
}

.site-header {
  height: 100px;
}


.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 320px;
  display: block;
}

/* Compensa o header fixo */
.header-offset {
  padding-top: 120px;
}

.menu-toggle { display: none; }

.nav-menu .menu-list {
    list-style: none;
    display: flex;
    gap: 36px;
}

.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;
}


.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);
    font-size: 15px;
}

.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;
}

/* ===== Compensa o header fixo ===== */
.header-offset { padding-top: calc(var(--header-h) + 24px); }

/* ===== Banner / Painel central ===== */
.banner-servicos {
  padding: 0 var(--page-pad) 16px;
}

/* === Botão do menu mobile === */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #ff2d45;
  cursor: pointer;
  gap: 0;
}

.menu-toggle .icon {
  transition: transform 0.2s ease;
  font-size: 2.2rem;
  line-height: 1;
}

.banner-servicos__wrapper {
  background: #F1EDDE;
  overflow: hidden;                     /* respeitar o radius */
  display: grid;
  place-items: center;                  /* centraliza a imagem */
  min-height: 520px;   
  padding-top: 7.2rem;                 /* dá “respiro” parecido com o print */
}

img.banner-hero {
    height: auto;
   width: 77%;
}

.list-content {
  background: #F1EDDE; /* ajuste para sua cor */
  border-top: solid 2px #fa2a46;
}

.list-content .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

.list-content__grid {
    display: flex;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    padding: 90px 0px 90px 0px;
    flex-direction: row;
    justify-content: space-around;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px 50px;
    max-width: 85vh;
}

.service-card__title {
  margin: 0 0 10px;
  color: #700831; /* ajuste para seu vermelho */
  font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 24px;
    letter-spacing: 0px;
    word-spacing: 0px;
}


.service-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #700831; /* no print parece tudo no mesmo tom */
  max-width: 50ch;
}

.list-content__headline {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.list-content__headline-text {
    font-family: "Roboto Serif";
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    color: #fa2a46;
    max-width: 71vh;
}

/* Responsivo */
@media (max-width: 980px) {
  .list-content__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-list {
    grid-template-columns: 1fr; /* 1 coluna no mobile */
    gap: 28px;
  }

  .service-card__text {
    max-width: none;
  }
}

.list-content-2 {
  background: #F1EDDE; /* ajuste para sua cor */
  border-top: solid 2px #fa2a46;
  border-bottom: solid 2px #fa2a46;
}

.list-content-2 .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
  .banner-servicos {
    padding: 10px;
}

img.banner-hero {
    height: auto;
    width: 100%;
}
    .banner-servicos__wrapper {
        display: flex;
        min-height: 10px;
        padding-top: 10px;
    }

.list-content__grid {
        /* grid-template-columns: 1fr; */
        gap: 40px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .list-content__grid-2 {
    display: flex;
    grid-template-columns: 1.3fr 1fr;
    gap: 14rem;
    border-top: solid 2px #fa2a46;
    border-bottom: solid 2px #fa2a46;
    padding: 90px 0px 90px 0px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
}

    .menu-toggle {
        display: flex;
    }

    
}


.list-content__grid-2 {
    display: flex;
    grid-template-columns: 1.3fr 1fr;
    gap: 14rem;
    align-items: start;
    padding: 90px 0px 90px 0px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.service-list-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 62px 60px;
}

.service-card-2__title {
  margin: 0 0 10px;
  color: #700831; /* ajuste para seu vermelho */
  font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 24px;
    letter-spacing: 0px;
    word-spacing: 0px;
}


.service-card-2__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #700831; /* no print parece tudo no mesmo tom */
  max-width: 50ch;
}

.list-content-2__headline {
        display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.list-content-2__headline-text {
    font-family: "Roboto Serif";
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    color: #fa2a46;
    max-width: 21ch;
}



.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: 40px;
  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;
  }
}


/* 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; }
      .nav-menu .menu-list {
        gap: 22px;
        display: none;
    }
}

@media (max-width: 640px) {
  .banner-hero { width: min(780px, 94%); }
  .linha-vermelha--servicos { margin-top: 18px; }
}

@media (max-width: 440px) {

        .list-content__grid {
        /* grid-template-columns: 1fr; */
        gap: 40px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 15px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

        .list-content__headline-text {
      
        font-size: 25px;
        line-height: 1.05;
        font-weight: 800;
    }
       .list-content__headline {
        display: flex;
        max-width: 50vh;
    }

    .list-content-2__headline-text {
      
        font-size: 25px;
        line-height: 1.05;
        font-weight: 800;
    }

      .list-content__grid-2 {
        /* grid-template-columns: 1fr; */
        gap: 40px;
        display: flex;
        align-items: flex-start;
        padding: 15px;
         padding-top: 50px;
        padding-bottom: 50px;
    }

}

.header {
  position: relative;
}

 /* === Menu Mobile === */
@media (max-width: 768px) {
     .header-container {
        gap: 10px;
        padding: 10px;
        display: flex;
        justify-content: center;
    }

    .container{
      width: auto;
    }

    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 25px;
        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;
    }

}
