/* ===== BASE ===== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #A8E6CF; /* verde menta suave */
  color: #1A3C40; /* azul petróleo para texto */
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #5CCDC9; /* azul da van */
  color: #1A3C40;
  padding: 1rem 2rem;
  border-bottom: 5px solid #F58220; /* detalhe laranja das flores */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

header .brand img {
  width: 50px;
  border-radius: 50%;
  border: 3px solid #F58220;
}

header .brand h1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A3C40;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

header nav a {
  text-decoration: none;
  color: #1A3C40;
  font-weight: 600;
  transition: all 0.3s;
}

header nav a:hover {
  color: #F58220;
  transform: scale(1.05);
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

h1, h2, h3 {
  color: #1A3C40;
}

main img:first-of-type {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 400px;
  border-radius: 12px;
}

/* ===== HOME INTRO ===== */
.home-intro {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 3px solid #F58220;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.3s;
}

.home-intro:hover {
  transform: translateY(-5px);
}

.home-intro h2 {
  color: #F58220;
  margin-bottom: 0.5rem;
}

.home-intro p {
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  background: #5CCDC9;
  color: #1A3C40;
  padding: 1rem;
  margin-top: 3rem;
  border-top: 5px solid #F58220;
  font-weight: 500;
}

/* ===== LINKS ===== */
a {
  text-decoration: none;
  color: #1A3C40;
  font-weight: 600;
  transition: all 0.3s;
}

a:hover {
  transform: scale(1.05);
  color: #F58220;
}



/* ====================================================== */
/* ===== MEDIA QUERY - telas menores (celulares) ======== */
/* ====================================================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    background: #5CCDC9;
    border-bottom-color: #BAEB34;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  main {
    padding: 1.2rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  body {
    background-color: #9ad9ca; /* tom mais suave para celular */
  }

  /* ===== IMAGENS - VERSÃO MOBILE ===== */
  img {
    max-width: 90%;
    margin: 1rem auto;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }

  .profile-img {
    width: 70%;
    max-width: 260px;
    border-width: 2px;
  }}