  @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
  body {
      margin: 0;
      padding: 0;
      background-color: #adadad;
      font-family: Lora !important;
      background-color: #adadad;
  }
  /* Ajuste para telas menores (com rolagem) */
  
  @media (max-width: 400px) {
      body {
          overflow-x: auto;
          /* Permite rolagem horizontal */
      }
  }
  
  a {
      text-decoration: none;
      color: #000000;
  }
  
  html {
      scroll-behavior: smooth;
  }
  /*Menu*/
  
  .menu {
      width: 100%;
      height: 88px;
      background-color: #FFFFFF;
  }
  /*Imagem Logo Menu*/
  
  .img-logo {
      height: 95px;
      margin-top: 15px;
      text-decoration: none;
  }
  /*Menu*/
  
  nav {
      box-shadow: -1rem 0 3rem #000;
      position: fixed;
      z-index: 99;
      width: 100%;
      background: #ffffff;
  }
  
  nav .wrapper {
      position: relative;
      max-width: 5200px;
      padding: 0px 30px;
      height: 82px;
      line-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  
  .wrapper .logo a {
      color: #000000;
      font-size: 30px;
      font-weight: 600;
      text-decoration: none;
  }
  
  .wrapper .nav-links {
      display: inline-flex;
  }
  
  .nav-links li {
      list-style: none;
  }
  
  .nav-links li a {
      margin-left: 10px;
      color: #000000;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      padding: 9px 15px;
      border-radius: 5px;
      transition: all 0.3s ease;
  }
  
  .nav-links li a:hover {
      background: #dfdfdf;
  }
  
  .nav-links .mobile-item {
      display: none;
  }
  
  .nav-links .drop-menu {
      position: absolute;
      background: #ffffff;
      width: 180px;
      line-height: 45px;
      top: 85px;
      opacity: 0;
      visibility: hidden;
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .nav-links li:hover .drop-menu,
  .nav-links li:hover .mega-box {
      transition: all 0.3s ease;
      top: 70px;
      opacity: 1;
      visibility: visible;
  }
  
  .drop-menu li a {
      width: 100%;
      display: block;
      padding: 0 0 0 15px;
      font-weight: 400;
      border-radius: 0px;
      background-color: transparent;
  }
  
  .mega-box {
      position: absolute;
      left: 0;
      width: 100%;
      padding: 0 30px;
      top: 85px;
      opacity: 0;
      visibility: hidden;
  }
  
  .mega-box .content {
      background: #ffffff;
      padding: 25px 20px;
      display: flex;
      width: 100%;
      justify-content: space-between;
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .mega-box .content .row {
      width: calc(25% - 30px);
      line-height: 45px;
  }
  
  .content .row img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .content .row header {
      color: #000000;
      font-size: 20px;
      font-weight: 500;
  }
  
  .content .row .mega-links {
      margin-left: -40px;
      border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
  
  .row .mega-links li {
      padding: 0 20px;
  }
  
  .row .mega-links li a {
      padding: 0px;
      padding: 0 20px;
      color: #000000;
      font-size: 17px;
      display: block;
  }
  
  .row .mega-links li a:hover {
      color: #000000;
  }
  
  .wrapper .btn {
      color: #000;
      font-size: 20px;
      cursor: pointer;
      display: none;
  }
  
  .wrapper .btn.close-btn {
      position: absolute;
      right: 30px;
      top: 10px;
  }
  
  @media screen and (max-width: 1500px) {
      .wrapper .btn {
          display: block;
      }
      .wrapper .nav-links {
          position: fixed;
          height: 100vh;
          width: 100%;
          max-width: 350px;
          top: 0;
          left: -100%;
          background: #ffffff;
          display: block;
          padding: 50px 10px;
          line-height: 50px;
          overflow-y: auto;
          box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
          transition: all 0.3s ease;
      }
      /* custom scroll bar */
       ::-webkit-scrollbar {
          width: 10px;
      }
       ::-webkit-scrollbar-track {
          background: #ffffff;
      }
       ::-webkit-scrollbar-thumb {
          background: #ffffff;
      }
      #menu-btn:checked~.nav-links {
          left: 0%;
      }
      #menu-btn:checked~.btn.menu-btn {
          display: none;
      }
      #close-btn:checked~.btn.menu-btn {
          display: block;
      }
      .nav-links li {
          margin: 15px 10px;
      }
      .nav-links li a {
          padding: 0 20px;
          display: block;
          font-size: 20px;
      }
      .nav-links .drop-menu {
          position: static;
          opacity: 1;
          top: 65px;
          visibility: visible;
          padding-left: 20px;
          width: 100%;
          max-height: 0px;
          overflow: hidden;
          box-shadow: none;
          transition: all 0.3s ease;
      }
      #showDrop:checked~.drop-menu,
      #showMega:checked~.mega-box {
          max-height: 100%;
      }
      .nav-links .desktop-item {
          display: none;
      }
      .nav-links .mobile-item {
          display: block;
          color: #000;
          font-size: 20px;
          font-weight: 500;
          padding-left: 20px;
          cursor: pointer;
          border-radius: 5px;
          transition: all 0.3s ease;
          margin-left: 10px;
      }
      .nav-links .mobile-item:hover {
          background: #dfdfdf;
      }
      .drop-menu li {
          margin: 0;
      }
      .drop-menu li a {
          border-radius: 5px;
          font-size: 18px;
      }
      .mega-box {
          position: static;
          top: 65px;
          opacity: 1;
          visibility: visible;
          padding: 0 20px;
          max-height: 0px;
          overflow: hidden;
          transition: all 0.3s ease;
      }
      .mega-box .content {
          box-shadow: none;
          flex-direction: column;
          padding: 20px 20px 0 20px;
      }
      .mega-box .content .row {
          width: 100%;
          margin-bottom: 15px;
          border-top: 1px solid rgba(255, 255, 255, 0.08);
      }
      .mega-box .content .row:nth-child(1),
      .mega-box .content .row:nth-child(2) {
          border-top: 0px;
      }
      .content .row .mega-links {
          border-left: 0px;
          padding-left: 15px;
      }
      .row .mega-links li {
          margin: 0;
      }
      .content .row header {
          font-size: 19px;
      }
  }
  
  nav input {
      display: none;
  }
  
  .carrinho-futuante {
      margin-left: 5px;
      margin-top: 14px;
      margin-top: 14px;
      color: #000;
      font-size: 20px;
      width: 50px;
      height: 41px;
      background-color: #ffffff;
      border-radius: 8px;
      cursor: pointer;
  }
  
  .carrinho-futuante:hover {
      background-color: #dfdfdf;
  }
  
  .icon-car {
      vertical-align: 15px;
      margin-top: -99px;
      margin-left: 14px;
  }
  
  .indicador {
      position: absolute;
      background-color: red;
      border-radius: 50%;
      width: 12px;
      height: 20px;
      font-size: 14px;
      padding-left: 4px;
      padding-right: 7px;
      line-height: 1.4;
      margin-top: -4px;
      margin-left: -7px;
  }
  
  .user {
      margin-left: 15px;
      margin-top: 14px;
      margin-top: 14px;
      color: #000;
      font-size: 20px;
      width: 50px;
      height: 41px;
      background-color: #ffffff;
      border-radius: 8px;
      cursor: pointer;
  }
  
  .user:hover {
      background-color: #dfdfdf;
  }
  
  .icon-user {
      vertical-align: 15px;
      margin-top: -199px;
      margin-left: 16px;
  }
  
  .pesquisa-container {
      top: -9px;
      position: relative;
      display: flex;
      align-items: center;
      margin-right: -5px;
      z-index: 9999;
      margin-left: 22px;
  }
  
  .botao-pesquisa {
      background-color: #fff;
      color: #000;
      padding: 10px 12px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
      z-index: 2;
  }
  
  .botao-pesquisa:hover {
      background-color: #dfdfdf;
  }
  
  .botao-pesquisa i {
      font-size: 18px;
      display: inline-block;
  }
  
  .campo-pesquisa {
      position: absolute;
      left: 0;
      opacity: 0;
      transform: translateX(10px);
      width: 0;
      overflow: visible;
      transition: all 0.4s ease;
      z-index: 1;
      display: block;
  }
  
  .pesquisa-container:hover .campo-pesquisa {
      opacity: 1;
      transform: translateX(-320px);
      width: 320px;
      display: block;
  }
  
  .campo-pesquisa input {
      padding: 10px 15px;
      width: 100%;
      border: 2px solid #000;
      border-radius: 6px;
      font-size: 16px;
      outline: none;
      background: white;
      box-sizing: border-box;
      display: block;
  }
  /* RESULTADO DE PESQUISA */
  
  #resultado-pesquisa {
      position: absolute;
      top: 100%;
      /* Logo abaixo do input */
      left: 0;
      width: 100%;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 0 0 6px 6px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      max-height: 320px;
      overflow-y: auto;
      font-family: Arial, sans-serif;
      font-size: 14px;
      display: none;
      /* mostra apenas quando há resultados */
      z-index: 3;
  }
  /* Grupo de resultados */
  
  #resultado-pesquisa h4 {
      margin: 10px 15px 5px;
      font-weight: 600;
      color: #1a66b8ff;
      border-bottom: 1px solid #eee;
      padding-bottom: 3px;
      display: block;
  }
  /* Lista de resultados */
  
  #resultado-pesquisa ul {
      list-style: none;
      padding-left: 20px;
      margin: 5px 0 10px;
      display: block;
  }
  /* Itens da lista */
  
  #resultado-pesquisa li {
      margin-bottom: 8px;
      display: list-item;
  }
  /* Links dentro dos resultados */
  
  #resultado-pesquisa a {
      text-decoration: none;
      color: #333;
      transition: color 0.2s ease;
      display: inline-block;
  }
  
  #resultado-pesquisa a:hover {
      color: #0056b3;
      text-decoration: underline;
  }
  /* Mensagem "Nenhum resultado encontrado" */
  
  #resultado-pesquisa div {
      padding: 15px;
      color: #777;
      font-style: italic;
      display: block;
      line-height: normal;
  }
  
  @media (max-width: 1500px) {
      .pesquisa-container {
          display: block;
          margin: 10px auto;
          width: 100%;
          max-width: 320px;
          position: relative;
      }
      .botao-pesquisa {
          display: none;
      }
      .campo-pesquisa {
          position: static;
          opacity: 1 !important;
          transform: none !important;
          width: 100% !important;
          display: block !important;
      }
      .campo-pesquisa input {
          width: 100%;
      }
      #resultado-pesquisa {
          position: static;
          width: 100%;
          margin-top: 10px;
          display: none;
          /* ainda será controlado via JS */
      }
  }
  /*Conteudo*/
  
  .conteudo {
      padding-left: 0px;
      padding-right: 0px;
  }
  /*Produtos*/
  
  .produtos {
      border-radius: 8px;
      margin-right: 0px;
      margin-left: 35%;
      justify-content: center;
      align-items: center;
      margin-top: -657px;
      width: 60%;
      padding-bottom: 50px;
      background-color: #FFFFFF;
  }
  
  @media screen and (max-width: 1400px) {
      .produtos {
          margin-top: 50px;
          border-radius: 8px;
          margin-right: 0px;
          margin-left: 5%;
          justify-content: center;
          align-items: center;
          width: 90%;
          padding-bottom: 50px;
          background-color: #FFFFFF;
      }
  }
  /*Informações Abertura*/
  
  .subtitulo1 {
    padding: 30px;
     font-size: 18px;
     color: #000;
  }
  
  /*Imagem Abertura*/
  
.bloco {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
}

.img-produto {
    height: 300px;
    min-width: 400px;
    max-width: 450px;
    border-radius: 8px;
    padding-right: 30px;
    padding-top: 30px;
}

.texto {
    flex: 1; /* Texto ocupa o restante do espaço */
}
  @media screen and (max-width: 1200px) {
      .img-produto {
          display: none;
      }
      .subtitulo1{
          padding: 30px;
      }
  }
  /*Botão de Login*/
  
  .login {
      margin-left: 700px;
      text-decoration: none;
      width: 116px;
      height: 47px;
      font-family: Lora;
      font-size: 17px;
      color: #000000;
      background-color: #ffffff;
      border-radius: 0;
      border: 0px;
      padding: 0px;
      cursor: pointer;
  }
  /*Whattsapp*/
  
  .whats {
      box-shadow: 0rem 0 3rem #000;
      position: fixed;
      display: flex;
      right: 20px;
      bottom: 20px;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 6px;
      z-index: 799;
  }
  /*Titulo Contatos*/
  
  .titulo3 {
      margin-top: 20px;
      margin-left: 60px;
      font-family: Lora;
      font-size: 28px;
  }
  /*Sobre Nós*/
  
  .sobrenos {
      border-radius: 8px;
      margin-left: 5%;
      width: 90%;
      margin-top: 10px;
      background-color: #ffffff;
  }
  /*Titulo Sobre Nós e Descrisão dos  Contatos*/
  
  .subtitulo3 {
      margin-top: 10px;
      margin-left: 60px;
      font-family: Lora;
      font-size: 15px;
  }
  /*Descrisão de Sobre Nós*/
  
  .subtitulo4 {
      margin-top: 0px;
      margin-right: 60px;
      margin-left: 60px;
      font-family: Lora;
      font-size: 15px;
  }
  
  .linha {
      height: 1px;
      background-color: black;
      margin-left: 30px;
      margin-right: 30px;
  }
  /*Titulos Produtos*/
  
  .titulo5 {
      width: 100%;
      margin-left: 50px;
      margin-top: 10px;
      font-family: Lora;
      font-size: 28px;
  }
  /*Imagens Produtos*/
  
  .img-hor {
      border-radius: 8px;
      width: 280px;
      height: 280px;
      margin-top: 10px;
      margin-left: 10px;
      margin-right: 10px;
  }
  /*Informações Sobre os Produtos*/
  
  .subtitulo5 {
      margin-left: 11px;
      width: 100%;
      color: #ffffff;
      font-family: Lora;
      font-size: 20px;
  }
  /*Abertura*/
  
  .abertura {
      padding-left: 10px;
      margin-bottom: 40px;
      margin-top: 40px;
      width: 90%;
      margin-left: 5%;
      border-radius: 8px;
      background-color: #FFFFFF;
  }
  /*Carocel Produtos*/
  
  #wrapper {
      width: 100%;
      max-width: 1760px;
      position: relative;
  }
  
  #carousel {
      margin-left: 10px;
      margin-right: 0px;
      overflow: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
  }
  
  #carousel::-webkit-scrollbar {
      height: 0;
  }
  
  #prev,
  #next {
      display: flex;
      justify-content: center;
      align-content: center;
      background: white;
      border: none;
      padding: 8px;
      border-radius: 50%;
      outline: 0;
      cursor: pointer;
      position: absolute;
  }
  
  #prev {
      top: 50%;
      left: 0;
      transform: translate(50%, -50%);
      display: none;
  }
  
  #next {
      top: 50%;
      right: 0;
      transform: translate(-50%, -50%);
  }
  
  #content {
      display: grid;
      grid-gap: 16px;
      grid-auto-flow: column;
      margin: auto;
      box-sizing: border-box;
  }
  
  #wrapperPromocoes {
      width: 100%;
      max-width: 1760px;
      position: relative;
  }
  
  #contentPromocoes {
      display: flex;
      overflow: hidden;
      scroll-behavior: smooth;
      /* Compatível com navegação via mouse */
  }
  
  #prevPromocoes,
  #nextPromocoes {
      display: flex;
      justify-content: center;
      align-content: center;
      background: white;
      border: none;
      padding: 8px;
      border-radius: 50%;
      outline: 0;
      cursor: pointer;
      position: absolute;
  }
  
  #prevPromocoes {
      top: 50%;
      left: 0;
      transform: translate(50%, -50%);
  }
  
  #nextPromocoes {
      top: 50%;
      right: 0;
      transform: translate(-50%, -50%);
  }
  
  .item {
      border-radius: 8px;
      display: inline-block;
      margin-left: 20px;
      margin-top: 20px;
      width: 300px;
      padding-bottom: 20px;
      background-color: #adadad;
      cursor: pointer;
      transition: transform 200ms ease-in-out;
  }
  
  .item:hover {
      transform: scale(1.01);
  }
  
  .preco {
      font-size: 30px;
      margin-top: -10px;
      padding-left: 10px;
      color: #ffffff;
      font-family: Poetsen One;
  }
  
  .item1 {
      border-radius: 8px;
      display: inline-block;
      margin-left: 90px;
      margin-top: -20px;
      width: 300px;
      padding-bottom: 20px;
      background-color: #adadad;
      cursor: pointer;
      transition: transform 200ms ease-in-out;
  }
  
  .item1:hover {
      transform: scale(1.01);
  }
  
  .desconto {
      font-size: 30px;
      margin-top: -30px;
      padding-left: 230px;
      width: 110%;
      color: red;
      font-family: Poetsen One;
      transform: rotate(10deg);
  }
  
  .preco1 {
      font-size: 30px;
      margin-top: -10px;
      padding-left: 10px;
      color: red;
      font-weight: 100;
      font-family: Poetsen One;
  }
  
  .btn-carrinho {
      margin-left: 2.5%;
      width: 95%;
      height: 40px;
      border-radius: 8px;
      background-color: #4caf50;
      border: none;
      cursor: pointer;
      transition: 1s;
      color: #ffffff;
  }
  
  .btn-carrinho:hover {
      background-color: #07890c;
      color: #ffffff;
  }
  /*Informação dos Produtos*/
  
  .container1 {
      z-index: 1px;
      margin-left: 5%;
      position: absolute;
      width: 800px;
      /* top: 1963px; */
      left: calc(50% - 300px);
      display: flex;
      justify-content: center;
      text-align: center;
  }
  
  .card {
      display: flex;
      height: 450px;
      width: 80%;
      background-color: #dfdfdf;
      border-radius: 10px;
      box-shadow: -1rem 0 3rem #000;
      margin-left: -373px;
      transition: 0.6s ease-out;
      position: relative;
      left: 0px;
  }
  
  @media screen and (max-width: 1663px) {
      .card {
          margin-top: 0px;
          display: flex;
          height: 450px;
          width: 80%;
          background-color: #dfdfdf;
          border-radius: 10px;
          box-shadow: -1rem 0 3rem #000;
          margin-left: -373px;
          transition: 0.6s ease-out;
          position: relative;
          left: 0px;
      }
  }
  
  @media screen and (max-width: 1563px) {
      .card {
          margin-top: 40px;
          display: flex;
          height: 450px;
          width: 80%;
          background-color: #dfdfdf;
          border-radius: 10px;
          box-shadow: -1rem 0 3rem #000;
          margin-left: -373px;
          transition: 0.6s ease-out;
          position: relative;
          left: 0px;
      }
  }
  
  @media screen and (max-width: 1518px) {
      .card {
          margin-top: 60px;
          display: flex;
          height: 450px;
          width: 80%;
          background-color: #dfdfdf;
          border-radius: 10px;
          box-shadow: -1rem 0 3rem #000;
          margin-left: -373px;
          transition: 0.6s ease-out;
          position: relative;
          left: 0px;
      }
  }
  
  @media screen and (max-width: 1500px) {
      .card {
          margin-top: -140px;
          display: flex;
          height: 450px;
          width: 80%;
          background-color: #dfdfdf;
          border-radius: 10px;
          box-shadow: -1rem 0 3rem #000;
          margin-left: -373px;
          transition: 0.6s ease-out;
          position: relative;
          left: 0px;
      }
  }
  
  @media screen and (max-width: 1474px) {
      .card {
          margin-top: 40px;
          display: flex;
          height: 450px;
          width: 80%;
          background-color: #dfdfdf;
          border-radius: 10px;
          box-shadow: -1rem 0 3rem #000;
          margin-left: -373px;
          transition: 0.6s ease-out;
          position: relative;
          left: 0px;
      }
  }
  
  .card:not(:first-child) {
      margin-left: -50px;
  }
  
  .card:hover {
      margin-right: 50px;
      transform: translateY(-20px);
      transition: 0.5s ease-out;
  }
  
  .card:hover~.card {
      position: relative;
      left: 50px;
      transition: 0.5s ease-out;
  }
  
  .title {
      width: 160px;
      color: #000000;
      font-weight: 300;
      position: absolute;
      left: 10px;
      top: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .bar {
      position: absolute;
      top: 110px;
      left: 20px;
      height: 5px;
      width: 120px;
  }
  
  .emptybar {
      background-color: #a8a8a8;
      ;
      width: 110%;
      height: 100%;
  }
  
  .filledbar {
      position: absolute;
      top: 0px;
      z-index: 3;
      width: 0px;
      height: 100%;
      background: linear-gradient(90deg, rgb(53 94 55) 0%, rgb(59 209 66) 65%, rgb(67 137 70) 100%);
      transition: 0.6s ease-out;
  }
  
  .card:hover .filledbar {
      width: 150px;
      transition: 0.5s ease-out;
  }
  
  .circle {
      position: absolute;
      left: calc(50% - 60px);
      margin-right: 5px;
  }
  
  .stroke {
      stroke: white;
      stroke-dasharray: 360;
      stroke-dashoffset: 360;
      transition: 0.6s ease-out;
  }
  
  svg {
      fill: #17141d;
      stroke-width: 5px;
  }
  
  .card:hover .stroke {
      stroke-dashoffset: 100;
      transition: 0.6s ease-out;
  }
  
  .informacao {
      margin-top: 120px;
      left: calc(50% - 60px);
      margin-right: 5px;
      width: 110px;
      color: #000000;
      font-weight: 300;
      position: absolute;
      left: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .infor {
      box-shadow: 0rem 0 3rem #000;
      border-radius: 8px;
      margin-left: 5%;
      margin-top: 30px;
      width: 90%;
      height: 530px;
      background-color: #ffffff;
      display: inline-flex;
      justify-content: center;
      flex-wrap: nowrap;
      align-items: center;
  }
  
  @media screen and (max-width: 1300px) {
      .infor {
          box-shadow: 0rem 0 3rem #000;
          border-radius: 8px;
          margin-left: 5%;
          margin-top: 30px;
          width: 90%;
          height: 530px;
          background-color: #ffffff;
          display: none;
      }
  }
  
  .mais {
      margin-top: 50px;
      width: 27%;
      background-color: #ffffff;
      margin-left: 5%;
      border-radius: 8px;
      padding-bottom: 50px;
      display: inline-block;
  }
  
  @media screen and (max-width: 1400px) {
      .mais {
          margin-top: 50px;
          width: 25%;
          background-color: #ffffff;
          margin-left: 10%;
          border-radius: 8px;
          padding-bottom: 50px;
          display: none;
      }
  }
  
  .contato {
      display: inline-block;
      padding-bottom: 50px;
      width: 90%;
      margin-left: 5%;
      background-color: #fff;
      border-radius: 8px;
      padding-bottom: 50px;
  }
  
  .contato1,
  .contato2,
  .contato3,
  .contato4 {
      width: 20%;
      margin-left: 3%;
      background-color: #232a34;
      border-radius: 8px;
      display: inline-block;
      transition: transform 200ms ease-in-out;
  }
  
  @media screen and (max-width: 1400px) {
      .contato1,
      .contato2,
      .contato3,
      .contato4 {
          width: 40%;
          margin-left: 3%;
          margin-top: 1vh;
          background-color: #232a34;
          border-radius: 8px;
          display: inline-block;
          transition: transform 200ms ease-in-out;
      }
  }
  
  @media screen and (max-width: 600px) {
      .contato1,
      .contato2,
      .contato3,
      .contato4 {
          width: 90%;
          margin-left: 3%;
          margin-top: 1vh;
          background-color: #232a34;
          border-radius: 8px;
          display: inline-block;
          transition: transform 200ms ease-in-out;
      }
  }
  
  .circulo_contato {
      background-color: #fff;
      width: 40px;
      height: 40px;
      display: block;
      text-align: center;
      margin-right: 5px;
      border-radius: 50%;
      line-height: 40px;
      box-sizing: border-box;
      text-decoration: none;
      -webkit-transition: .3s;
      transition: .3s;
      color: #fff;
      transition: transform 200ms ease-in-out;
  }
  
  .contatoWhatsaap {
      width: 90%;
      margin-left: 5%;
      background-color: #fff;
      border-radius: 8px;
  }
  
  #contatoForm {
      margin: 0 auto;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .label {
      margin-left: 2%;
      font-size: 20px;
      display: block;
      margin-bottom: 5px;
      color: #000;
  }
  
  .inputWhatsapp {
      width: 93%;
      height: 33px;
      max-width: 93%;
      padding-left: 10px;
      padding-right: 10px;
      margin-left: 2%;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
      display: inline-block;
  }
  
  .inputWhatsappMensagem {
      width: 93%;
      height: 153px;
      max-width: 93%;
      padding-left: 10px;
      padding-right: 10px;
      padding-top: 10px;
      padding-bottom: 10px;
      margin-left: 2%;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
      display: inline-block;
  }
  
  #buttonWhatsapp {
      margin-left: 2%;
      padding-left: 25px;
      padding-right: 25px;
      padding-bottom: 10px;
      padding-top: 10px;
      background-color: #28a745;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 20px;
      cursor: pointer;
  }
  
  #buttonWhatsapp:hover {
      background-color: #218838;
  }
  
  #carouselSlides {
      max-width: 100%;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .carousel-inner {
      display: flex;
      width: 100%;
      position: relative;
      transition: transform 0.5s ease-in-out;
  }
  
  .carousel-item {
      min-width: 100%;
      box-sizing: border-box;
      z-index: 2;
      position: relative;
  }
  
  .carousel-item {
      transition: opacity 0.5s ease-in-out;
      z-index: 2;
  }
  
  .carousel-caption {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.5);
      /* Fundo semitransparente */
      padding: 10px;
      color: white;
      z-index: 2;
  }
  
  .carousel-item img {
      padding-top: 60px;
      width: 100%;
      z-index: 1;
      object-fit: cover;
      padding-bottom: 40vh;
  }
  
  @media (max-width: 1500px) {
      .carousel-item img {
          padding-top: 86px;
          width: 100%;
          z-index: 1;
          object-fit: cover;
          padding-bottom: 45vh;
      }
  }
  
  @media (max-width: 1400px) {
      .carousel-item img {
          padding-top: 86px;
          width: 100%;
          z-index: 1;
          object-fit: cover;
          padding-bottom: 50vh;
      }
  }
  
  @media (max-height: 700px) {
      .carousel-item img {
          padding-top: 86px;
          width: 100%;
          z-index: 1;
          object-fit: cover;
          padding-bottom: 55vh;
      }
  }
  
  @media (max-height: 600px) {
      .carousel-item img {
          padding-top: 86px;
          width: 100%;
          z-index: 1;
          object-fit: cover;
          padding-bottom: 68vh;
      }
  }
  
  @media (max-height: 475px) {
      .carousel-item img {
          padding-top: 86px;
          width: 100%;
          z-index: 1;
          object-fit: cover;
          padding-bottom: 90vh;
      }
  }
  
  @media (max-height: 400px) {
      .carousel-item img {
          padding-top: 86px;
          width: 100%;
          z-index: 1;
          object-fit: cover;
          padding-bottom: 95vh;
      }
  }
  
  @media (max-height: 300px) {
      .carousel-item img {
          padding-top: 86px;
          width: 100%;
          z-index: 1;
          object-fit: cover;
          padding-bottom: 100vh;
      }
  }
  
  .carousel-indicators {
      display: flex;
      justify-content: center;
      margin-top: 10px;
      z-index: 2;
  }
  
  .carousel-indicators button {
      background-color: #007bff;
      border: none;
      border-radius: 5px;
      color: white;
      width: 40px;
      height: 40px;
      margin: 0 5px;
      cursor: pointer;
      transition: background-color 0.3s;
      z-index: 2;
  }
  
  .carousel-indicators button:hover {
      background-color: #0056b3;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: transparent;
      border: none;
      color: white;
      padding: 10px;
      cursor: pointer;
      z-index: 2;
  }
  
  .carousel-control-prev {
      left: 0;
  }
  
  .carousel-control-next {
      right: 0;
  }
  
  #carouselSlides div h5 {
      margin-top: -500px;
      color: #000;
      line-height: 30px;
      font-weight: 700;
      font-size: 50px;
      z-index: 3;
      position: relative;
  }
  
  #carouselSlides div p {
      margin-top: -70px;
      color: #000;
      font-weight: 500;
      font-size: 30px;
      z-index: 3;
      position: relative;
  }
  
  #carouselSlides>.overlay1 {
      position: absolute;
      top: 0;
      left: 0;
      background-color: #00000041;
      width: 100%;
      height: 100%;
      z-index: 1;
  }
  
  #carouselSlides>.carousel-item .carousel-inner .carousel-indicators .carousel-control-prev .carousel-control-next {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      height: 100%;
      z-index: 3;
      position: relative;
  }
  
  .img-home {
      height: 700px;
      background-image: url('/img/img.jpg');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      position: relative;
      color: #fff;
      text-align: center;
      background-attachment: fixed;
  }
  
  .img-home>.overlay {
      position: absolute;
      top: 0;
      left: 0;
      background-color: #000000b9;
      width: 100%;
      height: 100%;
      z-index: 1;
  }
  
  .img-home>.interface {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      height: 100%;
      z-index: 2;
      position: relative;
  }
  
  .img-home h3 {
      font-size: 4em;
      line-height: 60px;
      font-weight: 300;
  }
  
  .img-home h3 span {
      display: block;
      font-weight: 700;
  }
  
  .img-home p {
      margin: 20px 0;
      font-size: 20px;
      font-weight: 300;
  }
  
  .img-home button {
      font-size: 18px;
      padding: 20px 30px;
      background-color: transparent;
      border: 1px solid #fff;
      color: #fff;
      cursor: pointer;
      transition: 0.5s;
      font-weight: 550;
  }
  
  .img-home button:hover {
      background-color: #fff;
      color: #000;
  }
  
  .plus-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      /* Tamanho do ícone */
      height: 120px;
      font-size: 110px;
      /* Tamanho do símbolo de "+" */
      font-weight: bold;
      color: white;
      /* Cor do símbolo */
      background-color: #333;
      /* Cor de fundo */
      border-radius: 50%;
      /* Forma circular */
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
      /* Sombra */
      cursor: pointer;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  /* Efeito de hover */
  
  .plus-icon:hover {
      background-color: #555;
      /* Cor de fundo ao passar o mouse */
      box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
      /* Sombra ao passar o mouse */
  }
  
  .active {
      text-align: left;
      border: none;
      background-color: #adadad;
      transition: 0.6s;
      padding-top: 10px;
      padding-bottom: 10px;
      border-radius: 8px;
      padding-left: 10px;
      cursor: pointer;
      font-size: 15px;
      color: #000;
      display: block;
      width: 200px;
  }
  
  .imagem-gallery {
      width: 87%;
      margin-left: 5%;
      border-radius: 8px;
      background-color: #fff;
      padding-top: 20px;
      padding-bottom: 10px;
  }
  
  .image-gallery-home {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      border-radius: 8px;
      background-color: #fff;
      padding: 1.5%;
      flex-wrap: wrap;
  }
  
  .image-item {
      position: relative;
      width: 100%;
      height: 250px;
      cursor: pointer;
  }
  
  .image-item img {
      width: 100%;
      height: 250px;
      cursor: pointer;
      transition: opacity 0.3s ease-in-out;
  }
  
  .image-item::before {
      display: flex;
      justify-content: center;
      align-items: center;
      content: attr(data-title);
      position: absolute;
      color: #03a84e;
      background-color: rgb(0 0 0 / 71%);
      width: 100%;
      height: 250px;
      font-size: 20px;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
  }
  
  .image-item:hover::before {
      opacity: 1;
  }
  
  .imagem-gallery button {
      font-size: 18px;
      padding: 20px 30px;
      background-color: transparent;
      border: 1px solid #fff;
      color: #fff;
      cursor: pointer;
      transition: 0.5s;
      font-weight: 550;
  }
  
  .imagem-gallery button:hover {
      background-color: #fff;
      color: #000;
  }
  
  .banner-image {
      display: flex;
      justify-content: right;
      width: 96%;
      background-color: #03a84e;
      padding: 2%;
  }
  
  .expandirImagem {
      display: none;
      /* Escondido por padrão */
      position: fixed;
      z-index: 1000;
      /* Fica acima de outros elementos */
      left: 0;
      top: 0;
      width: 100%;
      /* Largura total */
      height: 100%;
      /* Altura total */
      background-color: rgba(0, 0, 0, 0.9);
      /* Cor de fundo escura */
      overflow: auto;
      padding-top: 60px;
      padding-bottom: 60px;
  }
  
  .modal-content-img {
      margin: auto;
      display: block;
      width: 80%;
      /* Tamanho da imagem */
      max-width: 700px;
  }
  
  #caption {
      text-align: center;
      color: #fff;
      padding: 10px;
      font-size: 20px;
  }
  
  .fechar {
      position: fixed;
      top: 15px;
      right: 35px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
  }
  
  .fechar:hover,
  .fechar:focus {
      color: #bbb;
      text-decoration: none;
      cursor: pointer;
  }