/* Estilos específicos para telas menores (mobile) */

/* Ajustes do hero e formulário de leads */
@media screen and (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2rem;
  }

  .hero-right {
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Ajustes para header, rodapé e elementos gerais em mobile */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 1rem;
  }

  .header-logo {
    justify-content: center;
    width: 100%;
  }

  .header-logo-img {
    height: 120px;
    width: auto;
  }

  .contact-options {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .contact-option {
    width: 100%;
    justify-content: center;
    min-width: auto;
  }

  .footer-info {
    gap: 0.6rem;
  }

  .footer-info p {
    font-size: 1rem;
  }

  .highlight {
    font-size: 1.1rem;
  }

  .social-btn {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

/* Ajustes para os cards de planos em telas muito pequenas */
@media screen and (max-width: 640px) {
  .plans.pricing .plan {
    text-align: left;
  }
}

/* ============================================
   BANNER DE COOKIES - Responsividade Mobile
   ============================================ */

@media (max-width: 768px) {
  /* Banner de cookies em mobile */
  #cookie-banner {
    padding: 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-text {
    min-width: 100%;
    text-align: center;
  }

  .cookie-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .cookie-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Modal de cookies em mobile */
  #cookie-modal {
    padding: 10px;
  }

  .modal-content {
    padding: 20px;
    max-height: 95vh;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .cookie-option {
    padding: 15px;
  }

  .cookie-option strong {
    font-size: 15px;
  }

  .cookie-option small {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #cookie-banner {
    padding: 12px;
  }

  .cookie-text p {
    font-size: 12px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    min-width: auto;
    padding: 12px 20px;
  }

  .modal-content {
    padding: 16px;
  }

  .modal-header h2 {
    font-size: 18px;
  }
}


