@charset "ISO-8859-1";
  /* ----- RESET & BASE ----- */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif; }

    body {
      background: linear-gradient(145deg, #f9f3ff 0%, #f0f7ff 100%);
      color: #0a1e2f;
      line-height: 1.6;
      min-height: 100vh;
      padding: 20px;
    }

    .container { max-width: 900px; margin: 0 auto; }

    /* ----- BOTÃO FLUTUANTE PARA VOLTAR ----- */
    .btn-float-home {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(145deg, #f43b6b, #ff6b8a);
      color: white;
      border: none;
      box-shadow: 0 8px 28px rgba(244, 59, 107, 0.30);
      cursor: pointer;
      font-size: 1.4rem;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      text-decoration: none;
    }
    .btn-float-home:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 12px 40px rgba(244, 59, 107, 0.45); }
    .btn-float-home:active { transform: scale(0.95); }
    .btn-float-home i { color: white; }

    /* ----- CARD PRINCIPAL ----- */
    .support-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 48px;
      padding: 48px 44px 44px;
      box-shadow: 0 30px 80px rgba(0, 20, 40, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.5);
      margin-top: 20px;
      animation: fadeInUp 0.5s ease;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ----- HEADER ----- */
    .support-header {
      text-align: center;
      margin-bottom: 36px;
      padding-bottom: 28px;
      border-bottom: 2px solid rgba(244, 59, 107, 0.10);
    }
    .support-header .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #f43b6b, #ff6b8a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      margin-bottom: 8px;
    }
    .support-header .logo i {
      background: linear-gradient(145deg, #f43b6b, #ff9a56);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 2.2rem;
    }
    .support-header h1 { font-size: 2.2rem; font-weight: 900; color: #072033; margin-top: 8px; }
    .support-header p { color: #4a6a84; font-size: 1rem; margin-top: 4px; }
    .support-header .status-badge {
      display: inline-block;
      margin-top: 12px;
      background: linear-gradient(135deg, #25d366, #128C7E);
      color: white;
      padding: 6px 24px;
      border-radius: 60px;
      font-size: 0.8rem;
      font-weight: 700;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
      animation: pulse-badge 2s infinite ease-in-out;
    }
    @keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
    .support-header .status-badge i { margin-right: 6px; }

    /* ----- CONTATOS RÁPIDOS ----- */
    .quick-contacts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-bottom: 36px;
    }
    .contact-card {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      padding: 24px 20px;
      border-radius: 28px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.6);
      transition: 0.3s;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .contact-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(244, 59, 107, 0.08);
      border-color: #fcc7d6;
      background: rgba(255, 255, 255, 0.8);
    }
    .contact-card i {
      font-size: 2.4rem;
      background: linear-gradient(145deg, #f43b6b, #ff9a56);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
      display: block;
    }
    .contact-card h4 { font-size: 1rem; font-weight: 700; color: #072033; }
    .contact-card p { font-size: 0.85rem; color: #4a6a84; margin-top: 2px; word-break: break-word; }
    .contact-card .label {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 2px 12px;
      border-radius: 20px;
      margin-top: 6px;
    }
    .contact-card .label.whatsapp { background: rgba(37, 211, 102, 0.12); color: #25d366; }
    .contact-card .label.email { background: rgba(244, 59, 107, 0.08); color: #f43b6b; }
    .contact-card .label.phone { background: rgba(42, 125, 225, 0.08); color: #2a7de1; }
    .contact-card .label.chat { background: rgba(255, 154, 86, 0.12); color: #ff9a56; }

    /* ----- FAQ ----- */
    .faq-section { margin-top: 32px; }
    .faq-section h2 {
      font-size: 1.4rem;
      font-weight: 800;
      color: #072033;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .faq-section h2 i { color: #f43b6b; font-size: 1.3rem; }

    .faq-item {
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border-radius: 20px;
      margin-bottom: 12px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      overflow: hidden;
      transition: 0.3s;
    }
    .faq-item:hover { border-color: rgba(244, 59, 107, 0.15); }
    .faq-question {
      padding: 16px 24px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      color: #072033;
      transition: 0.2s;
      user-select: none;
    }
    .faq-question:hover { background: rgba(244, 59, 107, 0.03); }
    .faq-question i { color: #f43b6b; transition: 0.3s; font-size: 0.9rem; }
    .faq-question .fa-chevron-down { display: inline-block; }
    .faq-question .fa-chevron-up { display: none; }
    .faq-item.active .faq-question .fa-chevron-down { display: none; }
    .faq-item.active .faq-question .fa-chevron-up { display: inline-block; }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 24px;
      color: #2b4d68;
    }
    .faq-item.active .faq-answer { max-height: 400px; padding: 0 24px 20px; }
    .faq-answer p { margin-bottom: 8px; }
    .faq-answer p:last-child { margin-bottom: 0; }
    .faq-answer ul { list-style: none; padding-left: 0; margin: 8px 0; }
    .faq-answer ul li { padding: 4px 0; display: flex; align-items: center; gap: 10px; }
    .faq-answer ul li i { color: #25d366; font-size: 0.9rem; }
    .faq-answer a { color: #f43b6b; text-decoration: none; font-weight: 600; }

    /* ----- FORMULÁRIO DE CONTATO ----- */
    .contact-form-section {
      margin-top: 40px;
      padding-top: 32px;
      border-top: 2px solid rgba(244, 59, 107, 0.08);
    }
    .contact-form-section h2 {
      font-size: 1.4rem;
      font-weight: 800;
      color: #072033;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .contact-form-section h2 i { color: #f43b6b; font-size: 1.3rem; }
    .contact-form-section .form-subtitle { color: #4a6a84; font-size: 0.95rem; margin-bottom: 24px; }

    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-weight: 600;
      font-size: 0.85rem;
      color: #1f405a;
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid #e2ebf5;
      border-radius: 20px;
      font-size: 1rem;
      transition: 0.25s;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      outline: none;
      color: #0a1e2f;
      font-family: inherit;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #f43b6b;
      background: white;
      box-shadow: 0 0 0 4px rgba(244, 59, 107, 0.06);
    }
    .form-group textarea { min-height: 120px; resize: vertical; }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ab0c8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 18px center;
      cursor: pointer;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #a0b8d0; }

    .btn-submit {
      padding: 14px 48px;
      border: none;
      border-radius: 60px;
      background: linear-gradient(145deg, #f43b6b, #ff6b8a);
      color: white;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.25s;
      box-shadow: 0 8px 28px rgba(244, 59, 107, 0.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .btn-submit:hover:not(:disabled) { transform: scale(1.02); box-shadow: 0 12px 36px rgba(244, 59, 107, 0.35); }
    .btn-submit:active:not(:disabled) { transform: scale(0.98); }
    .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }

    /* ----- RODAPÉ ----- */
    .support-footer {
      margin-top: 40px;
      padding-top: 28px;
      border-top: 2px solid rgba(244, 59, 107, 0.10);
      text-align: center;
    }
    .support-footer .footer-links { display: flex; justify-content: center; gap: 32px; font-size: 0.9rem; flex-wrap: wrap; }
    .support-footer .footer-links a {
      color: #4a6a84;
      text-decoration: none;
      transition: 0.2s;
      font-weight: 500;
    }
    .support-footer .footer-links a:hover { color: #f43b6b; }
    .support-footer .copyright { color: #8aa4bc; font-size: 0.8rem; margin-top: 16px; }
    .support-footer .dev-by {
      color: #4a6a84;
      font-size: 0.8rem;
      margin-top: 6px;
    }
    .support-footer .dev-by a {
      color: #f43b6b;
      font-weight: 700;
      text-decoration: none;
    }

    /* ----- ALERT MODAL ----- */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease;
      padding: 20px;
      overflow-y: auto;
    }
    .modal-overlay.active { display: flex; }

    .alert-modal .modal-content {
      background: #ffffff;
      border-radius: 40px;
      padding: 40px 34px 34px;
      max-width: 440px;
      width: 100%;
      position: relative;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
      animation: slideUp 0.35s ease;
      text-align: center;
      margin: auto;
    }
    .alert-modal .modal-content .alert-icon { font-size: 4rem; margin-bottom: 12px; display: block; }
    .alert-modal .modal-content .alert-icon.success { color: #25d366; }
    .alert-modal .modal-content .alert-icon.error { color: #f43b6b; }
    .alert-modal .modal-content .alert-icon.warning { color: #ff9a56; }
    .alert-modal .modal-content .alert-icon.info { color: #2a7de1; }
    .alert-modal .modal-content h3 { font-size: 1.5rem; font-weight: 800; color: #072033; margin-bottom: 8px; }
    .alert-modal .modal-content p { color: #4a6a84; font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
    .alert-modal .modal-content p strong { color: #f43b6b; }
    .alert-modal .modal-content .btn-alert {
      padding: 12px 40px;
      border: none;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.25s;
      background: linear-gradient(145deg, #f43b6b, #ff6b8a);
      color: white;
      box-shadow: 0 8px 24px rgba(244, 59, 107, 0.25);
    }
    .alert-modal .modal-content .btn-alert:hover { transform: scale(1.02); box-shadow: 0 12px 32px rgba(244, 59, 107, 0.35); }
    .alert-modal .modal-content .btn-alert.success-btn { background: linear-gradient(145deg, #25d366, #128C7E); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25); }
    .alert-modal .modal-content .btn-alert.success-btn:hover { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35); }
    .alert-modal .modal-content .btn-alert.warning-btn { background: linear-gradient(145deg, #ff9a56, #f5a623); box-shadow: 0 8px 24px rgba(255, 154, 86, 0.25); }
    .alert-modal .modal-content .btn-alert.warning-btn:hover { box-shadow: 0 12px 32px rgba(255, 154, 86, 0.35); }
    .alert-modal .modal-content .btn-alert.error-btn { background: linear-gradient(145deg, #f43b6b, #d63031); box-shadow: 0 8px 24px rgba(244, 59, 107, 0.25); }
    .alert-modal .modal-content .btn-alert.error-btn:hover { box-shadow: 0 12px 32px rgba(244, 59, 107, 0.35); }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(244, 59, 107, 0.08);
      border: 2px solid rgba(244, 59, 107, 0.15);
      color: #f43b6b;
      font-size: 1.4rem;
      cursor: pointer;
      transition: 0.25s;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      line-height: 1;
    }
    .modal-close:hover {
      background: linear-gradient(145deg, #f43b6b, #ff6b8a);
      color: white;
      transform: rotate(90deg) scale(1.05);
      box-shadow: 0 8px 24px rgba(244, 59, 107, 0.30);
      border-color: #f43b6b;
    }

    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes slideUp {
      from { transform: translateY(30px) scale(0.96); opacity: 0; }
      to { transform: translateY(0) scale(1); opacity: 1; }
    }

    /* ============================================================ */
    /* 📱 RESPONSIVIDADE                                             */
    /* ============================================================ */
    @media (max-width: 768px) {
      body { padding: 12px; }
      .support-card { padding: 32px 24px 28px; border-radius: 32px; }
      .support-header h1 { font-size: 1.8rem; }
      .support-header .logo { font-size: 1.7rem; }
      .support-header .logo i { font-size: 1.9rem; }

      .quick-contacts { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .contact-card { padding: 18px 14px; border-radius: 20px; }
      .contact-card i { font-size: 2rem; }

      .support-footer .footer-links { flex-direction: column; gap: 12px; align-items: center; }

      .btn-float-home { bottom: 20px; left: 20px; width: 48px; height: 48px; font-size: 1.2rem; }
      .btn-submit { width: 100%; justify-content: center; }

      .modal-overlay { padding: 16px; align-items: flex-start; }
      .alert-modal .modal-content { margin: auto 0; }
    }

    @media (max-width: 480px) {
      body { padding: 8px; }
      .support-card { padding: 24px 16px 20px; border-radius: 28px; }
      .support-header .logo { font-size: 1.5rem; }
      .support-header .logo i { font-size: 1.7rem; }
      .support-header h1 { font-size: 1.5rem; }
      .support-header p { font-size: 0.9rem; }

      .quick-contacts { grid-template-columns: 1fr 1fr; gap: 10px; }
      .contact-card { padding: 14px 12px; border-radius: 16px; }
      .contact-card i { font-size: 1.6rem; }
      .contact-card h4 { font-size: 0.85rem; }
      .contact-card p { font-size: 0.72rem; }
      .contact-card .label { font-size: 0.55rem; padding: 2px 8px; }

      .faq-section h2 { font-size: 1.15rem; }
      .faq-question { padding: 14px 16px; font-size: 0.9rem; }
      .faq-answer { font-size: 0.9rem; }
      .faq-item.active .faq-answer { padding: 0 16px 16px; }

      .contact-form-section h2 { font-size: 1.15rem; }
      .form-group input,
      .form-group textarea,
      .form-group select { padding: 12px 14px; font-size: 0.9rem; border-radius: 16px; }

      .alert-modal .modal-content { padding: 30px 20px 24px; border-radius: 32px; }
      .alert-modal .modal-content .alert-icon { font-size: 3rem; }
      .alert-modal .modal-content h3 { font-size: 1.3rem; }
      .alert-modal .modal-content p { font-size: 0.9rem; }
      .modal-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 1rem; }

      .btn-float-home { bottom: 16px; left: 16px; width: 44px; height: 44px; font-size: 1rem; }
      .btn-submit { padding: 12px 32px; font-size: 0.9rem; }
    }

    @media (max-width: 380px) {
      .quick-contacts { grid-template-columns: 1fr 1fr; gap: 8px; }
      .contact-card { padding: 12px 10px; }
      .contact-card i { font-size: 1.4rem; }
      .contact-card h4 { font-size: 0.75rem; }
      .contact-card p { font-size: 0.68rem; }
      .contact-card .label { font-size: 0.5rem; padding: 1px 8px; }
    }