/* ===== SIGNIFICADO DOS NOMES - ESTILOS PRINCIPAIS ===== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&family=Pacifico&display=swap');

/* ===== VARIÁVEIS ===== */
:root {
  --pink-50: #fff0f6;
  --pink-100: #ffe0ee;
  --pink-200: #ffb3d1;
  --pink-300: #ff80b3;
  --pink-400: #ff4d95;
  --pink-500: #ff1a78;
  --pink-600: #e6006b;
  --blue-50: #f0f8ff;
  --blue-100: #dbeeff;
  --blue-200: #a8d8ff;
  --blue-300: #6bbfff;
  --blue-400: #2ea7ff;
  --blue-500: #0090f0;
  --blue-600: #0073cc;
  --purple-100: #f0e6ff;
  --purple-300: #c084fc;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(255, 105, 180, 0.12);
  --shadow-md: 0 4px 20px rgba(255, 105, 180, 0.18);
  --shadow-lg: 0 8px 32px rgba(255, 105, 180, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(135deg, #fff0f6 0%, #f0f8ff 50%, #fff0f6 100%);
  min-height: 100vh;
  color: var(--gray-700);
  overflow-x: hidden;
}

/* ===== BACKGROUND DECORATIVO ===== */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 182, 213, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(107, 191, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 60% 10%, rgba(192, 132, 252, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(135deg, #ff6eb4 0%, #ff9ecd 40%, #7ec8f0 100%);
  padding: 2rem 1rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 110, 180, 0.3);
}

.site-header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.header-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.site-header h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

.site-header p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  margin-top: 0.6rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ===== NAVEGAÇÃO ===== */
.main-nav {
  background: white;
  box-shadow: 0 2px 12px rgba(255, 110, 180, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: var(--transition);
  border: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  background: linear-gradient(135deg, var(--pink-100), var(--blue-100));
  color: #d63384;
  border-color: var(--pink-200);
  transform: translateY(-1px);
}

/* ===== MAIN CONTAINER ===== */
.main-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}

/* ===== CARDS GENÉRICOS ===== */
.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(255, 182, 213, 0.25);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d63384;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--pink-200), transparent);
  border-radius: 2px;
}

/* ===== SEÇÃO DE BUSCA ===== */
.search-section {
  margin-bottom: 2rem;
}

.search-box-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.5rem;
  border-radius: var(--radius-xl);
  border: 2.5px solid var(--pink-200);
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-700);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  outline: none;
}

.search-input:focus {
  border-color: #ff6eb4;
  box-shadow: 0 0 0 4px rgba(255, 110, 180, 0.15), var(--shadow-sm);
}

.search-input::placeholder {
  color: var(--pink-300);
  font-weight: 500;
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--pink-400);
}

.search-btn {
  margin-top: 1rem;
  display: block;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(135deg, #ff6eb4, #7ec8f0);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 110, 180, 0.35);
}

.search-btn:hover {
  background: linear-gradient(135deg, #e6005f, #0090f0);
  box-shadow: 0 6px 20px rgba(255, 110, 180, 0.45);
  transform: translateY(-2px);
}

/* ===== RESULTADO DA BUSCA ===== */
#search-results {
  margin-top: 1.5rem;
}

.result-card {
  background: linear-gradient(135deg, #fff0f6, #f0f8ff);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 2px solid var(--pink-200);
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.result-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.result-name {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #d63384;
  line-height: 1.1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-feminino { background: var(--pink-100); color: #c2185b; }
.badge-masculino { background: var(--blue-100); color: #0073cc; }
.badge-unissex { background: var(--purple-100); color: #7c3aed; }

.result-origem {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 600;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.result-item {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  border: 1.5px solid var(--pink-100);
}

.result-item h4 {
  color: #d63384;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.result-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.numerology-badge {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6eb4, #7ec8f0);
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 110, 180, 0.3);
}

.no-result {
  text-align: center;
  padding: 2.5rem;
  color: var(--gray-500);
}

.no-result .no-result-emoji { font-size: 3rem; display: block; margin-bottom: 1rem; }
.no-result h3 { color: var(--gray-700); font-size: 1.2rem; margin-bottom: 0.5rem; }

/* ===== SUGESTÕES DE BUSCA ===== */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid var(--pink-200);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  overflow: hidden;
  animation: fadeInUp 0.2s ease;
}

.suggestion-item {
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.95rem;
}

.suggestion-item:hover { background: var(--pink-50); }

.suggestion-item .sug-name { color: var(--gray-700); }
.suggestion-item .sug-origin { color: var(--gray-500); font-size: 0.82rem; font-weight: 500; }

/* ===== TOP 10 ===== */
.top10-list { display: flex; flex-direction: column; gap: 0.7rem; }

.top10-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: white;
  border: 1.5px solid var(--pink-100);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.top10-item:hover {
  background: linear-gradient(135deg, var(--pink-50), var(--blue-50));
  border-color: var(--pink-300);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.top10-rank {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem;
  flex-shrink: 0;
}

.rank-1 { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #7a5800; }
.rank-2 { background: linear-gradient(135deg, #e8e8e8, #c0c0c0); color: #555; }
.rank-3 { background: linear-gradient(135deg, #ffb87a, #cd7f32); color: #7a3e00; }
.rank-other { background: linear-gradient(135deg, var(--pink-100), var(--blue-100)); color: #d63384; }

.top10-name { font-weight: 800; font-size: 1rem; color: var(--gray-700); }
.top10-info { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; }
.top10-count { margin-left: auto; font-size: 0.8rem; color: var(--pink-400); font-weight: 700; display: flex; align-items: center; gap: 0.3rem; }

/* ===== LISTAGEM A-Z ===== */
.az-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.az-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--pink-200);
  background: white;
  color: #d63384;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.az-btn:hover, .az-btn.active {
  background: linear-gradient(135deg, #ff6eb4, #7ec8f0);
  border-color: transparent;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(255, 110, 180, 0.3);
}

.az-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.az-section { margin-bottom: 2rem; }

.az-letter-header {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: #d63384;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed var(--pink-200);
}

.az-names-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.7rem;
}

.az-name-card {
  background: white;
  border: 1.5px solid var(--pink-100);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}

.az-name-card:hover {
  background: linear-gradient(135deg, var(--pink-50), var(--blue-50));
  border-color: var(--pink-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.az-name-text { font-weight: 700; color: var(--gray-700); font-size: 0.95rem; }
.az-name-origin { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }

/* ===== BLOCO SEO DE CONTEÚDO ===== */
.seo-content-block {
  margin-top: 2.5rem;
}

/* Intro */
.seo-intro {
  background: linear-gradient(135deg, #fdf2fb 0%, #f0f4ff 100%);
  border-radius: 18px;
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(123,31,162,0.09);
}
.seo-intro h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-800);
  margin: 0 0 0.9rem;
  line-height: 1.3;
}
.seo-intro p {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0 0 0.7rem;
}
.seo-intro p:last-child { margin-bottom: 0; }
.seo-intro strong { color: var(--primary); }
.seo-intro em { font-style: normal; font-weight: 700; color: var(--gray-700); }

/* Quick Links */
.seo-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 500px) {
  .seo-quick-links { grid-template-columns: 1fr; }
}
.seo-ql-card {
  background: white;
  border: 1.5px solid rgba(123,31,162,0.12);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.seo-ql-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(123,31,162,0.15);
}
.seo-ql-icon { font-size: 1.7rem; }
.seo-ql-title { font-size: 0.9rem; font-weight: 800; color: var(--gray-800); }
.seo-ql-sub { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }

/* FAQ */
.seo-faq {
  background: white;
  border-radius: 18px;
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(123,31,162,0.08);
}
.seo-faq h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-800);
  margin: 0 0 1.3rem;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0.2rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 0.9rem 0.4rem;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.75;
  padding: 0 0.4rem 1rem;
  margin: 0;
}
.faq-item p strong { color: var(--gray-700); font-weight: 700; }
.faq-item p em { font-style: normal; color: var(--primary); font-weight: 600; }

/* Categories grid */
.seo-categories {
  background: white;
  border-radius: 18px;
  padding: 1.8rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(123,31,162,0.08);
}
.seo-categories h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-800);
  margin: 0 0 1.2rem;
}
.seo-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
@media (max-width: 600px) {
  .seo-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
  .seo-cat-grid { grid-template-columns: 1fr; }
}
.seo-cat-card {
  background: linear-gradient(135deg, #fdf2fb, #f0f4ff);
  border: 1.5px solid rgba(123,31,162,0.1);
  border-radius: 14px;
  padding: 1rem 0.8rem;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.22s;
}
.seo-cat-card:hover {
  background: linear-gradient(135deg, #7b1fa2, #c2185b);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(123,31,162,0.25);
}
.seo-cat-card:hover strong,
.seo-cat-card:hover small { color: white; }
.seo-cat-card span { font-size: 1.6rem; }
.seo-cat-card strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gray-800);
  display: block;
  transition: color 0.2s;
}
.seo-cat-card small {
  font-size: 0.72rem;
  color: var(--gray-500);
  display: block;
  transition: color 0.2s;
}

/* Card destaque artigo especial */
.seo-destaque-link {
  display: block;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.seo-destaque {
  background: linear-gradient(135deg, #1a0533 0%, #7b1fa2 50%, #c2185b 100%);
  border-radius: 18px;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(123,31,162,0.25);
}
.seo-destaque:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(123,31,162,0.35);
}
.seo-destaque-left { flex: 1; }
.seo-destaque-tag {
  display: inline-block;
  background: rgba(255,215,0,0.2);
  border: 1px solid rgba(255,215,0,0.5);
  color: #ffd700;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 10px;
  margin-bottom: 0.55rem;
}
.seo-destaque h3 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.seo-destaque p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.55;
}
.seo-destaque-arrow {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.seo-destaque:hover .seo-destaque-arrow { transform: translateX(4px); }

/* Esconde bloco SEO quando há resultado de busca */
.seo-content-block.hidden { display: none; }

/* ===== SEÇÃO SOBRE NÓS ===== */

/* Hero */
.sobre-hero {
  background: linear-gradient(135deg, #7b1fa2 0%, #c2185b 50%, #ff6eb4 100%);
  border-radius: 20px;
  padding: 2.8rem 2rem 2.4rem;
  text-align: center;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.sobre-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.sobre-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.sobre-hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.25);
  border: 1.5px solid rgba(255,215,0,0.7);
  color: #ffd700;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.sobre-hero-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.sobre-hero-sub {
  font-size: 1rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}

/* Stats */
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .sobre-stats { grid-template-columns: repeat(2, 1fr); }
}
.sobre-stat-card {
  background: white;
  border-radius: 16px;
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(123,31,162,0.10);
  border: 1.5px solid rgba(123,31,162,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sobre-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(123,31,162,0.18);
}
.sobre-stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, #7b1fa2, #c2185b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.sobre-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Cards gerais */
.sobre-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 2rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(123,31,162,0.07);
}
.sobre-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-800);
  margin: 0 0 1.2rem;
}
.sobre-card p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.9rem;
  font-size: 0.97rem;
}
.sobre-card p:last-child { margin-bottom: 0; }
.sobre-card p strong { color: var(--primary); }

.sobre-section-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  display: block;
}

/* Features grid */
.sobre-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 700px) {
  .sobre-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sobre-features-grid { grid-template-columns: 1fr; }
}
.sobre-feature {
  background: linear-gradient(135deg, #fdf2fb, #f0f7ff);
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid rgba(123,31,162,0.08);
}
.sobre-feature-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.5rem;
}
.sobre-feature h3 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gray-800);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.sobre-feature p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

/* Trust list */
.sobre-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sobre-trust-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.sobre-trust-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-800);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.sobre-trust-list li p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* Tags de categorias */
.sobre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.sobre-tag {
  background: linear-gradient(135deg, #fdf2fb, #f0f7ff);
  border: 1.5px solid rgba(123,31,162,0.15);
  color: #7b1fa2;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  transition: all 0.2s;
  cursor: default;
}
.sobre-tag:hover {
  background: linear-gradient(135deg, #7b1fa2, #c2185b);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* CTA final */
.sobre-cta {
  background: linear-gradient(135deg, #1a237e, #7b1fa2, #c2185b);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: white;
  margin-bottom: 1.5rem;
}
.sobre-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.7rem;
}
.sobre-cta p {
  font-size: 0.95rem;
  opacity: 0.88;
  margin: 0 0 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.sobre-cta-btn {
  background: white;
  color: #7b1fa2;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.sobre-cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #c2185b, #7b1fa2, #1565c0);
  color: white;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff6eb4, #7ec8f0, #ffd700);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.footer-badge {
  display: inline-block;
  background: rgba(255,215,0,0.2);
  border: 1.5px solid rgba(255,215,0,0.6);
  color: #ffd700;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.site-footer p { font-size: 0.9rem; opacity: 0.92; font-weight: 600; margin: 0; }
.site-footer .footer-heart { animation: pulse 1.2s ease infinite; display: inline-block; }

.footer-since {
  font-size: 0.88rem !important;
  opacity: 0.85 !important;
  margin-top: 0.7rem !important;
  font-weight: 500 !important;
  max-width: 480px;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.5;
}

.footer-year-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 0.15rem 0.75rem;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  margin-right: 0.4rem;
  color: #fff;
}

.footer-copy {
  font-size: 0.75rem !important;
  opacity: 0.6 !important;
  margin-top: 1.1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
}

@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* ===== LOADING SPINNER ===== */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  gap: 0.5rem;
}

.loading-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pink-400);
  animation: bounce 0.8s ease infinite;
}

.loading-dot:nth-child(2) { animation-delay: 0.15s; background: var(--blue-400); }
.loading-dot:nth-child(3) { animation-delay: 0.3s; background: var(--purple-300); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--pink-100);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.3rem;
  border: none;
  background: transparent;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--gray-500);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tab-btn:hover { color: #d63384; }
.tab-btn.active {
  color: #d63384;
  border-bottom-color: #ff6eb4;
}

/* ===== ADMIN ===== */
.admin-section { display: none; }
.admin-section.active { display: block; }

/* Formulário Admin */
.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #d63384;
  margin-bottom: 0.4rem;
}

.form-label span { color: var(--gray-500); font-weight: 500; font-size: 0.8rem; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--pink-200);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-700);
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #ff6eb4;
  box-shadow: 0 0 0 3px rgba(255, 110, 180, 0.15);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }

.btn {
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-xl);
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6eb4, #7ec8f0);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 110, 180, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e6005f, #0090f0);
  box-shadow: 0 6px 20px rgba(255, 110, 180, 0.4);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #e05050, #c0392b);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  background: var(--gray-200);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.82rem; }

/* Tabela Admin */
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius-sm); border: 1.5px solid var(--pink-100); }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th {
  background: linear-gradient(135deg, var(--pink-50), var(--blue-50));
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 800;
  color: #d63384;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--pink-100);
  white-space: nowrap;
}

.admin-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--pink-50);
  color: var(--gray-700);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--pink-50); }
.admin-table .td-name { font-weight: 800; color: #d63384; }

/* Alertas */
.alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: fadeInUp 0.3s ease;
}

.alert-success { background: #d1fae5; color: #065f46; border: 1.5px solid #6ee7b7; }
.alert-error { background: #ffe4e6; color: #9f1239; border: 1.5px solid #fda4af; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1.5px solid #fcd34d; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(255, 110, 180, 0.3);
  animation: slideIn 0.3s ease;
  position: relative;
}

@keyframes slideIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--pink-100);
}

.modal-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.4rem;
  color: #d63384;
}

.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--pink-100);
  color: #d63384;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.modal-close:hover { background: var(--pink-200); transform: rotate(90deg); }

/* Admin login */
.admin-login {
  max-width: 400px;
  margin: 2rem auto;
  text-align: center;
}

.admin-login .lock-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.admin-login h2 {
  font-family: 'Pacifico', cursive;
  color: #d63384;
  margin-bottom: 0.5rem;
}

.admin-login p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* Paginação */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.page-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--pink-200);
  background: white;
  color: #d63384;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}

.page-btn:hover, .page-btn.active {
  background: linear-gradient(135deg, #ff6eb4, #7ec8f0);
  border-color: transparent;
  color: white;
}

.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  text-align: center;
  border: 1.5px solid var(--pink-100);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: #d63384;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .result-header { flex-direction: column; align-items: flex-start; }
  .result-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .az-names-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .card { padding: 1.4rem; }
  .modal { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .nav-container { gap: 0.3rem; }
  .nav-link { padding: 0.45rem 0.8rem; font-size: 0.82rem; }
  .result-name { font-size: 2rem; }
  .az-btn { width: 30px; height: 30px; font-size: 0.78rem; }
}

/* ===== GENDER ICONS ===== */
.gender-icon { font-size: 1.1rem; }

/* ===== SCROLLBAR CUSTOMIZADA ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--pink-50); }
::-webkit-scrollbar-thumb { background: var(--pink-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ff6eb4; }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-500);
}

.empty-state .empty-emoji { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.empty-state h3 { color: var(--gray-700); margin-bottom: 0.4rem; }
