*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 0 24px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15,23,42,0); backdrop-filter: blur(0px);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(15,23,42,0.92); backdrop-filter: blur(8px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.15);
}
.nav-logo {
  font-size: 1rem; font-weight: 700; color: #fff;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  opacity: 0; transition: opacity 0.3s;
}
.nav.scrolled .nav-logo { opacity: 1; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; padding: 4px; }
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 56px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(15,23,42,0.97); backdrop-filter: blur(8px);
    padding: 8px 16px 16px; transform: translateY(-110%); transition: transform 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 12px 14px; border-radius: 10px; }
  .nav-toggle { display: block; }
}

body { padding-top: 56px; }

.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e1b4b 100%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 50%, rgba(99,102,241,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(168,85,247,0.08) 0%, transparent 50%);
  z-index: -1;
  animation: heroGlow 15s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-2%, 2%) rotate(2deg); }
}
.hero-content { position: relative; z-index: 1; }

.avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 0 8px rgba(99,102,241,0.2), 0 20px 60px rgba(0,0,0,0.3);
  margin-bottom: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 12px rgba(99,102,241,0.3), 0 30px 80px rgba(0,0,0,0.4);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.hero h1 span { background: linear-gradient(135deg, #818cf8, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero .tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 8px;
}
.hero .description {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 32px;
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}
.hero-links a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.hero-links a svg { width: 20px; height: 20px; flex-shrink: 0; }
.bookmark-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid rgba(251,191,36,0.4);
  background: rgba(251,191,36,0.12);
  color: #fbbf24;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.bookmark-btn:hover {
  background: rgba(251,191,36,0.2);
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251,191,36,0.15);
}
.bookmark-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.bookmark-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(6px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bookmark-modal.active { display: flex; }
.bookmark-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  animation: bmIn 0.3s ease-out;
}
@keyframes bmIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.bookmark-card .star {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(251,191,36,0.35);
}
.bookmark-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.bookmark-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
}
.bookmark-card .shortcut {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 12px 24px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}
.bookmark-card .shortcut kbd {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.bookmark-card .close-bm {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}
.bookmark-card .close-bm:hover { background: #e2e8f0; }

.section {
  padding: 60px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.section-header p {
  color: #64748b;
  font-size: 1.05rem;
  margin-top: 8px;
}
.section-header i {
  color: #6366f1;
  margin-right: 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: cardFadeIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.15s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.25s; }
.card:nth-child(5) { animation-delay: 0.3s; }
.card:nth-child(6) { animation-delay: 0.35s; }
.card:nth-child(7) { animation-delay: 0.4s; }
.card:nth-child(8) { animation-delay: 0.45s; }
.card:nth-child(9) { animation-delay: 0.5s; }
.card:nth-child(10) { animation-delay: 0.55s; }
.card:nth-child(11) { animation-delay: 0.6s; }
.card:nth-child(12) { animation-delay: 0.65s; }

@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15), 0 0 0 2px rgba(99,102,241,0.25);
  border-color: #c7d2fe;
}
.card:active { transform: translateY(-4px) scale(0.99); }

.card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #e2e8f0;
}
.card:hover .card-thumb {
  transform: scale(1.06);
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease;
}
.card:hover .card-thumb img {
  transform: scale(1.08);
}

.card-thumb .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover .card-thumb .overlay { opacity: 1; }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}
.card:hover .card-badge {
  opacity: 1;
  transform: translateY(0);
}
.card-badge.badge-commission { background: rgba(22,101,52,0.85); }
.card-badge.badge-free { background: rgba(71,85,105,0.85); }

.card-body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.card-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  background: #f1f5f9;
  color: #475569;
  padding: 2px 10px;
  border-radius: 10px;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.card-actions .btn {
  flex: 1;
  text-align: center;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-preview {
  flex: 0 0 40px;
  padding: 0;
  background: #eef2ff;
  color: #4f46e5;
}
.btn-preview:hover {
  background: #e0e7ff;
  color: #4338ca;
}
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,0.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: #f1f5f9;
  color: #334155;
}
.btn-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.card-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.card-pricing .price-launch {
  font-size: 1.2rem;
  font-weight: 800;
  color: #16a34a;
}

.ml-badge {
  background: #ffe600;
  color: #333;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}
.ml-store { font-size: 0.7rem; color: #64748b; }
.ml-header { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.ml-title { font-size: 0.9rem; margin-bottom: 6px; }
.ml-discount {
  background: #ff6000 !important;
  left: auto !important;
  right: 12px !important;
  opacity: 1 !important;
  transform: none !important;
}
.ml-btn {
  flex: 1; text-align: center; padding: 9px 10px; border-radius: 10px;
  font-size: 0.82rem; font-weight: 600; text-decoration: none;
  font-family: inherit; color: #fff !important;
  background: linear-gradient(135deg,#ff6000,#ff8c00) !important;
  box-shadow: 0 2px 8px rgba(255,96,0,0.25);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.ml-btn:hover { box-shadow: 0 6px 20px rgba(255,96,0,0.35); transform: translateY(-1px); }
.ml-search-bar { display:flex; gap:12px; max-width:640px; margin:0 auto; }
.ml-search-bar input { flex:1; padding:14px 20px; border-radius:12px; border:2px solid #e2e8f0; font-size:1rem; font-family:inherit; outline:none; transition:border-color 0.3s; }
.ml-search-bar input:focus { border-color:#ff6000; box-shadow:0 0 0 3px rgba(255,96,0,0.1); }
.ml-search-bar button { padding:14px 28px; border-radius:12px; border:none; background:linear-gradient(135deg,#ff6000,#ff8c00); color:#fff; font-weight:700; font-size:0.95rem; cursor:pointer; font-family:inherit; display:flex; align-items:center; gap:8px; transition:transform 0.2s,box-shadow 0.2s; white-space:nowrap; }
.ml-search-bar button:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(255,96,0,0.35); }
@media (max-width:640px) { .ml-search-bar { flex-direction:column; } .ml-search-bar button { justify-content:center; } }
.ml-search-status { text-align:center; padding:60px 20px; color:#64748b; grid-column:1/-1; }
.ml-search-status i { font-size:3rem; margin-bottom:16px; display:block; }
.fb-thumb { display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#fef3c7,#fde68a); position:relative; }
.fb-thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; padding:12px; background:#fff; }
.fb-icon { font-size:3rem; color:#d97706; }
.fb-loading { position:absolute; top:8px; left:8px; font-size:0.8rem; color:#d97706; }
.card-pricing .price-normal {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.divider {
  margin: 0 auto;
  border: 0;
  height: 1px;
  max-width: 600px;
  background: linear-gradient(to right, transparent, #cbd5e1, transparent);
}

.cta-section {
  text-align: center;
  padding: 60px 0;
}
.cta-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.cta-section p {
  color: #475569;
  margin-bottom: 20px;
}
.cta-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #f77737);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(253,29,29,0.3);
}
.cta-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(253,29,29,0.4);
}

.contact-section {
  padding: 60px 0 80px;
}
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
}
.contact-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  font-size: 1rem;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.contact-form input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.contact-form input::placeholder { color: #94a3b8; }

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  font-family: inherit;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.contact-btn:active { transform: translateY(0); }
.contact-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
footer p {
  color: #94a3b8;
  font-size: 0.9rem;
}
footer a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}
footer a:hover { text-decoration: underline; }

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.active { display: flex; }

.modal-content {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  height: 85vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.25s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.modal-header h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.modal-close {
  flex-shrink: 0;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: #f1f5f9; }

.modal-body {
  flex: 1;
  position: relative;
  background: #f8fafc;
}
.modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.9rem;
  gap: 8px;
}

.modal-open { overflow: hidden; }

/* ===== Formulários ===== */
.form-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
}
.form-section .section-header h2 i { color: #8b5cf6; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.form-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 20px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.form-card:hover::before { opacity: 1; }
.form-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px -12px rgba(99,102,241,0.25), 0 0 0 2px rgba(99,102,241,0.15);
  background: rgba(255,255,255,0.95);
  border-color: #c7d2fe;
}
.form-card:active { transform: translateY(-2px) scale(0.98); }
.form-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  transition: transform 0.3s ease;
}
.form-card:hover .form-card-icon { transform: scale(1.1); }
.form-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.form-card-count {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}
.form-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6366f1;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}
.form-card:hover .form-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .form-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .form-card { padding: 20px 14px 16px; }
  .form-card-icon { width: 44px; height: 44px; font-size: 1.3rem; }
}

@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 60px 0 40px; }
  .hero .tagline { font-size: 1rem; }
  .grid { grid-template-columns: 1fr; gap: 16px; }
  .section-header h2 { font-size: 1.5rem; }
  .card-body { padding: 16px; }
  .card-body h3 { font-size: 0.95rem; }
  .avatar { width: 100px; height: 100px; }
  .hero-links a { width: 100%; justify-content: center; }
  .modal-content {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    max-width: 100%;
  }
  .modal-overlay { padding: 0; }
}
  
