/* Ajustes adicionais para responsividade */

/* Ajustes para telas médias */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .private-label-content {
    flex-direction: column-reverse;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .private-label-image {
    margin-top: 2rem;
  }
}

/* Ajustes para telas pequenas */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .logo span {
    font-size: 1.2rem;
  }
  
  .logo img {
    height: 40px;
  }
}

/* Melhorias visuais para identidade corporativa */
.btn {
  border-radius: 0; /* Bordas retas para visual corporativo */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.benefit-card, .testimonial-card {
  border-left: 3px solid var(--color-gold);
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 1rem auto 2rem;
}

/* Efeito de hover nos cards */
.benefit-card:hover {
  box-shadow: 0 10px 30px rgba(193, 154, 107, 0.2);
}

/* Melhorias de acessibilidade */
.form-control:focus {
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 5px rgba(193, 154, 107, 0.5);
}

/* Ajustes para impressão */
@media print {
  header, footer, .contact-form {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
}
