* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(180deg, #020617, #020617);
  color: #fff;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

.hero h1 span {
  color: #3b82f6;
}

.hero p {
  margin: 20px 0;
  color: #cbd5f5;
  max-width: 600px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #3b82f6;
  color: #fff;
}

.primary:hover {
  background: #2563eb;
}

.outline {
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.outline:hover {
  background: #3b82f6;
  color: #fff;
}

/* SERVICES */
.services {
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: auto;
}

.card { 
    background: #020617; 
    border: 1px solid #1e293b; 
    padding: 40px; 
    border-radius: 20px; 
    transition: 0.3s; 
    
}

/* CARDS COMO LINKS */
.card {
  text-decoration: none;
  color: #fff;
  display: block;
  cursor: pointer;
}

.card:visited {
  color: #fff;
}

.card:hover {
  text-decoration: none;
  transform: translateY(-8px);
  border-color: #3b82f6;
}


/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  color: #64748b;
  border-top: 1px solid #1e293b;
}
