/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #FAF9F6;
  color: #333333;
  line-height: 1.6;
}

/* Header e Navegação (consistente com index e blog) */
header {
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #5C7AEA;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: #FF87AB;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #5C7AEA;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Seção Sobre */
.about-section {
  padding: 4rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 160px); /* Ajusta para ocupar a tela menos header e footer */
}

.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 3rem;
  max-width: 800px;
  text-align: center;
  animation: fadeIn 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #5C7AEA, #FF87AB);
  border-radius: 20px 20px 0 0;
}

.card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #5C7AEA;
  margin-bottom: 1.5rem;
}

.card p {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 1.5rem;
}

.card strong {
  color: #FF87AB;
  font-weight: 600;
}

.card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #5C7AEA;
  margin: 2rem 0 1rem;
}

.card img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.03);
}

/* Footer (consistente com index e blog) */
footer {
  background-color: #333333;
  color: #FAF9F6;
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .about-section {
    padding: 3rem 1rem;
  }

  .card {
    padding: 2rem;
  }

  .card h2 {
    font-size: 2rem;
  }

  .card p {
    font-size: 1.1rem;
  }

  .card h3 {
    font-size: 1.6rem;
  }

  .card img {
    max-width: 100%;
  }
}





  
  