body {
  font-family: "Cambria", "Times New Roman", Georgia, serif;
  background: #f8f9fa;
  min-height: 100vh;
  padding: 20px;
}

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

.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  color: white;
  margin: -40px -40px 40px -40px;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.header-content {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-size: 1rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
}

.content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.section {
  background: #fafafa;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.section:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.section h2 {
  color: #5a67d8;
  margin-bottom: 25px;
  font-size: 1.3rem;
  border-bottom: 2px solid #a5b4fc;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.requirements-list {
  list-style: none;
  padding: 0;
}

.requirements-list li {
  margin-bottom: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  border-left: 4px solid #a5b4fc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.requirements-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left-color: #667eea;
}

.requirements-list li strong {
  color: #4c51bf;
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}

.requirements-list li small {
  color: #666;
  font-size: 0.85rem;
}

/* Nueva sección bancaria con colores suaves */
.bank-info {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border: 1px solid #e2e8f0;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}

.bank-info h2 {
  margin-bottom: 25px;
  font-size: 1.3rem;
  text-align: center;
  border-bottom: 2px solid #cbd5e0;
  padding-bottom: 10px;
  color: #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.account-section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.account-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e0;
}

.account-section:last-child {
  margin-bottom: 0;
}

.account-section h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
  color: #2d3748;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background: -webkit-linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
  padding: 8px;
  border-radius: 8px;
  font-weight: 600;
  position: relative;
}

.account-section h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 1px;
}

.account-info {
  display: grid;
  gap: 12px;
}

.account-info p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.account-info p:hover {
  background: #e9ecef;
  border-color: #cbd5e0;
}

.account-info strong {
  color: #2d3748;
  min-width: 70px;
  font-weight: 600;
}

.account-info span {
  color: #4a5568;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.copy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.copy-btn:active {
  transform: translateY(0);
}

.email-contact {
  text-align: center;
  margin-top: 30px;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.email-contact h3 {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.email-contact a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.email-contact a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
    margin: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .header {
    margin: -20px -20px 30px -20px;
    padding: 20px;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section,
  .bank-info {
    padding: 20px;
  }

  .account-section {
    padding: 20px;
  }
}

.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.dot:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.dot:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}
.dot:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px);
    opacity: 0.6;
  }
}

