/* ============================================================
   VARIÁVEIS E SISTEMA DE DESIGN - PALETA VERDE PASTEL
   ============================================================ */
:root {
  --bg-base: #eaf2ec;
  --bg-gradient: radial-gradient(circle at 50% 15%, #f4f8f5 0%, #e3ede6 55%, #d5e5da 100%);
  
  --card-bg: rgba(255, 255, 255, 0.65);
  --card-border: rgba(255, 255, 255, 0.85);
  --card-border-subtle: rgba(116, 158, 131, 0.22);
  
  --primary: #52796f;
  --primary-hover: #354f52;
  --accent-sage: #84a98c;
  --accent-mint: #a3c4bc;
  --accent-dot: #40916c;
  
  --text-main: #1d382b;
  --text-muted: #4e6b5c;
  --text-dim: #718f80;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 30px 65px -15px rgba(35, 68, 50, 0.1),
                 0 10px 30px rgba(82, 121, 111, 0.06);
}

/* ============================================================
   RESET BÁSICO
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  background: var(--bg-base);
  background-image: var(--bg-gradient);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   CANVAS DE PARTÍCULAS E ELEMENTOS AMBIENTAIS
   ============================================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ambient-light {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
  animation: pulseLight 12s ease-in-out infinite alternate;
}

.light-1 {
  top: -10%;
  left: 18%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(163, 209, 178, 0.55) 0%, transparent 70%);
}

.light-2 {
  bottom: -15%;
  right: 12%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(132, 185, 152, 0.45) 0%, transparent 70%);
  animation-delay: -4s;
}

.light-3 {
  top: 40%;
  left: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(186, 222, 198, 0.5) 0%, transparent 70%);
  animation-delay: -8s;
}

@keyframes pulseLight {
  0% {
    transform: scale(0.9) translate(0, 0);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.15) translate(30px, 20px);
    opacity: 0.65;
  }
  100% {
    transform: scale(1) translate(-20px, -15px);
    opacity: 0.5;
  }
}

/* ============================================================
   CONTAINER PRINCIPAL E CARD GLASSMORPHISM PASTEL
   ============================================================ */
.main-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  padding: 2rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card {
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid var(--card-border);
  box-shadow: 0 0 0 1px var(--card-border-subtle), var(--shadow-card);
  border-radius: 32px;
  padding: 3.75rem 3.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* Brilho suave no topo do card */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  pointer-events: none;
}

/* ============================================================
   BADGE DE STATUS PASTEL
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(132, 169, 140, 0.2);
  border: 1px solid rgba(82, 121, 111, 0.28);
  padding: 0.45rem 1.2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #274c3b;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(82, 121, 111, 0.1);
  letter-spacing: 0.02em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-dot);
  box-shadow: 0 0 10px rgba(64, 145, 108, 0.6);
  animation: pulseDot 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

/* ============================================================
   CABEÇALHO E TÍTULOS
   ============================================================ */
.card-header {
  margin-bottom: 0;
}

.main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #183326 15%, #2a523f 55%, #44745c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(35, 68, 50, 0.08);
}

.description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVIDADE (MOBILE & TABLETS)
   ============================================================ */
@media (max-width: 640px) {
  .glass-card {
    padding: 3rem 1.75rem;
    border-radius: 24px;
  }

  .status-badge {
    margin-bottom: 1.5rem;
  }

  .main-title {
    font-size: 2.35rem;
  }

  .description {
    font-size: 0.95rem;
  }
}
