body {
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #faf9f7;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  margin: 0px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  z-index: 999;
}

header.scrolled {
  background-color: #fffc; /* cor quando scrolled - adapte a cor que quiser */
  backdrop-filter: blur(10px); /* desfoque do fundo atrás */
  -webkit-backdrop-filter: blur(10px); /* suporte para Safari */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* sombra para destacar */
}

ul {
  margin: 0px;
  padding: 0px;
}

.container-logo {
  width: 13rem;
  height: 4rem;
  background-image: url("img/Logo\ Nova\ 2.svg");
  background-position: center;
  background-size: 10rem;
  background-repeat: no-repeat;
}

ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20rem;
}

li a.nav-link {
  position: relative;
  font-size: 14px;
  text-decoration: none;
  color: #2e251f;
  font-family: "Inter", sans-serif;
  font-weight: 450;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.btn-enviar {
  margin-top: 26px;
  background: linear-gradient(
    135deg,
    rgb(158, 93, 46) 0%,
    rgb(206, 162, 126) 100%
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 240px;
  height: 44px;
  padding: 0 32px;

  border: none;
  border-radius: 6px;

  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 24px;
  color: #f7f5f3;
  text-align: center;

  box-sizing: border-box;
  box-shadow: 0px 4px 20px -4px rgba(158, 93, 46, 0.15);

  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-container {
  display: flex;
  justify-content: center; /* centraliza horizontalmente */
  margin-top: 20px; /* espaço acima */
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  padding: 16px 24px;
  border-radius: 8px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: none; /* muda de 'none' para block, JS vai ocultar depois */
  opacity: 0; /* começa invisível */
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.toast.success {
  background: linear-gradient(135deg, #9e5d2e 0%, #cea27e 100%);
  animation: fadeInOut 3s forwards;
  display: block;
  opacity: 1;
}

.toast.error {
  background: #e74c3c;
  animation: shake 0.6s;
  display: block;
  opacity: 1;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  10% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-10px);
  }
  40%,
  80% {
    transform: translateX(10px);
  }
}

/* underline animado */
li a.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #a25c2c; /* cor do underline */
  transition: width 0.3s ease;
}

/* efeito hover */
li a.nav-link:hover {
  color: #a25c2c;
}
li a.nav-link:hover::after {
  width: 100%;
}

/* ativo */
li a.nav-link.active {
  color: #a25c2c;
}
li a.nav-link.active::after {
  width: 100%;
}

.nav-button {
  all: unset;
  font-size: 18px;
  padding: 13px 25px;
  border-radius: 6px;
  color: #9c572f;
  box-shadow: 0px 0px 7px #caa787;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.nav-button:hover {
  transform: scale(1.05);
}

main {
  max-width: 1330px;
  height: 704px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 80px;
}

.bem-vindos {
  max-width: 660px;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.icon-text img {
  max-width: 20px;
}

.icon-conf img {
  max-width: 20px;
}

.icon-text {
  display: flex;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.icon-text h2 {
  font-size: 14px;
  color: #cea27e;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.bem-vindos h1 {
  font-size: 72px;
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-style: normal;
}

.bem-vindos h3 {
  font-size: 24px;
  color: #2e251fcc;
  font-family: "Inter", sans-serif;
  font-weight: 450;
}

.border {
  position: relative;
  padding: 2rem 0rem;
}

/* Barrinha vertical do bloco de citação */
.border span {
  position: absolute;
  width: 0.3rem;
  height: 6rem;
  border-radius: 4px;
  background: linear-gradient(
    135deg,
    rgb(158, 93, 46) 0%,
    rgb(206, 162, 126) 100%
  );
}

.border p {
  font-size: 20px;
  color: #2e251fe6;
  font-family: "Inter", sans-serif;
  font-weight: 450;
  font-style: italic;
  padding-left: 1.7rem;
}

.border p + p {
  margin-top: 1.2rem; /* ou 10px, 16px, etc. */
}

.main-btn {
  display: flex;
  gap: 1.3rem;
}

.btn-agendar {
  font-family: "Inter", sans-serif;
  font-weight: 450;
  display: inline-block;
  text-decoration: none;
  color: #f7f5f3;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 15px 40px;
  background: linear-gradient(
    135deg,
    rgb(158, 93, 46) 0%,
    rgb(206, 162, 126) 100%
  );
  border-radius: 8px;
  box-shadow: 0px 2.13323px 29.3339px -2.13323px #bd896138;
  transition: transform 0.3s ease;
}
.btn-agendar:hover {
  transform: scale(1.05);
}

.btn-conhecer {
  font-family: "Inter", sans-serif;
  font-weight: 450;
  display: inline-block;
  text-decoration: none;
  color: #f7f5f3;
  font-size: 18px;
  line-height: 28px;
  font-weight: 18px;
  padding: 15px 40px;
  background-color: #ffffffe6;
  color: #9e5d2e;
  border-color: #9e5d2e33;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0px 8px 25px -5px #9e5d2e;
  transition: transform 0.3s ease;
}

.btn-conhecer:hover {
  transform: scale(1.05);
}

.icon-conf {
  display: flex;
  gap: 7px;
}

.icon-conf p {
  font-size: 14px;
  line-height: 20px;
  margin: 0px 0px 0px 8px;
  color: #8a6f5c;
}

.crp p {
  font-size: 14px;
  line-height: 20px;
  color: #8a6f5c;
  font-family: "Inter", sans-serif;
  font-weight: 450;
}

.crp {
  display: flex;
  margin-top: 4rem;
  gap: 3rem;
  text-align: left;
}

.main-img {
  display: flex;
  align-items: flex-end;
  justify-content: right;
}

.img-efeito {
  width: 384px;
  height: 384px;
  background-image: url("./img/luciana.jpg");
  background-position: center 10%;
  box-shadow: 0px 0px 25px -1px #9e5d2e;
  background-size: cover;
  border-radius: 100%;
  transition: transform 0.6s ease;
  position: relative;
}

.img-efeito:hover {
  transform: scale(1.1);
}

.img-efeito span {
  position: absolute;
  border-radius: 100%;
}

.efeito-sup {
  width: 64px;
  height: 64px;
  margin-top: 90%;
  background: linear-gradient(135deg, #c89f85, #dfbfa6);
}

.efeito-inf {
  width: 48px;
  height: 48px;
  margin-top: -10%;
  margin-left: 85%;
  background: radial-gradient(circle at top right, #e5d6cb 0%, #fefaf7 80%);
}

.efeito-img {
  max-width: 3rem;
  margin-top: 30%;
  margin-left: 90%;
}

.cuidados {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 716px;
  text-align: center;
}

.container-cuidados {
  display: flex;
  width: 1400px;
  flex-direction: column;
}

.card-container {
  display: flex;
  width: 1400px;
  gap: 2rem;
  margin-top: 3.5rem;
}

.container-cuidados h1 {
  font-size: 48px;
  font-family: "Playfair Display", serif;
  color: #9e5d2e;
  margin-bottom: 15px;
}

.container-cuidados p {
  font-size: 20px;
  font-family: "Inter", serif;
  font-weight: 450;
  color: #8a6f5c;
}

.card img {
  max-width: 35px;
}

.fundo-icon {
  width: 80px;
  height: 80px;
}

.fundo-icon-esq {
  display: flex;
  justify-content: center;
  background-color: #fdecef;
  border-radius: 16px;
  width: 80px;
  height: 80px;
}

.fundo-icon-cen {
  display: flex;
  justify-content: center;
  background-color: #eaf6fc;
  border-radius: 16px;
  width: 80px;
  height: 80px;
}

.fundo-icon-dir {
  display: flex;
  justify-content: center;
  background-color: #f2effe;
  border-radius: 16px;
  width: 80px;
  height: 80px;
}

.card {
  background-color: white;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* centraliza verticalmente */
  text-align: center;
  gap: 16px; /* espaço entre os elementos internos */
  padding: 24px; /* espaçamento interno: 32px em cima/baixo, 24px nas laterais */
  width: 435px;
  height: 268px;
  box-shadow: 0px 0px 15px -10px #9e5d2e;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.02) translateY(-5px);
}

.card h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 32px;
  color: #cea27e;
}

.card p {
  color: #8a6f5c;
  font-family: "Inter", sans-serif;
  font-weight: 450;
  font-size: 16px;
}

.container-jornada {
  text-align: center;
  width: 100vw;
  height: 520px;
  background-color: #efe5dc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.container-jornada h1 {
  color: #9e5d2e;
  display: inline;
  font-size: 48px;
  font-family: "Playfair Display", serif;
}

.container-jornada p {
  color: #2e251fcc;
  font-size: 20px;
  font-family: "Inter", sans-serif;
}

.container-jornada a {
  display: flex;
  font-size: 18px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  color: #f7f5f3;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 28px;
  padding: 0px 40px;
  background: linear-gradient(
    135deg,
    rgb(158, 93, 46) 0%,
    rgb(206, 162, 126) 100%
  );
  width: 335px;
  height: 56px;
  transition: transform 0.2 ease;
}

.container-jornada a:hover {
  transform: scale(1.05);
  box-shadow: 0px 2.13323px 29.3339px -2.13323px #bd896138;
  transition: transform 0.3s ease;
}

.container-footer {
  width: 100vw;
  height: 361px;
  background-color: #9e5d2e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info .img {
  width: 435px;
  height: 60px;
  background-image: url("./img/Logo\ Nova\ 1.svg");
  background-position: center;
  background-size: 5rem;
  background-repeat: no-repeat;
}

.info p,
a {
  text-decoration: none;
  font-size: 14px;
  text-align: left;
  color: #f7f5f3;
  font-family: "Inter", sans-serif;
}

.info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 1368px;
  height: 180px;
  padding: 2rem 2rem;
  align-items: start;
  gap: 3rem;
}

.info h2 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: #f7f5f3;
  margin-bottom: 1rem;
}

.descricao {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contato {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contato img {
  width: 16px;
}

.endereço {
  display: flex;
  gap: 8px;
}

.telefone {
  display: flex;
  gap: 8px;
}

.email {
  display: flex;
  gap: 8px;
}

.instagram {
  display: flex;
  gap: 8px;
}

.direitos {
  margin-top: 1rem;
  position: relative;
  display: flex;
  gap: 49rem;
  color: white;
  justify-content: center;
  align-items: center;
}

.direitos img {
  width: 16px;
  vertical-align: middle;
  height: 1em;
}

.linha-direitos {
  position: absolute;
  top: 10px;
  all: unset;
  width: 86.5rem;
  height: 0.7px;
  background-color: rgba(255, 255, 255, 0.299);
  top: 10px 20px;
}

/* CSS about.html */

.main-about {
  width: 100vw;
  height: 800px;
  margin-top: 80px;
}

.main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 284px;
  width: 1368px;
  height: 576px;
}

.left h1 {
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
}

.left p {
  color: #8a6f5c;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 32.5px;
}

.balao {
  position: relative;
  width: 652px;
  height: 222px;
  background: linear-gradient(to right, #ffffff 0%, #f9f1ec 100%);
  box-shadow: 0px 6px 24px rgba(249, 241, 236, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 16px;
  margin: 32px 0px;
  box-shadow: inset -1px 0 0 #ffffff;
}

.balao p {
  width: 586px;
  color: #2e251f;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 29.25px;
}

.balao .balao_p_menor {
  width: 586px;
  color: #2e251f;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.in-ex img {
  width: 20px;
}

.in-ex p {
  color: #2e251f;
  font-size: 14px;
  font-weight: 500;
}

.icon-atend img {
  width: 20px;
}

.icon-atend p {
  color: #2e251f;
  font-size: 14px;
  font-weight: 500;
}

.in-ex {
  display: flex;
  gap: 16px;
}

.icon-crp {
  display: flex;
  align-items: center;
  background-color: #ffffffb3;
  border-radius: 9999px;
  box-shadow: 0px 4px 20px -4px #9e5d2e26;
  line-height: 24px;
  padding: 8px 16px;
  gap: 7px;
}

.icon-exp {
  display: flex;
  align-items: center;
  background-color: #ffffffb3;
  border-radius: 9999px;
  box-shadow: 0px 4px 20px -4px #9e5d2e26;
  line-height: 24px;
  padding: 8px 16px;
  gap: 7px;
}

.icon-atend {
  display: flex;
  align-items: center;
  background-color: #ffffffb3;
  border-radius: 9999px;
  box-shadow: 0px 4px 20px -4px #9e5d2e26;
  line-height: 24px;
  padding: 8px 16px;
  margin-top: 16px;
  gap: 7px;
  width: fit-content;
}

.card-sob {
  width: 401px;
  height: 601px;
  box-shadow: 0 10px 40px rgba(183, 156, 124, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  transition: transform 0.6s ease;
}

.card-sob:hover {
  transform: scale(1.07);
}

.img-card {
  width: 168px;
  height: 168px;
  background-color: #2e251f;
  border-radius: 100%;
  background-image: url("./img/luciana.jpg");
  background-position: center 10%;
  background-repeat: no-repeat;
  background-size: 10rem;
}

.card-sob h2,
h3 {
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  text-align: center;
}

.card-sob h2 {
  font-size: 20px;
  font-weight: 700;
}

.card-sob h3 {
  font-size: 30px;
  font-weight: 700;
}

.card-sob p {
  width: 336px;
  color: #2e251f;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 22.75px;
  text-align: center;
}

.card-sob a {
  display: inline-block;
  color: #9e5d2e;
  padding: 10px 25px;
  background-color: #ffffffe6;
  box-shadow: 0px 8px 25px -5px #9e5d2e40;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  align-items: center;
  transition: transforme 0.9s ease;
}

.card-sob a:hover {
  transform: scale(1.04);
}

.modalidades {
  width: 100vw;
  height: 1184px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod-container {
  width: 1400px;
  height: 928px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.mod-titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mod-titulo h1 {
  color: #9e5d2e;
  font-size: 48px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.mod-titulo p {
  color: #8a6f5c;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  line-height: 28px;
  text-align: center;
  margin-top: 24px;
}

.mod-cards {
  width: 1368px;
  height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.mod-card {
  width: 435px;
  height: 274px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0px 0px 15px -10px #9e5d2e;
  transition: all 0.6s ease, box-shadow 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 32px;
  gap: 16px;
}

.card-icons {
  transition: transform 0.4s ease;
}

.mod-card:hover .card-icons {
  transform: scale(1.1) rotate(10deg);
}

.mod-card.azul-claro:hover {
  background-color: #e8f4fb;
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0px 2px 18px -5px #9e5d2e;
}

.mod-card.lilasclaro:hover {
  background-color: #f3ecfc;
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0px 2px 18px -5px #9e5d2e;
}

.mod-card.rosaclaro:hover {
  background-color: #fceaee;
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0px 2px 18px -5px #9e5d2e;
}

.mod-card.ciano:hover {
  background-color: #e5fcfd;
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0px 2px 18px -5px #9e5d2e;
}

.mod-card.pessegoclaro:hover {
  background-color: #fdf1e5;
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0px 2px 18px -5px #9e5d2e;
}

.mod-card.verdeclaro:hover {
  background-color: #e6f7ed;
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0px 2px 18px -5px #9e5d2e;
}

.card-icons {
  width: 65px;
  height: 65px;
  background-color: #fffc;
  border-radius: 16px;
  box-shadow: 0px 8px 25px -5px #9e5d2e40;
  justify-content: center;
  text-align: center;
}

.mod-card h2 {
  color: #a6693c;
  font-size: 20px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.mod-card p {
  color: #8a6f5c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-align: center;
}

.mod-card img {
  width: 26px;
}

.mod-card .plant {
  width: 40px;
}

.card-icons {
  display: flex;
}

.mod-card.azul-claro:hover {
  background-color: #e8f4fb;
}

.abordagem {
  width: 100vw;
  height: 1000px;
  background-color: #efe8e3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abord-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1400px;
  height: 100%;
  gap: 32px;
}

.abord-container h1 {
  color: #9e5d2e;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Playfair Display", serif;
  text-align: center;
}

.texto {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.texto p {
  color: #2e251f;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.abord-flex {
  width: 869px;
  height: 399px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.abord-card {
  width: 425px;
  height: 285px;
  background-color: #ffffffe6;
  border-radius: 16px;
  box-shadow: 0px 15px 35px -5px #9e5d2e59;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abord-card img {
  width: 48px;
}

.abord-card p {
  color: #2e251f;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-style: italic;
}

.abord-card h3 {
  color: #9e5d2e;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

/* CSS Atendimento */

.tipos {
  width: 100vw;
  height: 770px;
  margin-top: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tipo-container {
  width: 1400px;
  height: 578px;
  justify-content: center;
  align-items: center;
}

.tipo-texto h1 {
  color: #9e5d2e;
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  text-align: center;
  /* margin-top: 96px; */
}

.tipo-texto p {
  color: #8a6f5c;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  font-family: "Inter", sans-serif;
  margin-top: 16px;
  margin-bottom: 49px;
}

.cards-container {
  display: flex;
  gap: 34px;
}

.tip-card {
  width: 433px;
  height: 418px;
  background-color: white;
  box-shadow: 0px 0px 15px -10px #9e5d2e;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 16px;
  margin-bottom: 94px;
}

.tip-card:hover {
  box-shadow: 0px 0px 20px -5px #9e5d2e;
}

.icon-circ {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-color: #9e5d2e1a;
  display: flex;
  justify-content: center;
}

.icon-circ img {
  width: 32px;
}

.tip-card h2 {
  color: #9e5d2e;
  font-size: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-top: 22px;
}

.tip-card .espace {
  color: #8a6f5c;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin-top: 16px;
}

.tip-card h3 {
  color: #2e251f;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  align-self: flex-start;
}

.espace {
  line-height: 26px;
}

.ben img {
  width: 16px;
}

.ben {
  display: flex;
  gap: 8px;
}
.ben-gap {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px; /* espaçamento entre itens */
  align-self: flex-start;
}

.ben p {
  color: #8a6f5c;
  text-align: left;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.formatos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 748px;
}

.formatos-container {
  width: 1400px;
  height: 556px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.formatos-cards-container {
  width: 1024px;
  height: 424px;
}

.card-formatos {
  width: 494px;
  height: 422px;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: #9e5d2e47;
  background-color: white;
  transition: all 0.6s ease;
  padding: 32px;
  box-sizing: border-box;
}

.card-formatos:hover {
  box-shadow: 5px 5px 20px -10px #2e251f;
}

.card-formatos img {
  width: 48px;
}

.icon-formato img {
  width: 16px;
}

.formatos-container h2 {
  /* margin-top: 96px; */
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.formatos-container p {
  color: #8a6f5c;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  text-align: center;
}

.card-formatos h2 {
  margin-top: 24px;
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.card-formatos h3 {
  margin-top: 8px;
  margin-bottom: 16px;
  color: #cea27e;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 16px;
}

.icon-formatos {
  margin-top: 24px;
}

.card-formatos p {
  color: #8a6f5c;
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}

.icon-formato p {
  color: #2e251f;
  font-size: 14px;
  text-align: center;
  font-family: "Inter", sans-serif;
  line-height: 25px;
  font-weight: 500;
}

.icon-formato {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.formatos-cards-container {
  margin-top: 49px;
  display: flex;
  gap: 34px;
}

.pronto {
  width: 100vw;
  height: 586px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pronto-container {
  width: 1400px;
  height: 394px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.card-pronto img {
  width: 40px;
}

.card-pronto h3 {
  margin-top: 24px;
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 8px;
}

.card-pronto p {
  color: #8a6f5c;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.card-pronto {
  width: 435px;
  height: 182px;
  background-color: #fff;
  border-color: #ebe0d6;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0px 0px 0px 0px #0000;
  color: #2e251f;
  padding: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pronto-cards-container {
  display: flex;
  gap: 32px;
}

.pronto-texto {
  width: 1368px;
  height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 96px;
}

.pronto-texto h3 {
  margin-bottom: 16px;
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.pronto-texto p {
  width: 672px;
  color: #8a6f5c;
  font-family: "Inter", sans-serif;
  line-height: 24px;
  text-align: center;
}

.pronto-texto a {
  margin-top: 26px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgb(158, 93, 46) 0%,
    rgb(206, 162, 126) 100%
  );
  border-radius: 6px;
  box-shadow: 0px 4px 20px -4px #9e5d2e26;
  color: #f7f5f3;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-weight: 8px;
  gap: center;
  font-size: 16px;
  justify-content: center;
  line-height: 24px;
  padding: 10px 32px;
  text-align: center;
  transition: all 0.6s ease;
}

.pronto-texto a:hover {
  transform: scale(1.05);
}

.contact-main {
  width: 100vw;
  height: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-main h1 {
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}

.contact-main p {
  /* margin-top: 11px; */
  color: #8a6f5c;
  display: inline;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.informação-container {
  margin-top: 36px;
  width: 1368px;
  height: 576px;
  display: flex;
  gap: 50px;
}

.location-contato {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.location-contato {
  width: 658px;
  height: 256px;
}

iframe {
  width: 658px;
  height: 256px;
  border-radius: 8px;
}

.inf-contato {
  width: 660px;
  height: 286px;
  background-color: #fff;
  border-color: #ebe0d6;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  padding: 24px;
  box-shadow: 0px 0px 0px 0px #0000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.inf-contato h2 {
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.6px;
  text-align: left;
}

.img-fundo img {
  max-width: 25px;
}

.img-fundo .img-line2 {
  width: 15;
}

.img-fundo {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #9e5d2e1a;
  display: flex;
  justify-content: center;
}

.line {
  display: flex;
  gap: 16px;
}

.contato-texto h3 {
  color: #2e251f;
  line-height: 24px;
  font-weight: 500;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

.contato-texto p {
  color: #8a6f5c;
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
}

.mensagem {
  width: 660px;
  height: 576px;
  background-color: #fff;
  border-color: #ebe0d6;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0px 0px 0px 0px #0000;
  padding: 0px 24px;
  box-sizing: border-box;
}

.mensagem h2 {
  margin-top: 24px;
  color: #9e5d2e;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.6px;
  text-align: left;
}

.mensagem h3 {
  color: #2e251f;
  display: inline;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.nome-tel {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}

.men-nome {
  display: flex;
  flex-direction: column;
}

.men-tel {
  display: flex;
  flex-direction: column;
}

.men-serv {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
}

.men-mensagem {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
}

.nome-tel input {
  all: unset;
  width: 297px;
  height: 40px;
  background-color: #f7f5f3;
  border-color: #ebe0d6;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  color: #2e251f;
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  line-height: 20px;
  margin: 8px 0px 0px;
  padding: 8px 12px;
  box-sizing: border-box;
}

.men-serv select {
  height: 40px;
  align-items: center;
  background-color: #f7f5f3;
  border-color: #ebe0d6;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0px 0px 0px 2px #f7f5f3;
  color: #2e251f;
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  justify-content: space-between;
  line-height: 20px;
  margin: 8px 0px 0px;
  padding: 8px 12px;
  text-align: center;
}

.men-mensagem textarea {
  width: 610px;
  height: 118px;
  background-color: #f7f5f3;
  border: 1px solid #ebe0d6;
  border-radius: 6px;
  color: #2e251f;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin: 8px 0 0;
  padding: 12px;
  resize: none; /* se não quiser que o usuário redimensione */
  box-sizing: border-box;
}

.men-mensagem textarea::placeholder {
  color: #8a8a8a; /* ou o tom que preferir */
}

.men-mensagem input::placeholder {
  text-align: start;
}

.mensagem a {
  margin-top: 24px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgb(158, 93, 46) 0%,
    rgb(206, 162, 126) 100%
  );
  border-radius: 6px;
  box-shadow: 0px 4px 20px -4px #9e5d2e26;
  color: #f7f5f3;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  line-height: 20px;
  margin: 20px;
  padding: 8px 16px;
  text-align: center;
  width: 610px;
  height: 40px;
  box-sizing: border-box;
}

#enviarMensagem {
  margin-top: 24px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgb(158, 93, 46) 0%,
    rgb(206, 162, 126) 100%
  );
  border-radius: 6px;
  box-shadow: 0px 4px 20px -4px #9e5d2e26;
  color: #f7f5f3;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  line-height: 20px;
  margin: 20px;
  padding: 8px 16px;
  text-align: center;
  width: 610px;
  height: 40px;
  box-sizing: border-box;
}

.men-fim {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
}

.men-fim h2 {
  margin-bottom: 7px;
  color: #9e5d2e;
  display: inline;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.men-fim p {
  width: 630px;
  color: #8a6f5c;
  display: inline;
  line-height: 24px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.men-fim a {
  margin-top: 26px;
  background: linear-gradient(
    135deg,
    rgb(158, 93, 46) 0%,
    rgb(206, 162, 126) 100%
  );
  align-items: center;
  border-radius: 6px;
  box-shadow: 0px 4px 20px -4px #9e5d2e26;
  color: #f7f5f3;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  line-height: 24px;
  padding: 0px 32px;
  text-align: center;
  width: 240px;
  height: 44px;
  box-sizing: border-box;
}

/* ==============================
   MOBILE 100% AJUSTADO
   ============================== */
@media (max-width: 768px) {
  /* Resets úteis no mobile */
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  img {
    max-width: 100%;
    height: auto;
  }

  /* HEADER */
  nav {
    justify-content: space-between;
    gap: 0;
    padding: 0.8rem 1rem;
  }
  nav ul,
  .nav-button {
    display: none;
  }
  .container-logo {
    width: 9rem;
    height: 3rem;
    background-size: contain;
  }

  /* MAIN (hero) */
  main {
    width: 100%;
    max-width: 720px;
    margin: 72px auto 0;
    padding: 0 16px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bem-vindos {
    width: 100%;
    height: auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    text-align: center;
  }
  .bem-vindos > h1 {
    font-size: 34px !important;
    line-height: 1.2;
  }
  .bem-vindos > h3 {
    font-size: 18px;
  }
  .border {
    padding: 12px 0 0;
    margin: 8px 0 16px;
  }
  .border > span {
    display: none;
  } /* só a barrinha do quote */
  .border p {
    font-size: 16px;
    padding-left: 0;
  }

  .main-btn {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .main-btn a {
    width: 100%;
    text-align: center;
  }

  .crp {
    width: 100%;
    margin-top: 16px;
    gap: 6px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-img {
    justify-content: center;
    margin: 24px 0;
  }
  .img-efeito {
    width: 260px;
    height: 260px;
  }
  .img-efeito .efeito-sup,
  .img-efeito .efeito-inf,
  .efeito-img {
    display: none;
  } /* remove enfeites que podem “vazar” */

  /* CUIDADOS */
  .cuidados {
    width: 100% !important;
    height: auto;
    padding: 24px 16px;
  }
  .container-cuidados {
    width: 100% !important;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
  }
  .container-cuidados h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .container-cuidados p {
    font-size: 14px;
  }
  .card-container {
    width: 100% !important;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
  .card {
    width: 100% !important;
    height: auto;
    padding: 20px;
  }

  /* JORNADA */
  section.jornada br {
    display: none;
  } /* remove quebras forçadas do desktop */
  .container-jornada {
    width: 100% !important;
    height: auto;
    padding: 32px 16px;
    gap: 12px;
  }
  .container-jornada h1 {
    font-size: 24px;
    line-height: 1.3;
  }
  .container-jornada p {
    font-size: 14px;
  }
  .container-jornada a {
    width: 100%;
    max-width: 340px;
  }

  /* ==============================
   FOOTER MOBILE AJUSTADO
   ============================== */
  @media (max-width: 768px) {
    footer {
      width: 100%;
    }

    .container-footer {
      width: 100%;
      background-color: #9e5d2e;
      padding: 32px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .info {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: 24px;
      text-align: center;
    }

    .info .img {
      width: 160px;
      height: 40px;
      background-position: center;
      background-size: 3rem;
      background-repeat: no-repeat;
      margin: 0 auto;
    }

    .descricao p {
      max-width: 300px;
      font-size: 14px;
      line-height: 20px;
      color: #f7f5f3;
      margin: 0 auto;
      text-align: center;
    }

    .link {
      display: flex;
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }

    .link a {
      color: #f7f5f3;
      text-decoration: none;
      font-size: 14px;
    }

    .contato {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      text-align: center;
    }

    .contato div {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
    }

    .linha-direitos {
      width: 100%;
      height: 1px;
      background-color: rgba(255, 255, 255, 0.3);
      margin: 24px 0 16px;
    }

    .direitos {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: #fff;
      font-size: 12px;
      text-align: center;
    }

    .direitos p {
      margin: 0;
      line-height: 1.4;
    }

    .direitos img {
      width: 14px;
      height: 14px;
      vertical-align: middle;
    }
  }
}

/* ==============================
   MOBILE CORRIGIDO
   ============================== */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* HEADER */
  nav {
    justify-content: space-between;
    padding: 0.8rem 1rem;
    gap: 0;
  }
  nav ul,
  .nav-button {
    display: none;
  }
  .container-logo {
    width: 9rem;
    height: 3rem;
    background-size: 4rem;
  }

  /* TITULOS */
  h1,
  h2 {
    word-wrap: break-word;
    word-break: break-word;
  }

  /* MAIN ABOUT */
  .main-container {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    gap: 2rem;
    padding: 0 16px;
    text-align: center;
  }
  .left h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .left p {
    font-size: 16px;
    line-height: 24px;
  }

  .balao {
    width: 100%;
    height: auto;
    padding: 16px;
    margin: 20px 0;
  }
  .balao p,
  .balao .balao_p_menor {
    width: 100%;
    font-size: 14px;
  }

  .in-ex,
  .icon-atend {
    justify-content: center;
  }

  .card-sob {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
    padding: 20px;
  }
  .card-sob p {
    width: 100%;
  }

  /* MODALIDADES */
  .mod-container {
    width: 100%;
    padding: 0 16px;
  }
  .mod-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mod-card {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  /* ABORDAGEM */
  .abordagem {
    height: auto;
    padding: 40px 16px;
  }
  .abord-flex {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 24px;
  }
  .abord-card,
  .texto {
    width: 100%;
  }

  /* ATENDIMENTO */
  .cards-container {
    flex-direction: column;
    gap: 16px;
  }
  .tip-card {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .formatos-cards-container {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .card-formatos {
    width: 100%;
    height: auto;
  }

  .pronto-cards-container {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .card-pronto {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .pronto-texto {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .pronto-texto p {
    width: 100%;
    font-size: 14px;
  }

  /* CONTATO */
  .informação-container {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 24px;
    padding: 0 16px;
  }
  .location-contato,
  .mensagem {
    width: 100%;
    height: auto;
  }
  iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
  }

  .nome-tel {
    flex-direction: column;
    gap: 16px;
  }
  .nome-tel input {
    width: 100%;
  }

  .mensagem textarea {
    width: 100%;
    height: 100px;
  }
  .mensagem a {
    width: 100%;
  }

  .men-fim p {
    width: 100%;
    padding: 0 16px;
    font-size: 14px;
  }

  /* FOOTER */
  .container-footer {
    height: auto;
    padding: 32px 16px;
  }
  .info {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    gap: 2rem;
    text-align: center;
  }
  .info .img {
    margin: 0 auto;
    background-position: center;
  }
  .descricao p,
  .link,
  .contato {
    text-align: center;
  }
  .contato,
  .link {
    align-items: center;
  }
  .direitos {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    margin-top: 1.5rem;
  }
  .linha-direitos {
    width: 100%;
    margin-top: 1rem;
  }
}

/* ==============================
   MOBILE AJUSTADO ABOUT (100% sem overlap)
   ============================== */
@media (max-width: 768px) {
  /* MAIN ABOUT */
  .main-about {
    margin-top: 72px;
    padding: 0 16px;
    width: 100%;
    height: auto !important; /* remove altura fixa */
    margin-bottom: 40px; /* garante espaço antes da próxima seção */
  }

  .main-container {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    height: auto !important; /* remove altura fixa */
    text-align: center;
    justify-items: center;
  }

  .left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .left h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .left p {
    font-size: 15px;
    line-height: 24px;
  }

  .balao {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
  }

  .balao p,
  .balao .balao_p_menor {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }

  .in-ex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
  }

  /* CARD SOBRE */
  .card-sob {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto;
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
  }

  .card-sob p {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }

  .card-sob a {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 12px auto 0;
    text-align: center;
  }

  /* MODALIDADES */
  .modalidades {
    width: 100%;
    height: auto !important; /* remove altura fixa */
    padding: 40px 16px;
    margin-bottom: 40px; /* evita colar no footer */
  }

  .mod-container {
    width: 100%;
    height: auto !important; /* remove altura fixa */
    gap: 32px;
  }

  .mod-titulo {
    text-align: center;
  }

  .mod-titulo h1 {
    font-size: 26px;
  }

  .mod-titulo p {
    font-size: 15px;
    line-height: 22px;
  }

  .mod-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    height: auto !important; /* remove altura fixa */
  }

  .mod-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: auto;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
  }

  /* ABORDAGEM */
  .abordagem {
    width: 100%;
    height: auto !important; /* remove altura fixa */
    padding: 40px 16px;
    margin-bottom: 40px; /* evita colar no footer */
  }

  .abord-container {
    width: 100%;
    height: auto !important; /* remove altura fixa */
    gap: 24px;
    text-align: center;
  }

  .abord-container h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .abord-flex {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 24px;
    height: auto !important; /* remove altura fixa */
  }

  .abord-card,
  .texto {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
  }

  .abord-card {
    padding: 20px;
    border-radius: 12px;
  }
}

/* ==============================
   MOBILE FINAL - SERVICE PAGE
   ============================== */
@media only screen and (max-width: 768px) {
  /* base safe resets */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  html,
  body {
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Ensure header stays on top and content doesn't hide under it */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
  /* give main sections a top offset so header não cobre conteúdo */
  .tipos,
  .formatos,
  .pronto {
    padding-top: 0px;
  }

  /* Make main containers fluid & centered */
  .tipo-container,
  .formatos-container,
  .pronto-container,
  .cards-container,
  .formatos-cards-container,
  .pronto-cards-container,
  .container-footer {
    width: 100% !important;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    height: auto !important;
    min-height: 0 !important;
  }

  /* Remove fixed heights that cause overlapping */
  .tipos,
  .formatos,
  .pronto,
  .tipo-container,
  .formatos-container,
  .pronto-container {
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 28px;
  }

  /* TYPOGRAPHY / TITLES */
  .tipo-texto h1,
  .formatos-container h2 {
    font-size: 22px;
    line-height: 1.15;
    color: #9e5d2e;
    text-align: center;
    margin: 6px 0 8px;
  }
  .tipo-texto p,
  .formatos-container p {
    font-size: 14px;
    color: #8a6f5c;
    text-align: center;
    margin: 0 0 18px;
  }

  /* CARDS: stack vertically, centered, limited width */
  .cards-container,
  .formatos-cards-container,
  .pronto-cards-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding-bottom: 8px;
  }

  .tip-card,
  .card-formatos,
  .card-pronto {
    width: 100% !important;
    max-width: 720px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(46, 37, 31, 0.06);
    background: #fff;
    text-align: left; /* texto principal à esquerda, cabeçalho centralizado via regra abaixo */
    overflow: visible;
  }

  /* Icon circle (top of card) centered visually */
  .tip-card .icon-circ,
  .card-formatos > img {
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Headings and short description centered (looks harmonic on mobile) */
  .tip-card h2,
  .card-formatos h2,
  .card-pronto h3 {
    font-family: "Playfair Display", serif;
    color: #9e5d2e;
    font-size: 18px;
    text-align: center;
    margin: 6px 0 8px;
  }

  .tip-card .espace,
  .card-formatos p,
  .card-pronto p {
    color: #8a6f5c;
    font-size: 15px;
    line-height: 1.45;
    text-align: center; /* descrição principal no centro para ficar harmonioso */
    margin-bottom: 12px;
  }

  /* ========== BENEFÍCIOS: ícone + texto na mesma linha (não empilhar) ========== */
  /* ben-gap agrupa os itens; mantemos cada .ben em linha */
  .ben-gap {
    display: flex;
    flex-direction: column; /* lista vertical de benefícios */
    gap: 10px;
    margin-top: 12px;
    padding-left: 4px;
  }

  .ben {
    display: flex;
    flex-direction: row; /* ícone e texto lado a lado */
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .ben img {
    width: 18px;
    height: 18px;
    flex: 0 0 18px; /* não encolhe */
    display: block;
  }

  .ben p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: #8a6f5c;
    flex: 1 1 auto;
    min-width: 0; /* evita overflow no flex */
    text-align: left; /* texto dos benefícios alinhado à esquerda */
    word-break: break-word;
  }

  /* Se algum .ben tiver vários itens lado a lado no desktop, aqui asseguramos que quebrem verticalmente */
  .ben + .ben {
    margin-top: 6px;
  }

  /* ========== FORMATO ICON LIST (card-formatos) ========== */
  .card-formatos .icon-formatos,
  .card-formatos .icon-formato {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }
  .card-formatos .icon-formato {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }
  .card-formatos .icon-formato img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 4px;
  }
  .card-formatos .icon-formato p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: #8a6f5c;
    text-align: left;
    min-width: 0;
  }

  /* ========== PRONTO section tweaks ========== */
  .pronto-texto {
    text-align: center;
    margin-top: 18px;
    padding-bottom: 24px;
  }
  .pronto-texto h3 {
    font-size: 20px;
    color: #9e5d2e;
    margin-bottom: 8px;
  }
  .pronto-texto p {
    font-size: 14px;
    color: #8a6f5c;
    max-width: 640px;
    margin: 0 auto;
  }
  .pronto-texto a {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 16px auto 0;
    text-align: center;
  }

  /* FOOTER */
  .container-footer {
    padding: 28px 16px;
    max-width: 720px;
    margin: 0 auto;
  }

  /* Small visual polish */
  h1,
  h2,
  h3,
  p {
    word-break: break-word;
  }
  /* Safety: prevent sections overlapping */
  section {
    position: relative;
    z-index: 1;
  }

  /* Optional: if still seeing overlap, uncomment the next line to force spacing between sections */
  /* .tipos, .formatos, .pronto { margin-bottom: 18px !important; } */
}

/* =========================================
   CONTATO — MOBILE FIX (aplicar no final)
   ========================================= */
@media (max-width: 768px) {
  /* evita qualquer vazamento horizontal */
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* MAIN: título não fica sob o header fixo */
  .contact-main {
    width: 100% !important;
    height: auto !important;
    padding: 50px 16px 40px !important; /* empurra abaixo do header */
    text-align: center;
  }
  .contact-main h1 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 10px;
    display: block;
  }
  .contact-main > p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 28px;
    display: block;
  }

  /* empilha e libera tamanhos fixos */
  .informação-container {
    gap: 24px !important;
  }
  .location-contato {
    width: 100% !important;
    height: auto !important;
    gap: 24px !important;
  }

  /* MAPA 100% */
  .location iframe {
    display: block;
    width: 100% !important;
    height: 260px !important;
    border-radius: 12px;
    border: 0;
  }

  /* CARDS */
  .inf-contato,
  .mensagem {
    width: 100% !important;
    max-width: 640px;
    margin: 0 auto 24px !important;
    height: auto !important;
    padding: 20px !important;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }

  .inf-contato h2,
  .mensagem h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 16px;
  }

  /* linhas com ícone + texto */
  .line {
    display: flex;
    align-items: center !important;
    gap: 12px;
    margin-bottom: 16px;
  }
  .img-fundo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3ece6;
    display: flex;
    align-items: center;
    justify-content: center; /* centraliza o ícone no círculo */
    flex-shrink: 0;
  }
  .img-fundo img {
    width: 20px;
    height: 20px;
    display: block;
  }
  .contato-texto h3 {
    font-size: 15px;
    line-height: 1.25;
    margin: 0;
  }
  .contato-texto p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
  }

  /* formulário */
  .nome-tel {
    display: flex;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .mensagem input,
  .mensagem select,
  .mensagem textarea {
    width: 100% !important;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    display: block;
  }
  .mensagem textarea {
    min-height: 120px;
    resize: vertical;
  }
  .mensagem a {
    display: inline-block;
    padding: 12px 24px;
    margin: 20px auto 8px; /* centraliza */
    background: #a06a3d;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    width: auto; /* largura ajustada ao conteúdo */
    min-width: 180px; /* garante largura mínima */
  }

  .contato-texto {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* força alinhamento à esquerda */
    text-align: left; /* garante texto alinhado */
  }

  .contato-texto h3 {
    font-size: 15px;
    margin: 0;
  }

  .contato-texto p {
    font-size: 13px;
    margin: 2px 0 0;
    opacity: 0.8;
  }
}

/* ===== Menu Hamburguer estilo refinado ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1100; /* acima do menu */
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #2e251f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animação para virar X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu links mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #fff;
    width: 90%; /* ocupa 90% da largura */
    margin: 0 auto; /* centraliza deixando espaço nas laterais */
    padding: 1.5rem 0;
    border-radius: 12px; /* cantos arredondados */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 70px; /* logo abaixo do header */
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.8rem 0;
  }

  .nav-links li a {
    font-size: 18px;
    font-weight: 500;
    color: #2e251f;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .nav-links li a:hover {
    color: #9e5d2e;
  }

  /* Esconde o botão de consulta no mobile */
  .nav-button {
    display: none;
  }
}

/* ===========================
   MENU HAMBURGUER
   =========================== */
.menu-toggle {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10000; /* fica sempre por cima */
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2e251f; /* cor dos risquinhos */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animação para o "X" */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   MENU HAMBURGUER AJUSTADO
   =========================== */
.menu-toggle {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 10000;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2e251f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* posição inicial dos 3 risquinhos */
.menu-toggle span:nth-child(1) {
  top: 0;
}
.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* quando ativo: vira um X perfeito */
.menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Esconde no desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

/* Mostra no mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}

#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  min-width: 260px;
  max-width: 320px;
  padding: 16px 20px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #fff;
  display: none;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.4s ease;
}

/* Sucesso */
#toast.success {
  background: #2e7d32;
}

/* Erro */
#toast.error {
  background: #c62828;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
