/* style.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f0f4f7, #ffffff);
  color: #333;
  overflow-x: hidden;
}

header {
  background: #4b1c2e;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: fadeIn 1s ease forwards;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.photo-frame {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #4b1c2e, #c9a86a);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: popIn 1s ease forwards;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

h1 {
  font-size: 28px;
  font-weight: 600;
  color: #f1f1f1;
}

.subtitle {
  font-size: 16px;
  color: #ccc;
  text-align: center;
}

main {
  max-width: 700px;
  margin: auto;
  padding: 30px 20px;
}

section {
  margin-bottom: 50px;
  animation: slideUp 1s ease forwards;
}

h2 {
  color: #4b1c2e;
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #c9a86a;
  margin-top: 6px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  font-size: 16px;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #25D366;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

input,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #25D366;
  outline: none;
}

button {
  background: #4b1c2e;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #4b1c2e;
  transform: scale(1.03);
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #4b1c2e;
  transform: scale(1.05);
}

.pulse {
  animation: pulse 2s infinite;
}

.social {
  margin-top: 15px;
  text-align: center;
}

.social a {
  color: #128C7E;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.social a:hover {
  color: #4b1c2e;
}

footer {
  text-align: center;
  padding: 20px;
  background: #4b1c2e;
  font-size: 14px;
  color: #fff;
}

/* Animações */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s forwards ease;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
