/* ============================================================
   ESTILOS ESPECÍFICOS PARA TELAS MENORES (MOBILE)
   ============================================================
   Arquivo CSS responsivo para dispositivos móveis.
   Sincronizado com styledorapeinferior.css para o rodapé.
   ============================================================ */

/* 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;
  }

  /* ============================================================
     RODAPÉ - Responsividade Mobile (Sincronizado com styledorapeinferior.css)
     ============================================================ */
  .site-footer {
    padding: 30px 20px !important;
  }

  .footer-container {
    padding: 0 1rem !important;
  }

  .footer-copy {
    font-size: 13px !important;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
  }

  .footer-links {
    margin-bottom: 14px !important;
    gap: 0 !important;
  }

  .footer-links a {
    font-size: 13px !important;
    margin: 0 5px !important;
  }

  .divider {
    font-size: 13px !important;
    margin: 0 3px !important;
  }

  .footer-social {
    margin-top: 8px !important;
  }

  .footer-social a {
    font-size: 18px !important;
  }
}

/* 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: 600px) {
  /* ============================================================
     RODAPÉ - Smartphones (Sincronizado com styledorapeinferior.css)
     ============================================================ */
  .site-footer {
    padding: 25px 15px !important;
  }

  .footer-container {
    padding: 0 !important;
  }

  .footer-copy {
    font-size: 12px !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    padding: 0 10px !important;
  }

  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
    align-items: center !important;
  }

  .footer-links a {
    font-size: 12px !important;
    margin: 0 !important;
    padding: 4px 0 !important;
  }

  .divider {
    display: none !important;
  }

  .footer-social {
    margin-top: 10px !important;
  }

  .footer-social a {
    font-size: 18px !important;
  }
}

@media (max-width: 480px) {
  /* Banner de cookies em telas muito pequenas */
  #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;
  }

  /* Rodapé em telas muito pequenas (Sincronizado) */
  .site-footer {
    padding: 20px 10px !important;
  }

  .footer-copy {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }

  .footer-links a {
    font-size: 11px !important;
  }

  .footer-social a {
    font-size: 16px !important;
  }
}

