
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: #181028;
}
@keyframes gradient {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}
header {
  background: linear-gradient(-45deg, #ff6ec4, #7873f5, #4d2c91, #ff9a9e);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding: 100px 20px 60px;
  text-align: center;
}
header h1 {
  font-size: 3em;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}
header p {
  font-size: 1.2em;
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1.2s ease-out;
}
a.button {
  margin-top: 30px;
  display: inline-block;
  background-color: #ffffff;
  color: #6a11cb;
  padding: 16px 32px;
  font-size: 1.1em;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  animation: fadeIn 2s ease;
}
section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  animation: fadeInUp 0.8s ease forwards;
}
h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}
p {
  text-align: center;
  font-size: 1.1em;
  color: #ddd;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
img.curso {
  display: block;
  margin: 30px auto;
  max-width: 400px;
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}
.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  flex: 1 1 200px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.cta-banner {
  background: #ff6ec4;
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-size: 1.4em;
  font-weight: bold;
  border-radius: 12px;
  margin: 60px 20px;
  animation: fadeInUp 1.5s ease;
}
.merch {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.merch img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.merch .text {
  max-width: 500px;
  font-size: 1.1em;
  color: #eee;
}
.faq {
  background: rgba(255, 255, 255, 0.05);
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 800px;
  text-align: left;
}
form {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  margin: 40px auto;
}
input, textarea {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
}
button.submit {
  margin-top: 20px;
  background-color: #ffffff;
  color: #6a11cb;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}


.images-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.images-grid img {
  max-width: 500px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: fadeIn 1s ease;
}

.merch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}
.merch-item {
  text-align: center;
  max-width: 400px;
}
.merch-item img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.button-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-weight: bold;
  color: black;
  background-color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button-link:hover {
  transform: translateY(-4px);
  background-color: #f0f0f0;
}


.faq-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 40px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  text-align: center;
  animation: slideUp 0.7s ease forwards;
}
.faq-box h3 {
  font-size: 1.3em;
  margin-bottom: 12px;
  color: #fff;
}
.faq-box p {
  font-size: 1.1em;
  color: #ccc;
  margin: 0;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
