@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #334155;
  background: #f8fafc;
  line-height: 1.6;
}

a {
  color: #4f46e5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.header {
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.header__container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.header__logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: #0f172a;
}
.header .menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.header .menu__item a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: #334155;
  text-decoration: none;
}
.header .menu__item a:hover {
  background: rgba(79, 70, 229, 0.08);
  color: #0f172a;
  text-decoration: none;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 3rem;
}
.hero__title {
  font-size: clamp(1.8rem, 3.2vw + 1rem, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  color: #94a3b8;
  margin-bottom: 1rem;
}

/* Seção Portfólio */
.portfolio {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 2rem;
}
.portfolio__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.portfolio__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Botões */
.botao--primario {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 0.7rem;
  background: #4f46e5;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
}
.botao--primario:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.botao--secundario {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 0.7rem;
  background: #0ea5e9;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
}
.botao--secundario:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Card de projeto */
.card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
}
.card__title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}
.card__desc {
  color: #94a3b8;
  margin: 0;
}

/*# sourceMappingURL=estilos.css.map */
