@charset "UTF-8";
/* RESET PAGE */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  display: grid;
  grid-template-areas: "header" "header" "header" "main" "main" "main" "footer" "footer" "footer";
}

/* HEADER */
.header {
  background-color: #e4e4e4;
  padding: 1% 10%;
  grid-area: header;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  position: fixed; /* fixa no topo */
  top: 0; /* gruda no topo */
  left: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* DIV ONDE A LOGO ESTÁ INSERIDA */
.header__logo {
  width: 27%;
}

/* LOGO */
.logo__img {
  width: 100%;
}

/* Estilo padrão (desktop) */
.header__menu_hamburguer {
  display: none; /* o ícone some no desktop */
}

/* NAVEGAÇÃO */
.header__nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  position: relative;
  color: #000000;
  font-weight: 500;
  font-size: 1.1rem;
}

.nav__link:hover {
  color: #f5524c;
  transition: 0.3s;
}

/* Linha escondida */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2%;
  height: 2px;
  width: 0%;
  background: red; /* cor da linha */
  transition: width 0.3s ease-in-out;
}

/* Quando passa o mouse */
.nav__link:hover::after {
  width: 100%;
}

.menu__close {
  display: none;
}

/* CONTÉUDO PRINCIPAL */
.main__container {
  grid-area: main;
}

/* HOME */
.section__home {
  height: 100vh;
  background: url("../img/bg-home.jpg") no-repeat center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
}

.home__bg__color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Cor de sobreposição */
  z-index: 1;
}

.home__container {
  border-radius: 15px;
  background-color: rgba(228, 228, 228, 0.5);
  position: relative;
  width: 45%;
  height: 15%;
  padding: 2% 5%;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.home__title {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 1%;
  font-family: Arial, Helvetica, sans-serif;
}

.home__subtitle {
  color: #000000;
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-top: 1%;
}

/* ABOUT */
.section__about {
  height: 100vh;
  background-color: #b1b1b1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding: 5% 12%;
  gap: 5%;
}

.img__container {
  border-radius: 15px;
  width: 75%;
}

.about__title {
  font-size: 2.5rem;
  margin-bottom: 2%;
  color: #000000;
}

.about__description {
  font-size: 1.2rem;
  text-align: justify;
  color: #000000;
  line-height: 1.6;
}

/* SERVIÇO */
.section__service {
  height: 130vh;
}

.container__service {
  width: 100%;
  padding: 7.4% 12%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5%;
}

.service__title {
  font-size: 2.5rem;
  color: #000000;
}

.service__subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 2.5%;
}

.service__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  width: 75%;
}

.card__service {
  background-color: #e4e4e4;
  border-radius: 15px;
  padding: 8% 5%;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service__img {
  width: 50%;
  margin-bottom: 2%;
}

.card__title {
  font-size: 1.5rem;
  margin-bottom: 1%;
  color: #000000;
}

.service__description {
  font-size: 1rem;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 4%;
}

.btn__contato {
  padding: 1% 3%;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.btn__contato:hover {
  background-color: #d9433e;
  transition: 0.3s;
}

.btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* FORNECIMENTO */
.section__fornecimento {
  height: 100vh;
  background-color: #b1b1b1;
}

.container__fornecimento {
  width: 100%;
  padding: 7.4% 12%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5%;
}

.fornecimento__title {
  font-size: 2.5rem;
  color: #000000;
}

.fornecimento__subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 2.5%;
}

.fornecimento__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  width: 75%;
}

.card__fornecimento {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background-color: #e4e4e4;
  border-radius: 15px;
  padding: 8% 5%;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.fornecimento__img {
  width: 35%;
  margin-bottom: 2%;
}

.fornecimento__title--item {
  font-size: 1.2rem;
  margin-bottom: 1%;
  color: #000000;
}

.fornecimento__description {
  font-size: 0.9rem;
  color: #000000;
  line-height: 1.4;
}

.fornecimento__btn {
  padding: 2% 3%;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.fornecimento__btn:hover {
  background-color: #d9433e;
  transition: 0.3s;
}

/* SEÇÃO CONTATO */
.section__contato {
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 12%;
}

.contato__container {
  width: 100%;
  border-radius: 15px;
  padding: 5% 7%;
}

.contato__title {
  font-size: 2.5rem;
  color: #000000;
  text-align: center;
}

.contato__description {
  font-size: 1.2rem;
  text-align: center;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 4%;
}

.form__contato {
  display: flex;
  flex-direction: column;
  gap: 3%;
}

.campo__nome,
.campo__assunto,
.campo__destino {
  padding: 1.5%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.nome__input,
.assunto__input,
.area__mensagem,
.select__destino {
  font-weight: bold;
}

.campo__nome input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
}

.campo__assunto input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
}

.campo__mensagem {
  padding: 1.5%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
  min-height: 150px;
}

.campo__mensagem textarea {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.campo__nome input,
.campo__mensagem textarea,
.campo__assunto input {
  margin-bottom: 1%;
}

/* Estilizando o select */
.select__destinatario {
  width: 100%;
  text-align: center;
  max-width: 300px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 16px;
  color: #333;
  appearance: none; /* remove estilo padrão do navegador */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border 0.3s, box-shadow 0.3s;
}

/* Quando focado */
.select__destinatario:focus {
  outline: none;
  border-color: #ff3b3f; /* cor de destaque */
  box-shadow: 0 0 5px rgba(255, 59, 63, 0.5);
}

/* Estilizando as opções (somente cores e fontes, não é possível muita customização) */
.select__destinatario option {
  padding: 10px;
  font-size: 16px;
  color: #333;
  background-color: #ffffff;
}

.btn__contato--form {
  padding: 1.5% 3%;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.btn__contato--form:hover {
  background-color: #d9433e;
  transition: 0.3s;
}

/* FOOTER */
.footer {
  background-color: #e4e4e4;
  padding: 2% 5%;
  grid-area: footer;
  text-align: center;
  font-size: 0.9rem;
  color: #000000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.container__footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2%;
}

.footer__logo {
  width: 60%;
  margin: 0 auto;
}

.footer__links {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 3%;
}

.links__title {
  font-weight: bold;
  margin-bottom: 5%;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2%;
}

.footer__item {
  text-decoration: none;
  color: #000000;
  font-size: 0.9rem;
}

.footer__link {
  text-decoration: none;
  color: #000000;
  font-size: 0.9rem;
}

.footer__link:hover {
  color: #f5524c;
  transition: 0.3s;
}

.footer__contato {
  text-align: left;
}

.contact__title {
  font-weight: bold;
  margin-bottom: 5%;
}

.contact__number {
  margin-bottom: 2%;
}

.contact__proprietario {
  color: #000000;
  text-decoration: none;
  margin-bottom: 2%;
}

.contact__proprietario:hover {
  color: #f5524c;
  transition: 0.3s;
}

.contact__funcionario {
  color: #000000;
  text-decoration: none;
  margin-bottom: 2%;
}

.contact__funcionario:hover {
  color: #f5524c;
  transition: 0.3s;
}

.social__midias {
  display: flex;
  align-items: center;
  gap: 3%;
  margin-top: 5%;
  justify-content: flex-start;
}

.social__list {
  list-style: none;
  display: flex;
  gap: 3%;
}

.social__item {
  font-size: 1.5rem;
}

.social__link {
  color: #000000;
  text-decoration: none;
}

.social__link:hover {
  color: #f5524c;
  transition: 0.3s;
}

.footer__localizar {
  text-align: left;
}

.localizar__title {
  font-weight: bold;
  margin-bottom: 5%;
}

.localizar__text {
  color: #000000;
  text-decoration: none;
  margin-bottom: 2%;
}

.localizar__link {
  color: #000000;
  text-decoration: none;
}

.localizar__link:hover {
  color: #f5524c;
  transition: 0.3s;
}

/* MEDIA QUERIES - MOBILE */
@media (max-width: 600px) {
  /* Header fixo */
  .header {
    position: fixed; /* cria stacking context para overlay e nav */
    z-index: 10;
  }
  .header__logo {
    width: 65%;
  }
  .header__menu_hamburguer {
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
    z-index: 3;
    font-size: 28px;
  }
  .header__menu_hamburguer:hover {
    color: #e60000;
  }
  .header__menu_hamburguer.hide {
    opacity: 0; /* some suavemente */
    pointer-events: none; /* desativa clique */
  }
  .menu__close {
    display: flex;
    text-align: right;
    cursor: pointer;
  }
  .menu__close i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s;
  }
  .menu__close i:hover {
    color: #e60000; /* muda a cor ao passar o mouse */
  }
  /* Overlay */
  .overlay {
    position: fixed; /* cobre toda a tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; /* abaixo do menu */
    display: none; /* só mostrar quando abrir menu */
  }
  /* Menu flutuante */
  .header__nav {
    position: fixed; /* flutua sobre o conteúdo */
    top: 0;
    right: -55%; /* escondido fora da tela inicialmente */
    width: 55%;
    height: 100%;
    background: #fff;
    z-index: 2; /* acima do overlay */
    transition: right 0.2s;
  }
  /* Menu ativo */
  .header__nav.nav--active {
    right: 0;
    display: flex;
    align-items: baseline;
    padding: 7% 10%;
  }
  .nav__list {
    flex-direction: column;
  }
  .nav__item {
    margin-bottom: 7%;
  }
  .nav__link:hover {
    color: red;
  }
  /* remove a linha animada no mobile */
  .nav__link::after {
    display: none;
  }
  /* HOME */
  .home__container {
    width: 82%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home__title {
    font-size: 1.4rem;
  }
  .home__subtitle {
    font-size: 0.9rem;
  }
  /* ABOUT */
  .section__about {
    height: auto; /* altura ajustável ao conteúdo */
    display: flex; /* muda de grid para flex para empilhar os elementos */
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    background-color: #b1b1b1;
  }
  .img__container {
    width: 200px; /* largura fixa da imagem */
    border-radius: 15px;
    margin-bottom: 20px;
  }
  .about__title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000000;
    text-align: center;
  }
  .about__description {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-align: justify;
  }
  /* SERVIÇO */
  .section__service {
    height: auto; /* altura ajustável ao conteúdo */
    padding: 60px 23px;
  }
  .container__service {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .service__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .service__cards {
    display: grid;
    grid-template-columns: 1fr; /* cards empilhados */
    gap: 25px;
    width: 100%;
  }
  .card__service {
    background-color: #e4e4e4;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .service__img {
    width: 120px;
    margin-bottom: 15px;
  }
  .card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .service__description {
    font-size: 15px;
    color: #000000;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .btn__contato {
    padding: 8px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .btn__contato:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  .btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  /* FORNECIMENTO */
  .section__fornecimento {
    height: auto; /* altura se ajusta ao conteúdo */
    padding: 60px 23px;
    background-color: #b1b1b1;
  }
  .container__fornecimento {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .fornecimento__title {
    font-size: 28px;
    text-align: center;
    color: #000000;
  }
  .fornecimento__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .fornecimento__cards {
    display: grid;
    grid-template-columns: 1fr; /* apenas 1 coluna */
    gap: 35px;
    width: 100%;
  }
  .card__fornecimento {
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #e4e4e4;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .fornecimento__img {
    width: 120px;
    margin-bottom: 20px;
  }
  .fornecimento__title--item {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .fornecimento__description {
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 25px;
  }
  .fornecimento__btn {
    padding: 10px 25px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .fornecimento__btn:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* CONTATO */
  .section__contato {
    height: auto; /* altura ajustável ao conteúdo */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  .contato__container {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    padding: 30px 20px;
  }
  .contato__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .contato__description {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .form__contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .campo__nome,
  .campo__assunto,
  .campo__destino,
  .campo__mensagem {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
  }
  .nome__input,
  .assunto__input,
  .area__mensagem,
  .select__destino {
    font-weight: bold;
  }
  .campo__nome input,
  .campo__assunto input,
  .campo__mensagem textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .campo__mensagem {
    min-height: 120px; /* altura fixa da textarea */
    resize: vertical;
  }
  .select__destinatario {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
    color: #333;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
  }
  .select__destinatario:focus {
    outline: none;
    border-color: #ff3b3f;
    box-shadow: 0 0 5px rgba(255, 59, 63, 0.5);
  }
  .btn__contato--form {
    padding: 10px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
  }
  .btn__contato--form:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* FOOTER */
  .footer {
    padding: 40px 20px;
    font-size: 12px;
    text-align: center;
  }
  .container__footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__logo {
    width: 120px;
    margin: 0 auto;
  }
  .footer__links {
    width: 100%;
    text-align: center;
    gap: 10px;
  }
  .links__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .footer__list {
    gap: 8px;
  }
  .footer__link {
    font-size: 13px;
  }
  .footer__contato {
    text-align: center;
  }
  .contact__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .contact__number,
  .contact__proprietario,
  .contact__funcionario {
    font-size: 13px;
  }
  .social__midias {
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
  }
  .social__item {
    font-size: 20px;
  }
  .footer__localizar {
    text-align: center;
  }
  .localizar__title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .localizar__text,
  .localizar__link {
    font-size: 13px;
  }
}
@media (min-width: 601px) and (max-width: 800px) {
  /* Header fixo */
  .header {
    position: fixed; /* cria stacking context para overlay e nav */
    z-index: 10;
  }
  .header__logo {
    width: 55%;
  }
  .header__menu_hamburguer {
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
    z-index: 3;
    font-size: 28px;
  }
  .header__menu_hamburguer:hover {
    color: #e60000;
  }
  .header__menu_hamburguer.hide {
    opacity: 0; /* some suavemente */
    pointer-events: none; /* desativa clique */
  }
  .menu__close {
    display: flex;
    text-align: right;
    cursor: pointer;
  }
  .menu__close i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s;
  }
  .menu__close i:hover {
    color: #e60000; /* muda a cor ao passar o mouse */
  }
  /* Overlay */
  .overlay {
    position: fixed; /* cobre toda a tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; /* abaixo do menu */
    display: none; /* só mostrar quando abrir menu */
  }
  /* Menu flutuante */
  .header__nav {
    position: fixed; /* flutua sobre o conteúdo */
    top: 0;
    right: -55%; /* escondido fora da tela inicialmente */
    width: 55%;
    height: 100%;
    background: #fff;
    z-index: 2; /* acima do overlay */
    transition: right 0.2s;
  }
  /* Menu ativo */
  .header__nav.nav--active {
    right: 0;
    display: flex;
    align-items: baseline;
    padding: 7% 10%;
  }
  .nav__list {
    flex-direction: column;
  }
  .nav__item {
    margin-bottom: 7%;
  }
  .nav__link:hover {
    color: red;
  }
  /* remove a linha animada no mobile */
  .nav__link::after {
    display: none;
  }
  /* HOME */
  .home__container {
    width: 82%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home__title {
    font-size: 1.5rem;
  }
  .home__subtitle {
    font-size: 1.1rem;
  }
  /* ABOUT */
  .section__about {
    height: auto; /* altura ajustável ao conteúdo */
    display: flex; /* muda de grid para flex para empilhar os elementos */
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    background-color: #b1b1b1;
  }
  .img__container {
    width: 400px; /* largura fixa da imagem */
    border-radius: 15px;
    margin-bottom: 20px;
  }
  .about__title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000000;
    text-align: center;
  }
  .about__description {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-align: justify;
  }
  /* SERVIÇO */
  .section__service {
    height: auto; /* altura ajustável ao conteúdo */
    padding: 60px 23px;
  }
  .container__service {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .service__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .service__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* cards empilhados */
    gap: 25px;
    width: 100%;
  }
  .card__service {
    background-color: #e4e4e4;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .service__img {
    width: 120px;
    margin-bottom: 15px;
  }
  .card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .service__description {
    font-size: 15px;
    color: #000000;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .btn__contato {
    padding: 8px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .btn__contato:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  .btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  /* FORNECIMENTO */
  .section__fornecimento {
    height: auto; /* altura se ajusta ao conteúdo */
    padding: 60px 23px;
    background-color: #b1b1b1;
  }
  .container__fornecimento {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .fornecimento__title {
    font-size: 28px;
    text-align: center;
    color: #000000;
  }
  .fornecimento__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .fornecimento__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* apenas 1 coluna */
    gap: 35px;
    width: 100%;
  }
  .card__fornecimento {
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #e4e4e4;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .fornecimento__img {
    width: 120px;
    margin-bottom: 20px;
  }
  .fornecimento__title--item {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .fornecimento__description {
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 25px;
  }
  .fornecimento__btn {
    padding: 10px 25px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .fornecimento__btn:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* CONTATO */
  .section__contato {
    height: auto; /* altura ajustável ao conteúdo */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  .contato__container {
    width: 100%;
    max-width: 510px;
    border-radius: 15px;
    padding: 30px 20px;
  }
  .contato__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .contato__description {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .form__contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .campo__nome,
  .campo__assunto,
  .campo__destino,
  .campo__mensagem {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
  }
  .nome__input,
  .assunto__input,
  .area__mensagem,
  .select__destino {
    font-weight: bold;
  }
  .campo__nome input,
  .campo__assunto input,
  .campo__mensagem textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .campo__mensagem {
    min-height: 120px; /* altura fixa da textarea */
    resize: vertical;
  }
  .select__destinatario {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
    color: #333;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
  }
  .select__destinatario:focus {
    outline: none;
    border-color: #ff3b3f;
    box-shadow: 0 0 5px rgba(255, 59, 63, 0.5);
  }
  .btn__contato--form {
    padding: 10px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
  }
  .btn__contato--form:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* FOOTER */
  .footer {
    padding: 40px 20px;
    font-size: 12px;
    text-align: center;
  }
  .container__footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer__logo {
    width: 180px;
    margin: 0 auto;
  }
  .footer__links {
    width: 100%;
    text-align: left;
    gap: 10px;
    align-items: center;
  }
  .links__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .footer__list {
    gap: 8px;
  }
  .footer__link {
    font-size: 13px;
  }
  .footer__contato {
    text-align: center;
  }
  .contact__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .contact__number,
  .contact__proprietario,
  .contact__funcionario {
    font-size: 13px;
  }
  .social__midias {
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
  }
  .social__item {
    font-size: 20px;
  }
  .footer__localizar {
    text-align: center;
  }
  .localizar__title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .localizar__text,
  .localizar__link {
    font-size: 13px;
  }
}
@media (min-width: 801px) and (max-width: 1024px) {
  /* Header fixo */
  .header {
    position: fixed; /* cria stacking context para overlay e nav */
    z-index: 10;
  }
  .header__logo {
    width: 45%;
  }
  .header__menu_hamburguer {
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
    z-index: 3;
    font-size: 28px;
  }
  .header__menu_hamburguer:hover {
    color: #e60000;
  }
  .header__menu_hamburguer.hide {
    opacity: 0; /* some suavemente */
    pointer-events: none; /* desativa clique */
  }
  .menu__close {
    display: flex;
    text-align: right;
    cursor: pointer;
  }
  .menu__close i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s;
  }
  .menu__close i:hover {
    color: #e60000; /* muda a cor ao passar o mouse */
  }
  /* Overlay */
  .overlay {
    position: fixed; /* cobre toda a tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; /* abaixo do menu */
    display: none; /* só mostrar quando abrir menu */
  }
  /* Menu flutuante */
  .header__nav {
    position: fixed; /* flutua sobre o conteúdo */
    top: 0;
    right: -55%; /* escondido fora da tela inicialmente */
    width: 55%;
    height: 100%;
    background: #fff;
    z-index: 2; /* acima do overlay */
    transition: right 0.2s;
  }
  /* Menu ativo */
  .header__nav.nav--active {
    right: 0;
    display: flex;
    align-items: baseline;
    padding: 7% 10%;
  }
  .nav__list {
    flex-direction: column;
  }
  .nav__item {
    margin-bottom: 7%;
  }
  .nav__link:hover {
    color: red;
  }
  /* remove a linha animada no mobile */
  .nav__link::after {
    display: none;
  }
  /* HOME */
  .home__container {
    width: 82%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home__title {
    font-size: 1.5rem;
  }
  .home__subtitle {
    font-size: 1.1rem;
  }
  /* ABOUT */
  .section__about {
    height: auto; /* altura ajustável ao conteúdo */
    display: flex; /* muda de grid para flex para empilhar os elementos */
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    background-color: #b1b1b1;
  }
  .img__container {
    width: 400px; /* largura fixa da imagem */
    border-radius: 15px;
    margin-bottom: 20px;
  }
  .about__title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000000;
    text-align: center;
  }
  .about__description {
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-align: justify;
  }
  /* SERVIÇO */
  .section__service {
    height: auto; /* altura ajustável ao conteúdo */
    padding: 60px 23px;
  }
  .container__service {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .service__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .service__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* cards empilhados */
    gap: 25px;
    width: 100%;
    align-items: stretch;
  }
  .card__service {
    background-color: #e4e4e4;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .service__img {
    width: 120px;
    margin-bottom: 15px;
  }
  .card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .service__description {
    font-size: 15px;
    color: #000000;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .btn__contato {
    padding: 8px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .btn__contato:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  .btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  /* FORNECIMENTO */
  .section__fornecimento {
    height: auto; /* altura se ajusta ao conteúdo */
    padding: 60px 23px;
    background-color: #b1b1b1;
  }
  .container__fornecimento {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .fornecimento__title {
    font-size: 28px;
    text-align: center;
    color: #000000;
  }
  .fornecimento__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .fornecimento__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* apenas 1 coluna */
    gap: 35px;
    width: 100%;
  }
  .card__fornecimento {
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #e4e4e4;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .fornecimento__img {
    width: 120px;
    margin-bottom: 20px;
  }
  .fornecimento__title--item {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .fornecimento__description {
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 25px;
  }
  .fornecimento__btn {
    padding: 10px 25px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .fornecimento__btn:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* CONTATO */
  .section__contato {
    height: auto; /* altura ajustável ao conteúdo */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  .contato__container {
    width: 100%;
    max-width: 610px;
    border-radius: 15px;
    padding: 30px 20px;
  }
  .contato__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .contato__description {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .form__contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .campo__nome,
  .campo__assunto,
  .campo__destino,
  .campo__mensagem {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
  }
  .nome__input,
  .assunto__input,
  .area__mensagem,
  .select__destino {
    font-weight: bold;
  }
  .campo__nome input,
  .campo__assunto input,
  .campo__mensagem textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .campo__mensagem {
    min-height: 120px; /* altura fixa da textarea */
    resize: vertical;
  }
  .select__destinatario {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    color: #333;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
  }
  .select__destinatario:focus {
    outline: none;
    border-color: #ff3b3f;
    box-shadow: 0 0 5px rgba(255, 59, 63, 0.5);
  }
  .btn__contato--form {
    padding: 10px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
  }
  .btn__contato--form:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* FOOTER */
  .footer {
    padding: 40px 20px;
    font-size: 12px;
    text-align: center;
  }
  .container__footer {
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
    align-items: stretch;
  }
  .footer__logo {
    width: 180px;
    margin: 0 auto;
  }
  .footer__links {
    width: 100%;
    text-align: left;
    gap: 10px;
    align-items: center;
  }
  .links__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .footer__list {
    gap: 8px;
  }
  .footer__link {
    font-size: 13px;
  }
  .footer__contato {
    text-align: center;
  }
  .contact__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .contact__number,
  .contact__proprietario,
  .contact__funcionario {
    font-size: 13px;
  }
  .social__midias {
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
  }
  .social__item {
    font-size: 20px;
  }
  .footer__localizar {
    text-align: center;
  }
  .localizar__title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .localizar__text,
  .localizar__link {
    font-size: 13px;
  }
}
/* DESKTOP PEQUENO */
@media (min-width: 1025px) and (max-width: 1180px) {
  .header__logo {
    width: 40%; /* aumenta ligeiramente o logo para compensar o espaço */
  }
  .home__container {
    width: 70%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .home__title {
    font-size: 28px;
  }
  .home__subtitle {
    font-size: 18px;
  }
  .section__about {
    height: auto;
    display: flex;
    flex-direction: column; /* empilha imagem e texto */
    align-items: center;
    text-align: center;
    gap: 40px; /* espaço entre imagem e texto */
    padding: 50px 80px; /* reduz o padding lateral */
  }
  .img__container {
    width: 350px; /* imagem mais proporcional */
    margin-bottom: 0;
  }
  .about__title {
    font-size: 28px;
  }
  .about__description {
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
  }
  /* SERVIÇO */
  .section__service {
    height: auto; /* altura ajustável ao conteúdo */
    padding: 60px 23px;
  }
  .container__service {
    width: 100%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .service__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .service__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* cards empilhados */
    gap: 25px;
    width: 100%;
    align-items: stretch;
  }
  .card__service {
    background-color: #e4e4e4;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .service__img {
    width: 120px;
    margin-bottom: 15px;
  }
  .card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .service__description {
    font-size: 15px;
    color: #000000;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .btn__contato {
    padding: 8px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .btn__contato:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  .btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  /* FORNECIMENTO */
  .section__fornecimento {
    height: auto; /* altura se ajusta ao conteúdo */
    padding: 60px 50px;
    background-color: #b1b1b1;
  }
  .container__fornecimento {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .fornecimento__title {
    font-size: 28px;
    text-align: center;
    color: #000000;
  }
  .fornecimento__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .fornecimento__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* apenas 1 coluna */
    gap: 35px;
    width: 100%;
  }
  .card__fornecimento {
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #e4e4e4;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .fornecimento__img {
    width: 120px;
    margin-bottom: 20px;
  }
  .fornecimento__title--item {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .fornecimento__description {
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 25px;
  }
  .fornecimento__btn {
    padding: 10px 25px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .fornecimento__btn:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* CONTATO */
  .section__contato {
    height: auto; /* altura ajustável ao conteúdo */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  .contato__container {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    padding: 30px 20px;
  }
  .contato__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .contato__description {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .form__contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .campo__nome,
  .campo__assunto,
  .campo__destino,
  .campo__mensagem {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
  }
  .nome__input,
  .assunto__input,
  .area__mensagem,
  .select__destino {
    font-weight: bold;
  }
  .campo__nome input,
  .campo__assunto input,
  .campo__mensagem textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .campo__mensagem {
    min-height: 120px; /* altura fixa da textarea */
    resize: vertical;
  }
  .select__destinatario {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    color: #333;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
  }
  .select__destinatario:focus {
    outline: none;
    border-color: #ff3b3f;
    box-shadow: 0 0 5px rgba(255, 59, 63, 0.5);
  }
  .btn__contato--form {
    padding: 10px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
  }
  .btn__contato--form:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* FOOTER */
  .footer {
    padding: 40px 20px;
    font-size: 12px;
    text-align: center;
  }
  .container__footer {
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 23px;
    align-items: center;
  }
  .footer__logo {
    width: 180px;
    margin: 0 auto;
  }
  .footer__links {
    width: 100%;
    text-align: left;
    gap: 10px;
    align-items: center;
  }
  .links__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .footer__list {
    gap: 8px;
  }
  .footer__link {
    font-size: 13px;
  }
  .footer__contato {
    text-align: center;
  }
  .contact__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .contact__number,
  .contact__proprietario,
  .contact__funcionario {
    font-size: 13px;
  }
  .social__midias {
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
  }
  .social__item {
    font-size: 20px;
  }
  .footer__localizar {
    text-align: center;
  }
  .localizar__title {
    margin-top: -38px;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .localizar__text,
  .localizar__link {
    font-size: 13px;
  }
}
/* DESKTOP PADRÃO */
@media (min-width: 1181px) and (max-width: 1440px) {
  /* Header fixo */
  .header {
    position: fixed; /* cria stacking context para overlay e nav */
    z-index: 10;
  }
  .header__logo {
    width: 35%;
  }
  /* HOME */
  .home__container {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home__title {
    font-size: 28px;
  }
  .home__subtitle {
    font-size: 18px;
  }
  /* ABOUT */
  .img__container {
    width: 420px;
    flex-shrink: 0; /* impede a imagem de encolher demais */
  }
  .about__title {
    font-size: 28px;
  }
  .about__description {
    font-size: 18px;
  }
  /* SERVIÇO */
  .section__service {
    height: auto; /* altura ajustável ao conteúdo */
    padding: 60px 60px;
  }
  .container__service {
    width: 100%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .service__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .service__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* cards empilhados */
    gap: 25px;
    width: 100%;
    align-items: stretch;
  }
  .card__service {
    background-color: #e4e4e4;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .service__img {
    width: 120px;
    margin-bottom: 15px;
  }
  .card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .service__description {
    font-size: 15px;
    color: #000000;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .btn__contato {
    padding: 8px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .btn__contato:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  .btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  /* FORNECIMENTO */
  .section__fornecimento {
    height: auto; /* altura se ajusta ao conteúdo */
    padding: 60px 60px;
    background-color: #b1b1b1;
  }
  .container__fornecimento {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .fornecimento__title {
    font-size: 28px;
    text-align: center;
    color: #000000;
  }
  .fornecimento__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .fornecimento__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* apenas 1 coluna */
    gap: 35px;
    width: 100%;
  }
  .card__fornecimento {
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #e4e4e4;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .fornecimento__img {
    width: 120px;
    margin-bottom: 20px;
  }
  .fornecimento__title--item {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .fornecimento__description {
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 25px;
  }
  .fornecimento__btn {
    padding: 10px 25px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .fornecimento__btn:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* CONTATO */
  .section__contato {
    height: auto; /* altura ajustável ao conteúdo */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  .contato__container {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    padding: 30px 20px;
  }
  .contato__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .contato__description {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .form__contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .campo__nome,
  .campo__assunto,
  .campo__destino,
  .campo__mensagem {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
  }
  .nome__input,
  .assunto__input,
  .area__mensagem,
  .select__destino {
    font-weight: bold;
  }
  .campo__nome input,
  .campo__assunto input,
  .campo__mensagem textarea {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .campo__mensagem {
    min-height: 120px; /* altura fixa da textarea */
    resize: vertical;
  }
  .select__destinatario {
    width: 100%;
    max-width: 300px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    color: #333;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
  }
  .select__destinatario:focus {
    outline: none;
    border-color: #ff3b3f;
    box-shadow: 0 0 5px rgba(255, 59, 63, 0.5);
  }
  .btn__contato--form {
    padding: 10px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
  }
  .btn__contato--form:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* FOOTER */
  .footer {
    padding: 40px 20px;
    font-size: 12px;
    text-align: center;
  }
  .container__footer {
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 23px;
    align-items: center;
  }
  .footer__logo {
    width: 180px;
    margin: 0 auto;
  }
  .footer__links {
    width: 100%;
    text-align: left;
    gap: 10px;
    align-items: center;
  }
  .links__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .footer__list {
    gap: 8px;
  }
  .footer__link {
    font-size: 13px;
  }
  .footer__contato {
    text-align: center;
  }
  .contact__title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .contact__number,
  .contact__proprietario,
  .contact__funcionario {
    font-size: 13px;
  }
  .social__midias {
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
  }
  .social__item {
    font-size: 20px;
  }
  .footer__localizar {
    text-align: center;
  }
  .localizar__title {
    margin-top: -38px;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .localizar__text,
  .localizar__link {
    font-size: 13px;
  }
}
/* DESKTOP GRANDE */
@media (min-width: 1441px) and (max-width: 1865px) {
  /* Header fixo */
  .header {
    position: fixed; /* cria stacking context para overlay e nav */
    z-index: 10;
  }
  .header__logo {
    width: 30%;
  }
  /* HOME */
  .home__container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home__title {
    font-size: 28px;
  }
  .home__subtitle {
    font-size: 18px;
  }
  /* ABOUT */
  .about__title {
    font-size: 28px;
  }
  .about__description {
    font-size: 18px;
  }
  /* SERVIÇO */
  .section__service {
    height: auto; /* altura ajustável ao conteúdo */
    padding: 60px 60px;
  }
  .container__service {
    width: 100%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service__title {
    font-size: 28px;
    color: #000000;
    text-align: center;
  }
  .service__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .card__service {
    background-color: #e4e4e4;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .service__img {
    width: 120px;
    margin-bottom: 15px;
  }
  .card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .service__description {
    font-size: 15px;
    color: #000000;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .btn__contato {
    padding: 8px 22px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .btn__contato:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  .btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  /* FORNECIMENTO */
  .section__fornecimento {
    height: auto; /* altura se ajusta ao conteúdo */
    padding: 60px 60px;
    background-color: #b1b1b1;
  }
  .container__fornecimento {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .fornecimento__title {
    font-size: 28px;
    text-align: center;
    color: #000000;
  }
  .fornecimento__subtitle {
    font-size: 16px;
    text-align: center;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .card__fornecimento {
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #e4e4e4;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .fornecimento__img {
    width: 120px;
    margin-bottom: 20px;
  }
  .fornecimento__title--item {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
  }
  .fornecimento__description {
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 25px;
  }
  .fornecimento__btn {
    padding: 10px 25px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
  }
  .fornecimento__btn:hover {
    background-color: #d9433e;
    transition: 0.3s;
  }
  /* FOOTER */
  .localizar__title {
    margin-top: -34px;
    font-size: 15px;
    margin-bottom: 10px;
  }
}

/*# sourceMappingURL=style.css.map */
