@charset "utf-8";
/* CSS Document */

       :root {
            --primary: #C29323;
            --secondary: #1f7d26;
			--third:#f11;
            --light: #FFF;
            --dark: #333;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f5f5f5;
            color: var(--dark);
            line-height: 1.6;
			/*overflow: hidden; */
        }
        
		
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 20px;
            background-color: var(--light);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            /*overflow: hidden;*/
        }
        
        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
			     /* Fondo oscuro translúcido */
				    .overlay {
					  position: fixed;
					  top: 0;
					  left: 0;
					  width: 100vw;
					  height: 100vh;
					  background-color: rgba(0, 0, 0, 0.5);
					  display: flex;
					  justify-content: center;
					  align-items: center;
					  z-index: 999;
					}

					.user-summary-container {
					  background-color: var(--light);
					  border: 3px solid var(--primary);
					  border-radius: 12px;
					  padding: 25px 30px;
					  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
					  width: 420px;
					  max-width: 90%;
					  position: relative;
					  text-align: center;
					}

					.logo {
					  width: 80px;
					  margin: 0 auto 15px auto;
						float: left;
					}

					.user-summary-container h2 {
					  color: var(--primary);
					  margin-bottom: 20px;
					  font-size: 22px;
					}

					.user-info {
					  text-align: left;
					  margin: 10px 0;
					  display: flex;
					  justify-content: space-between;
					  border-bottom: 1px solid #eee;
					  padding-bottom: 6px;
					}

					.user-info label {
					  font-weight: bold;
					  color: var(--dark);
					}

					.user-info span {
					  color: var(--secondary);
					}

					.highlight {
					  color: var(--third);
					  font-weight: bold;
					}

					.close-btn {
					  position: absolute;
					  top: 10px;
					  right: 15px;
					  font-size: 20px;
					  background: none;
					  border: none;
					  color: var(--dark);
					  cursor: pointer;
					  transition: color 0.3s;
					}

					.close-btn:hover {
					  color: var(--third);
					}

        h1 {
            color: var(--primary);
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--secondary);
        }

        .form-step {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .form-step.active {
            display: block;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 10px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
      /*  label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }*/
        
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        input:focus, select:focus, textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(31, 125, 38, 0.2);
            outline: none;
        }
        
        .btn-group {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }
        
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }
        
        .progress-bar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #ddd;
            z-index: 1;
        }
        
        .progress-step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            z-index: 2;
            transition: all 0.3s;
			content: attr(data-title);
        }
        
        .progress-step.active {
            background-color: var(--primary);
            color: var(--light);
			content: attr(data-title);
        }
        
        .progress-step.completed {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .progress-step::after {
            content: attr(data-title);
            position: absolute;
            top: 45px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font-size: 14px;
            color: var(--dark);
        }
        
        .error-message {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
            display: block;
        }
        
        .input-error {
            border-color: #dc3545;
        }
        
        .input-error:focus {
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
        }
        
        .show-error .error-message {
            display: block;
        }
        
        .auto-fill-btn {
            background-color: #f8f9fa;
            border: 1px solid #ddd;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            margin-left: 10px;
            transition: all 0.2s;
        }
        
        .auto-fill-btn:hover {
            background-color: #e9ecef;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive */
        @media (max-width: 800px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .progress-step::after {
                font-size: 14px;
				color: #97721A;
				font-weight: bolder;
				content: none;
            }
			.progress-step.active::after {
				content: attr(data-title);
				display: block;
			  }
			
        }