.letter-spacing {
  letter-spacing: 0.1em;
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pc001-btn-primary {
  background-color: #E8501A;
  border-color: #E8501A;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: background-color 0.2s, transform 0.15s;
}
.pc001-btn-primary:hover, .pc001-btn-primary:focus {
  background-color: #C43D0E;
  border-color: #C43D0E;
  color: #fff;
  transform: translateY(-1px);
}

.pc001-header {
  background-color: #1A1A2E;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.pc001-header__logo {
  height: 44px;
  width: auto;
}
.pc001-header__brand-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.pc001-hero {
  background-image: url(/images/pascualcustom001/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.pc001-hero__overlay {
  width: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(232, 80, 26, 0.6) 100%);
  padding: 80px 0;
}
.pc001-hero__pretitle {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
}
.pc001-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.pc001-hero__subtitle {
  opacity: 0.9;
}

.pc001-steps {
  background-color: #FFF8F5;
}

.pc001-step {
  padding: 2rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pc001-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.pc001-step__number {
  width: 44px;
  height: 44px;
  background: #E8501A;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto;
}
.pc001-step__icon {
  font-size: 2rem;
  color: #E8501A;
}

.pc001-participate-bg {
  background: linear-gradient(135deg, #1A1A2E 0%, rgb(188.1071428571, 63.25, 18.8928571429) 100%);
  min-height: calc(100vh - 72px);
}

.pc001-aside-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.pc001-form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.pc001-form-card .form-control, .pc001-form-card .form-select {
  border-radius: 0.6rem;
  border-color: #ddd;
  padding: 0.65rem 1rem;
}
.pc001-form-card .form-control:focus, .pc001-form-card .form-select:focus {
  border-color: #E8501A;
  box-shadow: 0 0 0 0.2rem rgba(232, 80, 26, 0.2);
}
.pc001-form-card label.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #444;
}

.pc001-success-bg {
  background: linear-gradient(135deg, #1A1A2E 0%, #E8501A 100%);
}

.pc001-success-icon {
  font-size: 5rem;
  color: #fff;
  animation: pc001-pop 0.4s ease-out;
}

@keyframes pc001-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.pc001-footer {
  background-color: #1A1A2E;
  color: rgba(255, 255, 255, 0.5) !important;
}
.pc001-footer a {
  color: rgba(255, 255, 255, 0.5);
}
.pc001-footer a:hover {
  color: #fff;
}
