/*====  RESET ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: var(--text-color);
  }
  
  /*====  VARIABLES ============================ */
  :root {
    /* css swiper */
    --swiper-pagination-color: #fe8f47;
  
    --header-height: 4.5rem;
  
    /* colors */
    --hue: 9;
    /* HSL color mode */
    --base-color: #eb8334;
    --base-color-second: rgba(235,131,52,0.6);
    --base-color-alt: hsl(var(--hue) 57% 53%);
    --title-color: #00121b;
    --text-color: hsl(0 0% 46%);
    --text-color-light: #ffefff;
    --body-color:#00121b;
    --footer2: #3d545f;
    --price-color: #34af23;
  
    /* fonts */
    --title-font-size: 1.875rem;
    --subtitle-font-size: 1rem;
  
    --title-font: 'Poppins', sans-serif;
    --body-font: 'DM Sans', sans-serif;
  }
  /***inicio scrollbar***/
  ::-webkit-scrollbar{
    width: 8px;
  }
  ::-webkit-scrollbar-track{
     background:  rgb(220,220,220);
  }
  ::-webkit-scrollbar-thumb{
    width: 6px;
    height: 100px;
    background: rgb(63, 62, 62);
    border-radius: 30px;
    transition: .5s;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--base-color);
  }
  
  /******fim scrollbar***********/
  /*===  BASE ============================ */
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font: 400 1rem var(--body-font);
    color: var(--text-color);
    background: var(--body-color);
    -webkit-font-smoothing: antialiased;
  }
  
  .title {
    font: 700 var(--title-font-size) var(--title-font);
    color: var(--title-color);
    -webkit-font-smoothing: auto;
  }
  .title-light {
    color: var(--text-color-light);
    -webkit-font-smoothing: auto;
  }
  
  .divider-1 {
    height: 1px;
    background: linear-gradient(
      270deg,
      hsla(var(--hue),100%, 64%, 0.8),
      hsla(var(--hue), 100%, 64%, 0.34)
    );
  }
  
  .divider-2 {
    height: 1px;
    background: linear-gradient(
      270deg,
      hsla(var(--hue), 100%, 64%, 0.34),
      hsla(var(--hue),100%, 64%, 0.8)
    );
  }
  .layer{
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background:rgba(0,0,0,0.7);
      z-index: 1;
  }
  
  .banner-single{
      position: absolute;
      left: 0;
      top: 0;
      z-index: 1;
      width: 100%;
      height:100%;
      opacity: 0;
      background-size: cover;
      background-position: center;
  }
  /** preloader */
  /* Preloader fullscreen */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Loader giratório */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--base-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Imagem com animação de pulo */
.preloader-img {
    max-width: 90px;
    width: 100%;
    height: auto;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

  
  /* especialidades*/
  .especialidades{
      padding: 70px 0;
      background-color: var(--body-font);
  }
  
  .especialidade-box{
      margin: 10px auto;
      overflow: hidden;
      width: 100%;
    max-width: 650px;
      display: block;
  }
  .especialidade-single{
      width: 100%;
      margin: 8px;
      display: inline-block;
  }
  .especialidade-single img{
    border-radius: 20px;
    margin-left: 2.2rem;
  }
  
  .slick-track{
    margin: 0;
    padding: 0;
  }
  /****SLICK SLIDER****/
  
  .slick-dotted ul{
      list-style-type: none;
      text-align: center;
      position: relative;
      margin-top:10px;
  }
  
  .slick-dotted li{
      display: inline-block;
      margin: 0 7px;
  }
  
  .slick-dotted button:focus{
      outline: 0;
  }
  
  .slick-dotted li button{
      width: 13px;
      height: 13px;
      border-radius:6px;
      color: #d8d8d8;
      border-width: 0;
      background: #d8d8d8;
      opacity: 1;
      cursor: pointer;
  }
  
  li.slick-active button{
      background: var(--base-color);
      color: var(--base-color);
  }
  
  .slick-slide:focus { outline: none; }
  
  /**END SLICK**/
  
  /*====  LAYOUT ============================ */
  .container {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  
  .grid {
    display: grid;
    gap: 2rem;
  }
  
  .section {
    padding: calc(5rem + var(--header-height)) 0;
  }
  
  .section .title {
    margin-bottom: 1rem;
  }
  
  .section .subtitle {
    font-size: var(--subtitle-font-size);
    margin-bottom: 0.5rem;
  }
  
  .section header {
    margin-bottom: 4rem;
  }
  
  .section header strong {
    color: var(--base-color);
  }
  
  #header {
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 4rem;
    display: flex;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: saturate(180%) blur(20px);
    width: 100%;
  }
  
  #header.scroll {
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  }
  
  /*====  LOGO ============================ */
  .logo{
    max-width: 120px;
    transition: 750ms;
  }
  .logo:hover{
    transform: scale(1.05);
  }
  /*====  NAVIGATION ============================ */
  nav {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  nav ul li {
    text-align: center;
  }
  
  nav ul li a {
    transition: color 0.3s;
    position: relative;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: var(--base-color);
  }
  
  nav ul li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--base-color);
  
    position: absolute;
    left: 0;
    bottom: -1.5rem;
  
    transition: width 0.2s;
  }
  
  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 100%;
  }
  
  nav .menu {
    opacity: 0;
    visibility: hidden;
    top: -20rem;
    transition: 0.2s;
  }
  
  nav .menu ul {
    display: none;
  }
  
  /* Mostrar menu */
  nav.show .menu {
    opacity: 1;
    visibility: visible;
  
    background: var(--body-color);
  
    height: 100vh;
    width: 100vw;
  
    position: fixed;
    top: 0;
    left: 0;
  
    display: grid;
    place-content: center;
  }
  
  nav.show .menu ul {
    display: grid;
  }
  
  nav.show ul.grid {
    gap: 4rem;
  }
  
  /* toggle menu */
  .toggle {
    color: var(--base-color);
    font-size: 1.5rem;
    cursor: pointer;
  }
  nav .icon-close {
    visibility: hidden;
    opacity: 0;
  
    position: absolute;
    top: -1.5rem;
    right: 1.5rem;
  
    transition: 0.2s;
  }
  
  nav.show div.icon-close {
    visibility: visible;
    opacity: 1;
    top: 1.5rem;
  }
  
  /*====  HOME ============================ */
  #home {
    overflow: hidden;
    position: relative;
      background-size: cover;
      background-position: center;
      width: 100%;
      padding:15px 0;
      min-height: 800px;
  }
  
  #home .container {
    margin: 0;
  }
  
  #home .image {
    position: relative;
    display: none;
  }
  
  #home .image::before {
    content: '';
    height: 100%;
    width: 100%;
    background: var(--base-color-second);
    position: absolute;
    top: -16.8%;
    left: 16.7%;
    z-index: 0;
  }
  
  #home .image img {
    position: relative;
    right: 2.93rem;
  }
  
  #home .image img,
  #home .image::before {
    border-radius: 0.25rem;
  }
  
  #home .text {
    margin-top: 8rem;
    margin-left: 1rem;
    margin-right: 1rem;
    text-align: left;
    z-index: 98;
  }
  
  #home .text h1 {
    margin-bottom: 1rem;
    z-index: 97;
  }
  #home h3{
    color: var(--text-color-light);
  }
  
  #home .text p {
    color: var(--text-color-light);
    margin-top: 2rem;
    margin-bottom: 2rem;
    z-index: 96;
  }
  /********botão**/
  .button {
    margin: 20px;
  }
  .custom-btn {
    text-align: center;
    width: 100%;
    max-width: 150px;
    height: 100%;
    max-height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }
  .btn-7 {
    background: linear-gradient(0deg, rgba(255,151,0,1) 0%, rgba(251,75,2,0.7) 100%);
      line-height: 42px;
      padding: 0;
      border: none;
    }
    .btn-7 span {
      position: relative;
      display: block;
      width: 100%;
      height: 90%;
    }
    .btn-7:before,
    .btn-7:after {
      position: absolute;
      content: "";
      right: 0;
      bottom: 0;
      background: var(--base-color);
      box-shadow:
       -7px -7px 20px 0px rgba(255,255,255,.9),
       -4px -4px 5px 0px rgba(255,255,255,.9),
       7px 7px 20px 0px rgba(0,0,0,.2),
       4px 4px 5px 0px rgba(0,0,0,.3);
      transition: all 0.3s ease;
    }
    .btn-7:before{
       height: 0%;
       width: 2px;
    }
    .btn-7:after {
      width: 0%;
      height: 2px;
    }
    .btn-7:hover{
      color: var(--base-color);
      background: transparent;
    }
    .btn-7:hover:before {
      height: 100%;
    }
    .btn-7:hover:after {
      width: 100%;
    }
    .btn-7 span:before,
    .btn-7 span:after {
      position: absolute;
      content: "";
      left: 0;
      top: 0;
      background: var(--base-color);
      box-shadow:
       -7px -7px 20px 0px rgba(255,255,255,.9),
       -4px -4px 5px 0px rgba(255,255,255,.9),
       7px 7px 20px 0px rgba(0,0,0,.2),
       4px 4px 5px 0px rgba(0,0,0,.3);
      transition: all 0.3s ease;
    }
    .btn-7 span:before {
      width: 2px;
      height: 0%;
    }
    .btn-7 span:after {
      height: 2px;
      width: 0%;
    }
    .btn-7 span:hover:before {
      height: 100%;
    }
    .btn-7 span:hover:after {
      width: 100%;
    }
  /*** efeito fogos**/
  #fire{
    top: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    z-index: 1000;
  }
  /*=======EFEITO DIGITANDO=========*/
  .menssagem{
      width: 100%;
    max-width: 155px;
    color: var(--base-color);
      animation: digitando 7s steps(25), blink .4s infinite alternate;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid;
  }
  
  @keyframes digitando {
      from{
          width: 0;
      }
  }
  
  @keyframes blink {
      40%{
          border-color: rgba(255, 255, 2555, 0.2);
      }
  }
  /*================*/
  /*====  ABOUT ============================ */
  #about {
    background: white;
  }
  
  #about .container {
    margin: 0;
  }
  
  #about .image {
    position: relative;
  }
  
  #about .image::before {
    content: '';
    height: 100%;
    width: 100%;
    background: var(--base-color-second);
    position: absolute;
    top: -8.3%;
    left: -33%;
    z-index: 0;
  }
  
  #about .image img {
    position: relative;
  }
  
  #about .image img,
  #about .image::before {
    border-radius: 0.25rem;
  }
  
  #about .text {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  
  /*====  SERVICES ============================ */
  .cards.grid {
    gap: 1.5rem;
  }
  
  .card {
    padding: 3.625rem 2rem;
    box-shadow: 0px 0px 12px rgba(242, 233, 233, 0.08);
    border-bottom: 0.25rem solid var(--base-color);
    border-radius: 0.25rem 0.25rem 0 0;
    text-align: center;
  }
  
  .card i {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 5rem;
    color: var(--base-color);
  }
  
  .card .title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  /*====  TESTIMONIALS ============================ */
  #testimonials {
    background: white;
  }
  
  #testimonials .container {
    margin-left: 0;
    margin-right: 0;
    position: relative;
    overflow: hidden;
  }
  
  #testimonials header {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  
  #testimonials blockquote {
    padding: 2rem;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
    border-radius: 0.25rem;
  }
  
  #testimonials blockquote p {
    position: relative;
    text-indent: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--title-color);
  }
  
  #testimonials blockquote p span {
    font: 700 2.5rem serif;
    position: absolute;
    top: -0.375rem;
    left: -1.875rem;
    color: var(--base-color);
  }
  
  #testimonials cite {
    display: flex;
    align-items: center;
    font-style: normal;
  }
  
  #testimonials cite img {
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    clip-path: circle();
    margin-right: 0.5rem;
  }
  
  /* swiper */
  .swiper-slide {
    height: auto;
    padding: 2rem 0.5rem;
  }
  
  .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
  }
  
  .swiper-pagination-bullet-active {
    background: var(--base-color);
  }
  /*====  ifoprodutos============================ */
  .infoprodutos {
      padding: 2rem;
      background-color: var(--body-color);
      text-align: center;
  }
  
  .infoprodutos h2 {
      margin-top: 4rem;
      margin-bottom: 2rem;
      
  }
  .infoprodutos h3{
    margin: 0 auto;
    width: 100%;
    max-width: 550px;
  }
  
  .grid-container {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr 1fr;
      justify-content: center;  
  }
  
  .produto {
      display: grid;
      grid-template-columns: 1fr 2fr;
      background: rgba( 255, 255, 255, 0.12 );
      box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
      backdrop-filter: blur( 4px );
      -webkit-backdrop-filter: blur( 4px );
      border-radius: 10px;
      border: 1px solid rgba( 255, 255, 255, 0.18 );
      border-radius: 8px;
      overflow: hidden; 
      text-align: left;
      width: 100%;
      max-width: 600px;
      height: 100%;
      max-height: 400px;
  }
  .produto .imagem {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  .produto img {
      width: 100%;
      height: auto;
      margin: 0 auto;
      background-size: cover;
        background-position: center;
      display: inline-block;
      transition: transform 0.3s ease;
  }
  
  .produto:hover img{
      transform: scale(1.05);
  }
  
  .descricao {
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
  
  }
  
  .descricao h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: #ddd;
  }
  
  .descricao p {
      color: #666;
      font-size: 1rem;
      text-align: left;
  }
  /*====  PRICE ============================ */
  #price .card i{
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  #price h3{
    color: var(--base-color);
    margin-bottom: 0.5rem;
  }
  #price h4{
    color: var(--price-color);
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
  }
  
  #price h5{
    margin-bottom: 0.7rem;
  }
  
  
  /*============footer===================*/
  .footer {
      width: 100%;
      background: var(--body-color);
      display: block;
  }
  
  img{
      max-width: 90%;
      background-position: cover;
      
  }
  
  
  .inner-footer {
      width: 95%;
      margin: auto;
      padding: 30px 10px;
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      justify-content: center;
  }
  
  .footer-items {
      width: 25%;
      padding: 10px 20px;
      box-sizing: border-box;
  }
  .footer-items img{
    transition: 750ms;
  }
  .footer-items img:hover{
    transform: scale(1.05);
  }
  .footer-items p {
      color: grey;
      font-size: 16px;
      text-align: justify;
      line-height: 25px;
  }
  
  footer  h2 {
      margin: 10px 0;
      color: grey;
      font-size: 16px;
      font-weight: lighter;
      text-transform: uppercase;
  }
  
  .border {
      height: 2px;
      width: 40px;
      background: var(--base-color);
  }
  
  footer ul {
      list-style: none;
      color: var(--text-color-light);
      font-size: 15px;
      letter-spacing: 0.5px;
  }
  
  footer ul a {
      text-decoration: none;
      outline: none;
      color: var(--text-color-light);
      transition: 0.3s;
  }
  
  footer ul a:hover {
      color: var(--base-color);
  }
  
  footer ul li {
      margin: 10px 0;
      height: 25px;
  }
  
  footer li i {
      margin-right: 20px;
  }
  footer .lgpd{
    width: 170px;
  }
  .social-media {
      width: 100%;
      color: var(--text-color-light);
      display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .social-media a {
      text-decoration: none;
  }
  
  .social-media i {
      height: 15px;
      width: 15px;
      margin: 20px 5px;
      padding: 10px;
      color: var(--text-color-light);	
      transition: 0.3s;
  }
  
  .footer-bottom {
      padding: 10px;
      background: var(--footer2);
      color: var(--text-color-light);
      font-size: 12px;
      text-align: center;
  }
  
  footer .social-media {
      grid-auto-flow: column;
      width: fit-content;
    }
    
    footer .social-media a {
      transition: 0.3s;
      display: inline-block;
    }
    
    footer .social-media a:hover {
      transform: translateY(-8px);
    }
  /* botão do whatsapp*/
  .btn-whatsapp {
      z-index: 999;
      position: fixed;
      outline: 0;
      bottom: 60px;
      right: 10px;
      border-radius: 50%;
      height: 65px;
      width: 65px;
      cursor: pointer;
      background: #34af23;
      color: #FFF;
      font-size: 2.3rem;
      border: 1px solid #f1f1f1;
  
      animation: pulsar 0.8s ease-out 1s infinite alternate none running;
  }
  
  .btn-whatsapp a {
      color: inherit;
  }
  
  @keyframes pulsar {
      0% {
          height: 65px;
          width: 65px;
      }
      100% {
          height: 85px;
          width: 85px;
      }
  } 
  /* Back to top */
  .back-to-top {
    background: var(--base-color);
    color: var(--text-color-light);
  
    position: fixed;
    right: 1rem;
    bottom: 1rem;
  
    padding: 0.5rem;
    clip-path: circle();
  
    font-size: 1.4rem;
    line-height: 0;
  
    visibility: hidden;
    opacity: 0;
  
    transition: 0.3s;
    transform: translateY(100%);
  }
  
  .back-to-top.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  /*========= gerador QR-CODE =========*/
  .wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .panel {
    width: 100%;
    max-width: 600px;
    height: 100%;
    margin-top: 7rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    padding: 40px 20px;
    background: rgba( 255, 255, 255, 0.12 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5px );
    -webkit-backdrop-filter: blur( 5px );
    transition: height 0.2s ease;
  
  }
  
  header h1 {
    font-size: 21px;
    font-weight: 500;
    color: #fff;
  }
  
  header p {
    margin-top: 5px;
    color: #aaa;
    font-size: 16px;
  }
  header span{
    color: #fe8f47;
  }
  .wrapper .form {
    margin: 20px 0 25px;
  }
  
  .form :where(input, button) {
    width: 100%;
    height: 55px;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: 0.1s ease;
  }
  
  .form input {
    font-size: 18px;
    padding: 0 17px;
    border: 1px solid #999;
    color: var(--base-color);
    background: rgba( 255, 255, 255, 0.12 );
  }
  
  .form input:focus {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
  }
  
  .form input::placeholder {
    color: #999;
  }
  
  .form button {
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    font-size: 17px;
    background: rgba(255,255,255, 0.1);
    transition: background 0.4s ease, transform 0.2s ease;
  }
  
  .form button:hover {
    background: rgba(0,0,0,0.1);
    color: #fe8f47;
  }
  
  .form button:active {
    transform: scale(0.95);
  }
  
  .qr-code {
    opacity: 0;
    display: flex;
    flex-direction: column;
  
    align-items: center;
    pointer-events: none;
    justify-content: center;
    
  }
  
  .qr-code p {
    margin-top: 8px;
  }
  
  .panel.active .qr-code {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4 0.4s ease;
  }
  
  .qr-code img {
    width: 420px;
    padding: 33px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  
  /*========= MEDIA QUERIES =========*/
  /* extra large devices: 1200 > */
  @media (min-width: 1024px) {
    /* reusable classes */
    .container {
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .section {
      padding: 10rem 0;
    }
  
    .section header,
    #testimonials header {
      max-width: 32rem;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
  
    .button {
      height: 3.125rem;
    }
  
    /* navigation */
    nav .menu {
      opacity: 1;
      visibility: visible;
      top: 0;
    }
  
    nav .menu ul {
      display: flex;
      gap: 2rem;
    }
  
    nav .menu ul li a.title {
      font: 400 1rem var(--body-font);
      -webkit-font-smoothing: antialiased;
    }
  
    nav .menu ul li a.title.active {
      font-weight: bold;
      -webkit-font-smoothing: auto;
    }
  
    nav .icon-menu {
      display: none;
    }
  
    /* home */
    #home .container {
      grid-auto-flow: column;
      justify-content: space-between;
      margin: 0 auto;
    }
  
    #home .image {
      order: 1;
    }
  
    #home .text {
      order: 0;
      margin-left: 5rem;
      max-width: 25rem;
    }
  
    .menssagem{
      width: 330px;
    }
    /* about */
    #about .container {
      margin: 0 auto;
      grid-auto-flow: column;
    }
  
    /* services */
    .cards {
      grid-template-columns: 1fr 1fr 1fr;
    }
  
    .card {
      padding-left: 3rem;
      padding-right: 3rem;
    }
  
    /* testimonials */
    #testimonials .container {
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
    }
  
    /* contact */
    #contact .container {
      grid-auto-flow: column;
      align-items: center;
    }
  
    #contact .text {
      max-width: 25rem;
    }
  
    /* footer */
    footer.section {
      padding: 3.75rem 0;
    }
  
    footer .container {
      grid-auto-flow: column;
      align-items: center;
      justify-content: space-between;
    }
  
    footer .logo {
      font-size: 2.25rem;
    }
  }
  /* large devices: 1023 > */
  /* large devices: 992 > */
  @media (min-width: 992px) {
    
    :root {
      --title-font-size: 2.25rem;
      --subtitle-font-size: 1.125rem;
    }
  }
  /* medium devices: 767 > */
  @media(max-width: 768px){
    .menssagem{
      max-width: 130px;
    }
    .grid-container{
        grid-template-columns: 1fr;
    }
    .produto {
        grid-template-columns: 1fr;
        max-height: 700px;
    }
  
    .produto img {
        
        width: 100%;
        object-fit:contain;
    }
    .descricao h3 {
        text-align: center;
    }
    .descricao p {
        text-align: center;
    }
    footer{
          text-align: center;
      }
      footer .social-media{
      justify-content: center;
    }
      .conteudo-header .footer-a{
          
          text-align: center;
          
      }
  
      .footer-items {
          width: 100%;
      }
  
      .border{
          display: none;
      }
  
  }
  @media (max-width: 550px) {
    .especialidade-single img{
      margin-left: 1.1rem;
    }
    .panel {
      width: 94%;
      padding: 16px 20px;
    }
   
    header p {
      color: #696969;
    }
    .form :where(input, button) {
      height: 52px;
    }
    .qr-code img {
      width: 100%;
      max-width: 280px;
    }
  }
  