@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

:root {
  --rosa: #f8c8dc;
  --amarelo: #fff5ba;
  --roxo: #e4c1f9;
  --azul: #c1e1f5;
  --branco: #ffffff;
  --cinza-claro: #fdf6f9;
  --texto: #444;
  --rosa-escuro: #e09ec3;
}

body {
  background-color: var(--cinza-claro);
  color: var(--texto);
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  background-color: var(--branco);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

nav {
  text-align: center;
  margin-bottom: 20px;
}

nav a {
  background-color: var(--rosa);
  color: var(--texto);
  padding: 10px 20px;
  margin: 5px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--rosa-escuro);
}

nav a:hover {
  background-color: var(--rosa-escuro);
  color: var(--branco);
  transform: scale(1.05);
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2.8em;
  color: var(--roxo);
  text-shadow: 1px 1px 1px var(--rosa);
}

.header p {
  font-style: italic;
  color: var(--rosa-escuro);
  margin-top: 10px;
  font-size: 1.2em;
}

h2 {
  color: var(--roxo);
  margin-bottom: 10px;
  font-size: 1.8em;
  border-left: 10px solid var(--amarelo);
  padding-left: 10px;
}

h3 {
  color: var(--azul);
  margin-bottom: 5px;
}

.flex {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.flex img {
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.flex img:hover {
  transform: scale(1.03);
}


.card {
  background-color: var(--rosa);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  border-left: 6px solid var(--roxo);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #777;
}
a {
  color: #e09ec3; /* rosa pastel escuro, visível no fundo claro */
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #d173a1; /* tom mais escuro no hover */
  text-decoration: underline;
}
