/* --- Estilos para a Página de Deploy --- */

:root {
  --bg-dark: #020617;
  --bg-card: #0f172a;
  --primary: #3b82f6;
  --accent: #60a5fa;
  --success: #10b981; /* Verde para simbolizar deploy com sucesso */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.08);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 8%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  font-size: 1.3rem;
  color: var(--accent);
  letter-spacing: -1px;
}

header a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

header a:hover {
  color: var(--primary);
  transform: translateX(-3px);
}

/* Hero Section */
.hero {
  padding: 100px 8% 60px;
  text-align: center;
  background: radial-gradient(circle at center, #1e293b 0%, var(--bg-dark) 80%);
}

.hero h2 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.hero p {
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Grid de Cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 60px 8%;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho no hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  text-align: center;
  padding: 60px 8% 40px;
  color: #475569;
  font-size: 0.85rem;
  border-top: 1px solid var(--border-glass);
}

/* Responsividade */
@media (max-width: 768px) {
  .hero { padding-top: 60px; }
  .features { padding: 40px 5%; }
}