/* Estilos para telas menores (ex: smartphones) */
@media screen and (max-width: 767px) {

    .main{
        height: calc(100% - 65px);
        padding: 45px 15px;
    }

    .main .container{
        display: flex;
        flex-direction: column-reverse;
    }

    .main-info{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-info h1{
        font-size: 2.2rem;
        line-height: 2.6rem;
    }

    .main-info p{
        font-size: 1.2rem;
        font-weight: 400;
    }

    .main-info-img{
        width: 80%;
        margin-bottom: 15px;
    }
    

    .about-area{
        flex-direction: column;
        justify-content: center;
    }

    .about-thumb, .about-cards{
        width: 100%;
    }

    .about-cards{
        justify-content: center;
    }

    .about-cards span{
        width: calc(50% - 14px);
    }

    .store .container{
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .store-info, .store-card{
        width: 100%;
    }

    .store-info h2{
        margin-bottom: 35px;
    }

    .faq .container{
        width: 100%;
    }


  }
  
  /* Estilos para tablets e dispositivos maiores */
  @media screen and (min-width: 768px) and (max-width: 1023px) {

    .store .container{
        width: 100%;
    }
  
  }
  
  /* Estilos para desktops padrão */
  @media screen and (min-width: 1024px) {
  
    /* Adicione outros estilos específicos para desktops, se necessário */
  }