body {
  font-family: "Montserrat", sans-serif;
  color: #333;
}

/* Hero Section */

        .hero-section {
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Cambio de center a flex-start */
            padding: 80px 0;
            background-image: url('../images/fondoNew.jpg');
			text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
		@media (max-width: 768px) {
			.hero-section {
				background-image: url('../images/fondo.jpeg');
			}
			.titulonow{
				font-size: 1.8rem !important;
			}
	
		}
		.titulonow{
				font-size: 2.2rem;
			}
        .hero-section .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent);
            z-index: 0;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        .hero-section .logo-hero {
            max-height: 80px;
            width: auto;
        }
		

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-section p.lead {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .custom-btn-purple {
            background-color: #8B5CF6;
            border-color: #8B5CF6;
            border-radius: 8px;
        }

        .custom-btn-purple:hover {
            background-color: #7C3AED;
            border-color: #7C3AED;
        }

        /* Media queries para responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section p.lead {
                font-size: 1.25rem;
            }
        }

/* Custom Button Purple */
.custom-btn-purple {
  background-color: #8c4bcf;
  border-color: #8c4bcf;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-btn-purple:hover {
  background-color: #7a3da8;
  border-color: #7a3da8;
}

/* Benefits Section */
.border-orange-light {
  border-color: rgba(247, 147, 30, 0.3) !important;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.bg-orange-light {
  background-color: rgba(247, 147, 30, 0.1);
}

.text-orange {
  color: #f7931e;
}

.card {
  border-width: 1px;
  border-style: solid;
  transition: box-shadow 0.3s ease;
}

.card.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Form Section */
.bg-orange {
  background-color: #f7931e;
}

.text-orange-light-text {
  color: rgba(255, 255, 255, 0.8);
}

.custom-btn-orange {
  background-color: #f7931e;
  border-color: #f7931e;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-btn-orange:hover {
  background-color: #e0841c;
  border-color: #e0841c;
}

/* Multi-step Form Styles */
.form-step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.progress {
  background-color: rgba(255, 255, 255, 0.3);
}

.progress-bar {
  transition: width 0.3s ease;
}

/* Form validation styles */
.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: #198754;
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

/* Data Summary Styles */
#dataSummary {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}

.summary-item {
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.summary-label {
  font-weight: 600;
  color: #495057;
}

.summary-value {
  color: #212529;
}

/* Success Message */
.alert-success {
  background-color: #e6ffe6;
  border-color: #b3ffb3;
  color: #169d49;
}

.alert-success i {
  color: #169d49;
}

.text-success-dark {
  color: #169d49;
}

.bg-success-light {
  background-color: #f0fff0;
}

.border-success-subtle {
  border-color: #b3ffb3;
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
  color: #f7931e;
  background-color: rgba(247, 147, 30, 0.05);
  border-color: rgba(247, 147, 30, 0.3);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(247, 147, 30, 0.25);
}

/* Footer */
.footer-logo {
  max-height: 48px;
  width: auto;
}

.bg-dark {
  background-color: #212529 !important;
}

.text-muted {
  color: #adb5bd !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p.lead {
    font-size: 1.25rem;
  }

  .hero-section .logo-hero {
    max-height: 50px;
  }

  .form-step {
    padding: 0 10px;
  }
}

/* Button animations */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Step indicator enhancement */
#stepIndicator {
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* AGREGAR AL FINAL DE style.css */

/* Loading states */
.form-control.loading {
  background-image: '../image/Error.svg';
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  background-size: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { 
    background-position: calc(100% - 12px) center;
    transform: rotate(0deg); 
  }
  100% { 
    background-position: calc(100% - 12px) center;
    transform: rotate(360deg); 
  }
}

.loading-message {
  font-size: 0.875rem;
  color: #17a2b8 !important;
  margin-top: 0.25rem;
}

/* Password input styling */
#passwordNow {
  font-family: monospace;
}

/* Username input styling */
#usuarioNow {
  text-transform: lowercase;
}

/* Enhanced form validation */
.form-control.is-valid {
  border-color: #198754;
  background-image: '../image/Check.svg';
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
  border-color: #dc3545;
  background-image: '../image/Error.svg';
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Responsive adjustments for new step */
@media (max-width: 768px) {
  .form-step {
    padding: 0 15px;
  }
  
  #usuarioNow, 
  #passwordNow {
    font-size: 16px; /* Prevent zoom on mobile */
  }
}

.footer-logo {
  max-height: 64px;
}

footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

  .animate-bounce {
    animation: bounce 1s infinite;
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateY(-25%);
      animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
      transform: none;
      animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
  }
  
