/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #cbe8f0, #f5f5f5);
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  transition: background 0.6s ease-in-out;
}

header h1 {
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px #00000080;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

section {
  background: #ffffffcc;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

#msg {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #333;
  line-height: 1.5;
}

#foto img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

#foto img:hover {
  transform: scale(1.08);
}

#botoes-teste {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}

#botoes-teste button {
  background-color: #0096c7;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

#botoes-teste button:hover {
  background-color: #0077a6;
  transform: translateY(-2px);
}

#botoes-teste i {
  font-size: 1.2rem;
}

footer {
  margin-top: 30px;
  color: white;
  font-style: italic;
  text-shadow: 1px 1px 2px black;
  font-size: 0.9rem;
}
