/* ============================================
   Inclui Alto Tietê — Stylesheet
   Desenvolvido por Anderson Medeiros
   andersoncyber.com.br
   ============================================ */

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

:root {
  --purple: #6c3fc5;
  --purple2: #8b5cf6;
  --navy: #1e1b4b;
  --bg: #f9f7ff;
  --white: #ffffff;
  --gray: #6b7280;
  --light: #f3f0ff;
  --border: #e5e1f8;
  --hero-bg: #1e1b4b;
  --hero-text: #ffffff;
  --hero-sub-text: rgba(255, 255, 255, 0.65);
}

[data-theme="dark"] {
  --bg: #0b0920;
  --white: #131131;
  --navy: #ffffff;
  --border: #262254;
  --gray: #9ca3af;
  --hero-bg: #0b0920;
  --hero-text: #ffffff;
  --hero-sub-text: #9ca3af;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--navy);
  transition: background 0.3s, color 0.3s;
}

/* RAINBOW BAR */
.rainbow-bar {
  height: 5px;
  background: linear-gradient(90deg, #ef4444, #f97316, #eab308, #22c55e, #3b82f6, #8b5cf6, #ec4899);
}

/* DARK MODE TOGGLE */
.dark-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

/* HERO */
.hero {
  background: var(--hero-bg);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.hero-inner {
  padding: 56px 40px 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.logo-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-text-main {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.logo-text-main span { color: #c4b5fd; font-weight: 400; }

.logo-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

.hero-rainbow-deco {
  position: absolute;
  top: -40px;
  right: -60px;
  opacity: 0.12;
  pointer-events: none;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--hero-text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em { font-style: italic; color: #c4b5fd; }

.hero-sub {
  font-size: 1rem;
  color: var(--hero-sub-text);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-rainbow-base {
  display: flex;
  height: 8px;
  width: 100%;
}

.hero-rainbow-base div { flex: 1; }

/* BOTÕES */
.btn-white {
  background: #fff;
  color: #1e1b4b;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.btn-white:hover { transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); }

.btn-parceiro {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* NEON */
.neons-container-vibrant {
  position: absolute;
  bottom: 60px;
  right: -55px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(108, 63, 197, 0.6));
}

.neon-frame-glow { animation: neon-pulse-vibrant 1.5s ease-in-out infinite alternate; border-radius: 16px; }

.neon-frame-outer {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 6px;
  background: rgba(30, 27, 75, 0.85);
}

.neon-frame-inner {
  border: 3px solid #fff;
  border-radius: 12px;
  padding: 30px 65px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 15px #fff, inset 0 0 15px #fff;
  animation: neon-blink-vibrant 2s infinite;
}

.neon-icon-glow { margin-bottom: 4px; filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px #c4b5fd); }

.neon-content-vibrant {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.neon-text-main-vibrant {
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #c4b5fd, 0 0 40px #c4b5fd;
}

.neon-text-sub-vibrant {
  font-size: 11px;
  margin-top: 4px;
  color: #f3e8ff;
  text-shadow: 0 0 4px #fff, 0 0 8px rgba(139, 92, 246, 0.8);
}

.sparkle-vibrant {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  filter: drop-shadow(0 0 6px #fff);
  animation: sparkle-blink-vibrant 1.5s infinite;
}

.s1-vibrant { top: -12px; left: -12px; animation-delay: 0.2s; background: #ef4444; box-shadow: 0 0 10px #ef4444; }
.s2-vibrant { bottom: -12px; right: -12px; animation-delay: 0.5s; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.s3-vibrant { top: 40%; right: -16px; animation-delay: 0.8s; background: #eab308; box-shadow: 0 0 10px #eab308; }

@keyframes neon-pulse-vibrant {
  0% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.4); transform: scale(1); }
  100% { box-shadow: 0 0 25px rgba(139, 92, 246, 0.9), 0 0 10px #ec4899; transform: scale(1.02); }
}

@keyframes neon-blink-vibrant {
  0%, 100% { border-color: #fff; box-shadow: 0 0 15px #fff, inset 0 0 15px #fff; }
  50% { border-color: rgba(255, 255, 255, 0.4); box-shadow: 0 0 6px rgba(255, 255, 255, 0.4), inset 0 0 6px rgba(255, 255, 255, 0.4); }
}

@keyframes sparkle-blink-vibrant {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* FILTROS / CATEGORIAS */
.cats {
  padding: 56px 24px 0;
  max-width: 900px;
  margin: 0 auto;
}

.cats h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  margin-bottom: 24px;
  text-align: center;
}

.search-wrap {
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
}

.search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--navy);
}

.search-wrap input:focus { border-color: var(--purple); }

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
}

.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.cat-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.cat-btn:hover, .cat-btn.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

/* CARDS */
.listings { padding: 0 24px 80px; max-width: 900px; margin: 0 auto; }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--purple2);
  box-shadow: 0 8px 24px rgba(108, 63, 197, 0.1);
  transform: translateY(-2px);
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

.tag-saude     { background: #dcfce7; color: #166534; }
.tag-psico     { background: #dbeafe; color: #1e40af; }
.tag-juridico  { background: #fef3c7; color: #92400e; }
.tag-beleza    { background: #fce7f3; color: #9d174d; }
.tag-educacao  { background: #ede9fe; color: #5b21b6; }
.tag-alimentacao { background: #ffedd5; color: #9a3412; }
.tag-outro     { background: #f1f5f9; color: #475569; }

.card-name { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }

.card-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }

.badge { font-size: 11px; padding: 2px 8px; border-radius: 50px; border: 1px solid; }
.badge-lgbt    { background: #fdf4ff; color: #7e22ce; border-color: #e9d5ff; }
.badge-artista { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.badge-tdah    { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }

.card-contact { display: flex; flex-direction: column; gap: 6px; }
.card-contact a { font-size: 13px; color: var(--purple2); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.card-contact a:hover { text-decoration: underline; }
.card-city { font-size: 11px; color: var(--gray); margin-top: 8px; }

.empty { text-align: center; padding: 48px; color: var(--gray); font-size: 14px; display: none; }

/* ANUNCIE */
.anuncie {
  background: linear-gradient(135deg, #1e1b4b 0%, #3b1f8c 60%, var(--purple) 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.anuncie::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.anuncie h2 { font-family: 'DM Serif Display', serif; font-size: 2rem; color: #fff; margin-bottom: 12px; }
.anuncie > p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

.anuncie-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

.anuncie-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; display: inline-block; animation: pulse 2s infinite; }
.anuncie-badge span { font-size: 12px; color: rgba(255, 255, 255, 0.85); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }

.impact-row { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.impact-item { text-align: center; }
.impact-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: #c4b5fd; }
.impact-num.green { color: #4ade80; }
.impact-label { font-size: 12px; color: rgba(255, 255, 255, 0.55); margin-top: 4px; }
.impact-divider { width: 1px; background: rgba(255, 255, 255, 0.1); }

.plans-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.plan-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 28px;
  min-width: 200px;
  text-align: left;
}

.plan-card.highlight { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.4); }
.plan-name { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.plan-price { font-family: 'DM Serif Display', serif; font-size: 2rem; color: #fff; margin-bottom: 4px; }
.plan-price span { font-size: 14px; font-weight: 400; }
.plan-desc { font-size: 12px; color: rgba(255, 255, 255, 0.55); line-height: 1.6; }

.benefits-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.benefit-item { font-size: 13px; color: rgba(255, 255, 255, 0.65); display: flex; align-items: center; gap: 6px; }
.benefit-item .check { color: #4ade80; }

/* SOBRE */
.sobre { padding: 72px 24px; max-width: 640px; margin: 0 auto; text-align: center; }
.sobre h2 { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; }
.sobre p { color: var(--gray); line-height: 1.8; font-size: 0.95rem; }

/* FOOTER */
.footer {
  background: #1e1b4b;
  padding: 40px 24px;
  text-align: center;
}

.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.footer-logo-text { font-family: 'DM Serif Display', serif; font-size: 18px; color: #fff; font-weight: bold; }
.footer-logo-text span { color: #c4b5fd; font-weight: normal; }

.footer p { font-size: 13px; color: rgba(255, 255, 255, 0.45); line-height: 1.8; }
.footer a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-weight: 500; }
.footer a:hover { color: #c4b5fd; }

/* COOKIE BANNER */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1b4b;
  border-top: 3px solid #6c3fc5;
  padding: 16px 24px;
  z-index: 9999;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0; max-width: 700px; }
.cookie-banner a { color: #c4b5fd; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-recusar {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-cookie-aceitar {
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  background: #6c3fc5;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .neons-container-vibrant { bottom: 40px; right: 20px; transform: scale(0.8); }
}

@media (max-width: 600px) {
  .hero-inner { padding: 40px 24px 0; }
  .neons-container-vibrant { position: relative; bottom: 0; right: 0; margin: 30px auto 0; width: fit-content; transform: scale(0.9); }
  .plans-row { flex-direction: column; align-items: center; }
  .plan-card { width: 100%; max-width: 300px; }
  .impact-divider { display: none; }
}
/* ============================================
   Ajustes de Layout — Cidades e Depoimentos
   ============================================ */

/* Menu de Cidades Padronizado */
.city-filters-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  text-align: center;
  margin-bottom: 12px;
  margin-top: 16px;
}

.city-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.city-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.city-btn:hover, .city-btn.active {
  background: var(--purple2);
  color: #fff;
  border-color: var(--purple2);
}

/* Seção de Depoimentos em Grid Fluido */
.depoimentos {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.depoimentos h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.depoimentos .sub {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

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

.depo-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(108, 63, 197, 0.02);
}

.depo-text {
  font-size: 14px;
  color: var(--navy);
  opacity: 0.85;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.depo-text::before {
  content: '“';
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--purple2);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.depo-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.depo-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.depo-info p {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
}