/* Estilos para melhorar a responsividade em diferentes dispositivos */

/* Variáveis CSS para facilitar ajustes responsivos */
:root {
  --hero-title-size: 3.5rem;
  --section-title-size: 2.5rem;
}

/* Ajustes para telas grandes */
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Ajustes para tablets */
@media screen and (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .services-grid, 
  .clients-grid,
  .testimonial-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-image {
    margin-top: 2rem;
  }
  
  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Ajustes para dispositivos móveis */
@media screen and (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: var(--hero-title-size);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: var(--section-title-size);
    margin-bottom: 2rem;
  }
  
  .services-grid, 
  .clients-grid,
  .testimonial-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-item {
    margin-bottom: 1.5rem;
  }
  
  .client-logo {
    height: 100px;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    margin-top: 2rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* Ajustes para dispositivos móveis pequenos */
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btns .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .client-logo {
    height: 80px;
    padding: 0.8rem;
  }
  
  .testimonial-card {
    padding: 1.2rem;
  }
  
  .contact-buttons {
    right: 10px;
  }
  
  .contact-btn {
    width: 40px;
    height: 40px;
  }
  
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

/* Ajustes para impressão */
@media print {
  .header, 
  .footer, 
  .contact-buttons, 
  .whatsapp-float,
  .btn {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}
