/**
 * RESPONSIVIDADE
 */

/* Tablets e dispositivos médios (768px a 1024px) */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero {
      padding-top: 80px;
      text-align: center;
    }
  
    .hero .hero-text {
      max-width: 90%;
    }
  
    .hero h1 {
      font-size: 3.5rem;
    }
  
    .cta-button {
      position: static;
      transform: none;
      width: 80%;
      max-width: 300px;
      margin-top: 5vh;
      margin-bottom: 12vh;
      font-size: 1.2rem;
    }
  
    /* Sobre Nós */
    .sobre-content {
      flex-direction: column;
    }

    .sobre-text {
      width: 100%;
      order: 2;
    }

    .sobre-image {
      width: 95%;
      margin-top: 30px;
      order: 1;
    }

    .sobre-image img {
      height: 50vh;
    }
  
    .produtos::before{
      background-position: 50%;
    }
  
    /* Produtos */
    .produto-categoria {
      min-height: 350px;
      max-width: 750px;
    }
  
    .produto-resumo {
      min-height: 250px;
      max-width: 750px;
      padding: 25px;
      gap: 25px;
    }
  
    .produto-resumo img {
      width: 300px;
      height: 300px;
    }
  
    .resumo-texto h2 {
      font-size: 1.8rem;
    }
  
    .resumo-texto p {
      font-size: 1rem;
    }
  
    .modelos-container {
      min-height: 320px;
      max-width: 750px;
    }
  
    /* Contato */
    .contato {
      flex-direction: column;
      text-align: center;
    }
    
  
    .contato-container {
      flex-direction: column;
      gap: 50px;
    }
  
    .contato-texto {
      width: 100%;
      margin-bottom: 40px;
      border-left: 3px solid #e6b800;
      border-bottom: none;
    }
  
    .contato-texto::after {
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: linear-gradient(to bottom, 
        transparent, 
        #e6b800, 
        transparent);
      opacity: 0.5;
    }
  
    .contato-imagem {
      width: 100%;
      padding-top: 40px;
    }
  
    .contato-imagem img {
      max-width: 300px;
    }
  }
  
  /* Dispositivos pequenos (phones, 480px a 767px) */
  @media (max-width: 767px) {
    /* Hero Section */
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 5%;
    }
    .hero-text {
      max-width: 90%;
      position: static;
      transform: none;
      margin-bottom: 15vh;
    }
  
    .hero h1 {
      font-size: 2.8rem;
    }
  
    .hero .speed-text {
      font-size: 1rem;
    }
  
    .cta-button {
      position: static;
      transform: none;
      width: 80%;
      max-width: 300px;
      margin-top: 5vh;
      margin-bottom: 12vh;
      font-size: 1rem;
    }
  
    /* Sobre Nós */
    .sobre-nos {
      padding: 60px 15px;
    }
  
    .sobre-nos h2 {
      font-size: 2rem;
    }
  
    .sobre-text {
      padding: 12px;
    }
  
    .sobre-image img {
      height: 40vh;
    }
  
    /* Produtos */
    .produto-categoria {
      min-height: 300px;
      max-width: 370px;
    }
  
    .produto-resumo {
      flex-direction: column;
      min-height: auto;
      padding: 20px;
      gap: 20px;
      text-align: center;
    }
  
    .produto-resumo img {
      width: 100%;
      max-width: 400px;
      height: 400px;
      max-height: 400px;
    }
  
    .resumo-texto {
      text-align: center;
      min-height: auto;
      align-items: center;
    }
  
    .btn-ver-modelos {
      margin-top: 20px;
    }
  
    .modelos-container {
      min-height: 300px;
      padding: 15px;
    }
  
    /* Contato */
    .contato {
      padding: 60px 15px;
    }
  
    .contato-texto {
      padding: 25px;
    }
  
    .contato-texto::after {
      width: 2px;
      opacity: 0.5;
    }
  
    .contato-texto h2 {
      font-size: 1.8rem;
    }
  
    .contato-texto p {
      font-size: 1rem;
      padding-left: 20px;
    }
  
    .whatsapp-button {
      padding: 12px 25px;
      font-size: 1rem;
    }
  
    .contato-imagem img {
      width: 80%;
      max-width: 370px;
      margin: -20px auto;
    }
  
    .contato-imagem p {
      font-size: 1, 5rem;
    }
  }
  
  /* Smartphones pequenos (360px a 479px) */
  @media (max-width: 479px) {
    /* Hero Section */
    .hero h1 {
      font-size: 2.8rem;
    }
  
    /* Sobre Nós */
    .sobre-nos h2 {
      font-size: 1.8rem;
    }
  
    /* Produtos */
    .produtos {
      padding: 60px 10px 30px;
    }
  
    .produto-categoria {
      min-height: 300px;
      max-width: 355px;
    }
  
    .produtos h1 {
      font-size: 1.8rem;
      margin-bottom: 30px;
    }
  
    .produto-resumo {
      padding: 15px;
    }
  
    .produto-resumo img {
      max-height: 300px;
      height: 300px;
    }
  
    .resumo-texto h2 {
      font-size: 1.6rem;
    }
  
    .resumo-texto p {
      font-size: 0.9rem;
    }
  
    .modelos-container {
      min-height: 260px;
      padding: 10px;
    }
  
    .item {
      width: 220px;
      padding: 15px;
    }
  
    .image-container {
      height: 180px;
    }
  
    .item h3 {
      font-size: 1.2rem;
    }
  
    .item p {
      font-size: 0.9rem;
    }
  
    .btn-product {
      padding: 8px 20px;
      font-size: 0.9rem;
    }
  
    /* Contato */
    .contato {
      flex-direction: column;
      text-align: center;
      padding: 5%;
    }
  
    .contato-texto,
    .contato-imagem {
      max-width: 100%;
      margin: 0;
      margin-bottom: 5vh;
    }
  
    .contato-texto p {
      font-size: 1, 5rem;
    }
  
    .whatsapp-button {
      width: 80%;
      max-width: 300px;
      margin: 5vh auto;
      font-size: 1.2rem;
    }
  
    .contato-texto h2 {
      font-size: 2rem;
    }
  
    .contato-imagem img {
      max-width: 250px;
    }
  
    .contato-imagem p {
      font-size: 1rem;
    }
  }
  
  /* Dispositivos muito pequenos (até 359px) */
  @media (max-width: 359px) {
    /* Hero Section */
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .produto-resumo {
      padding: 12px;
    }
  
    .resumo-texto h2 {
      font-size: 1.4rem;
    }
  
    .modelos-container {
      min-height: 240px;
    }
  
    .item {
      width: 200px;
    }
  
    .image-container {
      height: 160px;
    }
  }