/* styles.css - Estilos base para Lepilum */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}
.logo img {
  height: 32px;
}
.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.menu li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
}
.menu li a:hover {
  color: #7F7F7F;
}
.cta {
  background: linear-gradient(to right, #00c6ff, #7f00ff);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}
.hero-logo {
  width: 400px;
  margin-bottom: 1rem;
}
.slogan {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
}

/* Sections */
.section {
  padding: 4rem 1rem;
}
.section h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.profile {
  width: 100%;
  max-width: 300px;
  border-radius: 0.5rem;
}
