 :root {
            --primary-color: #e67e22; /* Cambio de verde a naranja */
            --secondary-color: #d35400; /* Naranja más oscuro */
            --accent-color: #f39c12; /* Naranja amarillento */
            --text-dark: #222222; /* Negro más oscuro */
            --text-medium: #333333;
            --text-light: #555555; /* Gris más oscuro */
            --border-color: #e0e0e0;
            --bg-light: #f9f9f9;
            --success-color: #e67e22; /* Cambiando el color de éxito a naranja */
        }
        
        body {
            background-color: #f9f9f9;
            font-family: 'Tajawal', 'Cairo', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 17px; /* Fuente base más grande */
        }
        
        /* Estilos para la pantalla de bienvenida */
        .welcome-screen {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 50px auto;
            padding: 40px;
            text-align: center;
            position: relative;
        }
        
        .welcome-logo {
            max-width: 200px;
            margin-bottom: 30px;
        }
        
        .welcome-title {
            font-family: 'Cairo', sans-serif;
            font-weight: 800;
            color: var(--primary-color);
            font-size: 36px; /* Título más grande */
            margin-bottom: 25px;
        }
        
        .welcome-message {
            font-size: 19px; /* Texto más grande */
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--text-dark);
        }
        
        .continue-btn {
            background-color: var(--primary-color);
            color: white;
            font-size: 20px; /* Botón más grande */
            font-weight: 700;
            padding: 14px 45px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Cairo', sans-serif;
        }
        
        .continue-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(227, 126, 34, 0.4);
        }
        
        /* Lista de ventajas con ícono a la izquierda */
        .benefits-list {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
            text-align: right;
        }
        
        .benefits-list li {
            padding: 8px 0;
            position: relative;
            padding-right: 35px; /* Espacio para el ícono */
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .benefits-list li i {
            position: absolute;
            right: 0;
            top: 10px;
            color: var(--primary-color);
        }
        
        /* Estilos mejorados para el formulario */
        /* .header {
            background-color: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: relative;
            z-index: 10;
        }
        
        .logo {
            max-height: 55px;
        } */
        
        .form-container {
            background-color: #fff;
            padding: 0 40px 45px;
            margin: 30px auto;
            max-width: 900px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .form-title {
            text-align: center;
            margin: 0 -40px 35px;
            font-weight: 800;
            font-size: 32px; /* Título más grande */
            padding: 30px 0;
            color: var(--primary-color);
            background-color: var(--bg-light);
            border-radius: 10px 10px 0 0;
            position: relative;
        }
        
        .form-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .section-title {
            text-align: right;
            margin: 45px 0 30px;
            font-weight: 700;
            font-size: 24px; /* Título de sección más grande */
            border-right: 4px solid var(--primary-color);
            padding: 10px 15px;
            background-color: var(--bg-light);
            border-radius: 0 5px 5px 0;
            color: var(--primary-color);
        }
        
        .form-label {
            font-weight: 700;
            margin-bottom: 10px;
            text-align: right;
            width: 100%;
            font-size: 17px; /* Etiqueta más grande */
            color: var(--text-medium);
        }
        
        .form-control {
            height: 55px; /* Campo más alto */
            border-radius: 6px;
            margin-bottom: 20px;
            border: 2px solid var(--border-color);
            padding: 10px 15px;
            font-size: 17px; /* Texto de entrada más grande */
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(227, 126, 34, 0.25);
        }
        
        .form-select {
            height: 55px; /* Selector más alto */
            border-radius: 6px;
            margin-bottom: 20px;
            border: 2px solid var(--border-color);
            font-size: 17px; /* Texto de selector más grande */
        }
        
        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(227, 126, 34, 0.25);
        }
        
        .upload-box {
            border: 2px dashed #ccc;
            padding: 35px 20px;
            text-align: center;
            margin-bottom: 25px;
            border-radius: 8px;
            cursor: pointer;
            background-color: var(--bg-light);
            transition: all 0.3s;
        }
        
        .upload-box:hover {
            border-color: var(--primary-color);
            background-color: #fef5ec; /* Naranja muy claro */
        }
        
        .upload-box i {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .upload-box p {
            margin-bottom: 8px;
            font-size: 17px; /* Texto más grande */
            font-weight: 600;
        }
        
        .upload-box small {
            color: var(--text-light);
            font-size: 14px; /* Texto pequeño más grande */
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 14px 40px;
            border: none;
            font-weight: 700;
            margin-top: 30px;
            width: auto;
            font-size: 18px; /* Botón más grande */
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(227, 126, 34, 0.3);
        }
        
        .footer {
            background-color: #222;
            color: white;
            padding: 40px 0;
            font-size: 16px; /* Texto de pie de página más grande */
        }
        
        /* Estilos para los campos de teléfono */
        .iti {
            width: 100%;
            margin-bottom: 20px;
        }
        
        .iti__flag-container {
            right: 0;
            left: auto;
        }
        
        .iti--separate-dial-code .iti__selected-flag {
            background-color: #f8f8f8;
            border-radius: 4px 0 0 4px;
        }
        
        .iti--allow-dropdown input {
            padding-right: 90px;
        }
        
        /* Estilos para el espaciado */
        .mb-row {
            margin-bottom: 20px;
        }
        
        /* Estilos para mensajes de error */
        .error-msg {
            color: #dc3545;
            font-size: 14px; /* Mensaje de error más grande */
            margin-top: -15px;
            margin-bottom: 15px;
        }
        
        .whatsapp-btn {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 65px;
            height: 65px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 65px;
            font-size: 32px; /* Ícono más grande */
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        
        .map-container {
            height: 250px;
            background-color: #f8f8f8;
            margin-bottom: 20px;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        
        .map-error {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #666;
        }
        
        .map-error i {
            font-size: 34px; /* Ícono de error más grande */
            margin-bottom: 15px;
            display: block;
            color: #dc3545;
        }
        
        .banner-section {
            height: 250px; /* Banner más alto */
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .banner-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .error-text {
            color: #dc3545;
            font-size: 14px; /* Texto de error más grande */
            margin-top: 5px;
        }
        
        /* Estilos para los mensajes de alerta */
        .alert {
            padding: 16px 20px;
            margin-bottom: 25px;
            border-radius: 6px;
            font-size: 16px; /* Alerta más grande */
            font-weight: 600;
        }
        
        .alert-success {
            background-color: #fef5ec; /* Fondo naranja claro */
            color: var(--secondary-color);
            border: 1px solid var(--primary-color);
        }
        
        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Mejoras en los controles de formulario */
        .form-check-input {
            width: 22px; /* Checkbox más grande */
            height: 22px;
            margin-top: 0.2em;
        }
        
        .form-check-label {
            padding-right: 10px;
            font-size: 17px; /* Etiqueta más grande */
        }
        
        /* Estilos para Select2 */
        .select2-container--default .select2-selection--single {
            height: 55px; /* Select2 más alto */
            border: 2px solid var(--border-color);
            border-radius: 6px;
        }
        
        .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 53px;
            padding-right: 15px;
            font-size: 17px;
        }
        
        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 53px;
        }
        
        .select2-dropdown {
            border: 2px solid var(--border-color);
            border-radius: 6px;
        }
        
        .select2-results__option {
            padding: 10px 15px;
            font-size: 16px;
        }
        
        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: var(--primary-color);
        }