/* RESET SIMPLES */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

/* SEÇÃO */

.about-section {
  display: flex;
  justify-content: center;
}

/* CONTAINER */

.about-container {
  max-width: 1200px;
  width: 100%;
}

/* TÍTULO */

h1.titulo-about {
  text-align: left;
  font-family: "Zilla Slab", serif;
  font-size: 2.2rem;
  /* margin-bottom: 40px; */
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

/* CARD PRINCIPAL */

.about-card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* GRID */

.about-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 50px;
  align-items: start;
}

/* FOTO */

.about-photo img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* TEXTO */

.about-content h3 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #1f2d2e;
}

.about-subtitle {
  color: #2f5d62;
  font-weight: 500;
  margin-bottom: 25px;
}

.about-content p {
  font-size: smaller;
  margin-bottom: 18px;
  line-height: 1.7;
  color: #444;
}

/* HABILIDADES */

.skills {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills span {
  background: #eef1f2;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 35px;
  }

  .about-title h2 {
    font-size: 30px;
  }
}
