@media screen and (max-width: 768px) {

    body,
    html {
        overflow-x: hidden;
    }

    nav a {
        font-size: 0;
        
    }

    .hero-title {
        width: 100%;
    }

    .feature-container,
    .review-container {
        flex-direction: column;
        align-items: center;
    }

     .cta-section{
        display: flex;
        flex-direction: column;
        
    }

    .cta-image{
        transform: rotate(0deg);
        margin-bottom: 40px;
        margin-top: 40px;
        transition: ease-in .3s;
    }

    .cta-image:hover {
        transform: rotateY(180deg) scale(1.5);
    }
    
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

/* LOJA */

@media (max-width: 600px){

  .loja-header{
    padding: 16px;
    text-align: center;
  }

  .loja-title{
    font-size: 22px;
  }

  .loja-subtitle{
    font-size: 14px;
  }

  .loja-grid{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px;
  }

  .skin-img{
    height: 190px;
  }

  .skin-name{
    font-size: 14px;
  }

  .skin-price{
    font-size: 16px;
  }

}

@media (min-width: 601px) and (max-width: 1024px){

  .loja-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .skin-img{
    height: 210px;
  }

}