/* ============================================
   DiskDiaristas - Main Stylesheet
   Colors: #000080 (navy blue), #FFFFFF (white)
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #000080;
  --primary-dark: #000060;
  --primary-light: #1a1aaa;
  --primary-bg: #f0f0ff;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --success: #059669;
  --success-bg: #d1fae5;
  --warning: #d97706;
  --warning-bg: #fef3c7;
  --danger: #dc2626;
  --danger-bg: #fee2e2;
  --info: #2563eb;
  --info-bg: #dbeafe;
  --premium: #f59e0b;
  --premium-bg: #fffbeb;
  --whatsapp: #25d366;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.2s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--primary-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Container === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Header === */
.header {
  background: var(--white);
  color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 1.25rem;
}
.logo:hover { color: var(--primary); }
.logo-icon { font-size: 1.5rem; }
.logo-text { font-weight: 300; }
.logo-text strong { font-weight: 700; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--primary-dark); }

.nav-link.btn-outline {
  border: 1.5px solid var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
}
.nav-link.btn-outline:hover {
  background: rgba(0,0,128,0.05);
  border-color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-highlight {
  color: #60a5fa;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search {
  max-width: 700px;
  margin: 0 auto;
}

/* === Search Form === */
.search-form {
  margin-bottom: 2rem;
}

.search-input-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.input-lg, .select-lg {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  flex: 1;
  min-width: 150px;
  transition: border-color var(--transition);
}
.input-lg:focus, .select-lg:focus {
  outline: none;
  border-color: var(--primary);
}

.search-info {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* === Highlight Card === */
.highlight-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  text-align: center;
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}
.highlight-card strong {
  color: var(--white);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
}
.btn-danger:hover { background: #b91c1c; color: var(--white); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe57; color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { background: var(--gray-100); color: var(--primary); }

.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.875rem; font-size: 0.825rem; }
.btn-xs { padding: 0.25rem 0.625rem; font-size: 0.75rem; }
.btn-block { width: 100%; }

/* === Section === */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gray-900);
}

.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* === Steps === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.step-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* === Categories Grid === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-decoration: none;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--primary);
}

.category-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.category-card h3 { font-size: 1rem; color: var(--gray-800); }

/* === CTA === */
.cta-section { padding: 4rem 0; }
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
}
.cta-box h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.cta-box p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.05rem; }

/* === Professional Cards === */
.professionals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.professional-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
}
.professional-card:hover {
  box-shadow: var(--shadow-md);
}
.professional-card.premium {
  border-color: var(--premium);
  background: var(--premium-bg);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-premium { background: var(--premium); color: var(--white); }
.badge-inactive { background: var(--gray-200); color: var(--gray-600); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-info { background: var(--info-bg); color: var(--info); }
.badge-secondary { background: var(--gray-100); color: var(--gray-600); }
.badge-lg { font-size: 0.85rem; padding: 0.35rem 1rem; }

.prof-card-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.prof-avatar {
  flex-shrink: 0;
}

.prof-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.avatar-placeholder.large {
  width: 120px;
  height: 120px;
  font-size: 3rem;
}

.prof-avatar.large img {
  width: 120px;
  height: 120px;
}

.prof-card-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.prof-category {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.prof-location {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.prof-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stars { display: inline-flex; gap: 2px; }
.star { color: var(--gray-300); font-size: 1rem; }
.star.filled { color: var(--premium); }
.stars.small .star { font-size: 0.85rem; }

.rating-text {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.prof-bio-preview {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.prof-card-actions {
  display: flex;
  gap: 0.75rem;
}

/* === Profile Page === */
.profile-page {
  max-width: 800px;
  margin: 0 auto;
}

.profile-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.profile-avatar img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.profile-info h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.profile-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.contact-unavailable {
  background: var(--gray-100);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.profile-section {
  margin-bottom: 2rem;
}
.profile-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-bg);
}

.profile-bio {
  color: var(--gray-600);
  line-height: 1.7;
  white-space: pre-wrap;
}

/* === Reviews === */
.review-form-section {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.review-form-section h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.star-rating-input {
  display: flex;
  gap: 4px;
  font-size: 1.75rem;
  cursor: pointer;
}
.star-input {
  color: var(--gray-300);
  transition: color var(--transition);
}
.star-input.active, .star-input:hover {
  color: var(--premium);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-item {
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.review-date {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.review-comment {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* === Forms === */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,0,128,0.1);
}

textarea.form-control { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.form-message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* === Auth === */
.auth-page {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.auth-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
}
.auth-card-wide {
  max-width: 640px;
}

.auth-card h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.auth-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.auth-links a { font-weight: 600; }

/* === Alerts === */
.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.alert-error { background: var(--danger-bg); color: var(--danger); }
.alert-success { background: var(--success-bg); color: var(--success); }
.alert-warning { background: var(--warning-bg); color: var(--warning); }
.alert-info { background: var(--info-bg); color: var(--info); }

/* === Dashboard === */
.btn-premium-header {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.btn-premium-header:hover {
  background: var(--primary-light);
  color: var(--white);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.dashboard-header h1 { font-size: 1.5rem; }

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.dash-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.status-info .badge { margin-bottom: 0.5rem; }

.rating-big {
  text-align: center;
}
.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-900);
  display: block;
}

.profile-link-box {
  display: flex;
  gap: 0.5rem;
}
.profile-link-box .form-control {
  font-size: 0.8rem;
}

.dash-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.dash-section h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-100);
}

.photo-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.photo-form {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.page-info {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* === Empty State === */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}
.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.empty-state h2, .empty-state h3 {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}
.empty-state p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* === Footer === */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; }

.footer-links h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.footer-links a {
  display: block;
  color: var(--gray-400);
  padding: 0.25rem 0;
  font-size: 0.875rem;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* === Utilities === */
.text-muted { color: var(--gray-500); font-size: 0.9rem; }
.text-center { text-align: center; }
.inline-form { display: flex; gap: 0.75rem; align-items: flex-end; flex-wrap: wrap; }

/* === Responsive === */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    gap: 0.75rem;
  }
  .nav-toggle { display: flex; }

  .hero-content h1 { font-size: 1.75rem; }
  .hero { padding: 2.5rem 0; }

  .search-input-group { flex-direction: column; }
  .search-input-group .btn { width: 100%; }

  .professionals-grid {
    grid-template-columns: 1fr;
  }

  .profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .auth-card { padding: 1.5rem; }

  .photo-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   Checkout Transparente
   ============================================ */
.checkout-container { max-width: 640px; margin: 0 auto; }
.checkout-header { text-align: center; margin-bottom: 2rem; }
.checkout-header h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }

.checkout-plan {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.plan-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.5rem 0;
}
.plan-price span { font-size: 1rem; font-weight: 400; color: #6c757d; }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: left;
  display: inline-block;
}
.plan-features li { padding: 0.3rem 0; font-size: 0.95rem; }

.checkout-methods { margin-bottom: 1.5rem; }
.checkout-methods h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.method-tabs {
  display: flex;
  gap: 0.5rem;
}
.method-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
}
.method-tab:hover { border-color: var(--primary); }
.method-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.method-icon { display: block; font-size: 1.3rem; margin-bottom: 0.25rem; }

.checkout-card-form {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.checkout-card-form h3 { margin-bottom: 1rem; font-size: 1.1rem; }

.btn-lg { padding: 0.9rem 2rem; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; }

.checkout-result {
  margin-top: 1.5rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  text-align: center;
}
.result-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.result-success h3 { color: #198754; }

.pix-qrcode {
  max-width: 250px;
  margin: 1rem auto;
  display: block;
  border-radius: 8px;
}
.pix-copy-area {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
}
.pix-copy-area .form-control {
  flex: 1;
  font-size: 0.85rem;
  font-family: monospace;
}

@media (max-width: 600px) {
  .method-tabs { flex-direction: column; }
  .pix-copy-area { flex-direction: column; }
}

/* ============================================
   Termos de Uso
   ============================================ */
.terms-page { max-width: 800px; margin: 0 auto; }
.terms-page h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.terms-page h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--primary); }
.terms-page p { margin-bottom: 0.75rem; line-height: 1.7; }
.terms-notice {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* Checkbox de termos */
.terms-check { margin-top: 0.5rem; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.checkbox-label a { color: var(--primary); text-decoration: underline; }
